This function performs a series of structural and logical quality-control checks on a hierarchical classification. It verifies the consistency of the hierarchical levels, the presence of parent–child relationships, the uniqueness of labels, the compliance with admissible coding rules, and the sequencing of children within each level. The output is a list of data frames flagging potential issues.

classificationQC(
  classification,
  lengths,
  fullHierarchy = TRUE,
  labelUniqueness = TRUE,
  labelHierarchy = TRUE,
  singleChildCode = NULL,
  sequencing = NULL
)

Arguments

classification

A data.frame containing (at least) two columns: the codes and labels of the classification to be checked. This argument is mandatory.

lengths

A data.frame with one row per hierarchical level giving the initial and final positions of the segment of the code referring to that level. The number of rows implicitly defines the number of hierarchical levels (\(k\)). This argument is mandatory. The column names should be charb and chare, if this is not the case, they will be automatically changed and a warning will appear.

fullHierarchy

Logical. If FALSE, the function checks that all positions at levels greater than 1 have a parent at the level immediately above (no orphans). If TRUE, it additionally checks that positions at levels strictly lower than \(k\) have children in the next level (no childless nodes).

labelUniqueness

Logical. When TRUE, the function checks whether labels are unique at each hierarchical level. Duplicates are listed in the QC_duplicatesLabel table.

labelHierarchy

Logical. When TRUE, the function checks that:

  • single children share the same label as their parent;

  • if a parent shares a label with one of its children, it must be a single-child parent.

singleChildCode

A data.frame specifying admissible codes for single children at each hierarchical level. If not NULL, the function checks compliance with these codes.

sequencing

A data.frame defining admissible codes and their expected order for multiple-child situations at each level. If not NULL, the function checks sequencing consistency.

Value

A list of data frames flagging potential issues in the classification:

  • QC_output: full augmented table with computed levels, code segments, and all compliance flags;

  • QC_noLevels: rows for which hierarchical level could not be determined;

  • QC_orphan: positions that lack an expected parent;

  • QC_childless: positions expected to have children but do not;

  • QC_duplicatesLabel: positions with duplicate labels within the same level;

  • QC_duplicatesCode: duplicated codes;

  • QC_singleChildMismatch: label inconsistencies for single-children relationships;

  • QC_singleCodeError: single children with invalid codes (if singleChildCode is provided);

  • QC_multipleCodeError: non-single children with invalid codes (if sequencing is provided);

  • QC_gapBefore: missing expected codes in sequence;

  • QC_lastSibling: flag for last sibling in sequencing rules.

Examples



classification <- read.csv(system.file("extdata/test", "Nace2_long.csv",
                                      package = "correspondenceTables"))
lengths <- data.frame(charb = c(1,2,3,5), chare = c(1,2,4,5))

Output <- classificationQC(
 classification = classification,
 lengths = lengths,
 fullHierarchy = TRUE,
 labelUniqueness = TRUE,
 labelHierarchy = TRUE,
 singleChildCode = NULL,
 sequencing = NULL
)
#> Warning: Some codes at a lower level than 1 have no parents at higher levels ('see QC_orphan').
#> Warning: Some codes at a higher level than  4  have no children at lower levels ('see QC_childless').

print(Output$QC_output)
#>     nace2
#> 1      01
#> 2    01.1
#> 3   01.11
#> 4   01.12
#> 5   01.13
#> 6   01.14
#> 7   01.15
#> 8   01.16
#> 9   01.19
#> 10   01.2
#> 11  01.21
#> 12  01.22
#> 13  01.23
#> 14  01.24
#> 15  01.25
#> 16  01.26
#> 17  01.27
#> 18  01.28
#> 19  01.29
#> 20   01.3
#> 21  01.30
#> 22   01.4
#> 23  01.41
#> 24  01.42
#> 25  01.43
#> 26  01.44
#> 27  01.45
#> 28  01.46
#> 29  01.47
#> 30  01.49
#> 31   01.5
#> 32  01.50
#> 33   01.6
#> 34  01.61
#> 35  01.62
#> 36  01.63
#> 37  01.64
#> 38   01.7
#> 39  01.70
#> 40     02
#> 41   02.1
#> 42  02.10
#> 43   02.2
#> 44  02.20
#> 45   02.3
#> 46  02.30
#> 47   02.4
#> 48  02.40
#> 49     03
#> 50   03.1
#> 51  03.11
#> 52  03.12
#> 53   03.2
#> 54  03.21
#> 55  03.22
#> 56     05
#> 57   05.1
#> 58  05.10
#> 59   05.2
#> 60  05.20
#> 61     06
#> 62   06.1
#> 63  06.10
#> 64   06.2
#> 65  06.20
#> 66     07
#> 67   07.1
#> 68  07.10
#> 69   07.2
#> 70  07.21
#> 71  07.29
#> 72     08
#> 73   08.1
#> 74  08.11
#> 75  08.12
#> 76   08.9
#> 77  08.91
#> 78  08.92
#> 79  08.93
#> 80  08.99
#> 81     09
#> 82   09.1
#> 83  09.10
#> 84   09.9
#> 85  09.90
#> 86     10
#> 87   10.1
#> 88  10.11
#> 89  10.12
#> 90  10.13
#> 91   10.2
#> 92  10.20
#> 93   10.3
#> 94  10.31
#> 95  10.32
#> 96  10.39
#> 97   10.4
#> 98  10.41
#> 99  10.42
#> 100  10.5
#> 101 10.51
#> 102 10.52
#> 103  10.6
#> 104 10.61
#> 105 10.62
#> 106  10.7
#> 107 10.71
#> 108 10.72
#> 109 10.73
#> 110  10.8
#> 111 10.81
#> 112 10.82
#> 113 10.83
#> 114 10.84
#> 115 10.85
#> 116 10.86
#> 117 10.89
#> 118  10.9
#> 119 10.91
#> 120 10.92
#> 121    11
#> 122  11.0
#> 123 11.01
#> 124 11.02
#> 125 11.03
#> 126 11.04
#> 127 11.05
#> 128 11.06
#> 129 11.07
#> 130    12
#> 131  12.0
#> 132 12.00
#> 133    13
#> 134  13.1
#> 135 13.10
#> 136  13.2
#> 137 13.20
#> 138  13.3
#> 139 13.30
#> 140  13.9
#> 141 13.91
#> 142 13.92
#> 143 13.93
#> 144 13.94
#> 145 13.95
#> 146 13.96
#> 147 13.99
#> 148    14
#> 149  14.1
#> 150 14.11
#> 151 14.12
#> 152 14.13
#> 153 14.14
#> 154 14.19
#> 155  14.2
#> 156 14.20
#> 157  14.3
#> 158 14.31
#> 159 14.39
#> 160    15
#> 161  15.1
#> 162 15.11
#> 163 15.12
#> 164  15.2
#> 165 15.20
#> 166    16
#> 167  16.1
#> 168 16.10
#> 169  16.2
#> 170 16.21
#> 171 16.22
#> 172 16.23
#> 173 16.24
#> 174 16.29
#> 175    17
#> 176  17.1
#> 177 17.11
#> 178 17.12
#> 179  17.2
#> 180 17.21
#> 181 17.22
#> 182 17.23
#> 183 17.24
#> 184 17.29
#> 185    18
#> 186  18.1
#> 187 18.11
#> 188 18.12
#> 189 18.13
#> 190 18.14
#> 191  18.2
#> 192 18.20
#> 193    19
#> 194  19.1
#> 195 19.10
#> 196  19.2
#> 197 19.20
#> 198    20
#> 199  20.1
#> 200 20.11
#> 201 20.12
#> 202 20.13
#> 203 20.14
#> 204 20.15
#> 205 20.16
#> 206 20.17
#> 207  20.2
#> 208 20.20
#> 209  20.3
#> 210 20.30
#> 211  20.4
#> 212 20.41
#> 213 20.42
#> 214  20.5
#> 215 20.51
#> 216 20.52
#> 217 20.53
#> 218 20.59
#> 219  20.6
#> 220 20.60
#> 221    21
#> 222  21.1
#> 223 21.10
#> 224  21.2
#> 225 21.20
#> 226    22
#> 227  22.1
#> 228 22.11
#> 229 22.19
#> 230  22.2
#> 231 22.21
#> 232 22.22
#> 233 22.23
#> 234 22.29
#> 235    23
#> 236  23.1
#> 237 23.11
#> 238 23.12
#> 239 23.13
#> 240 23.14
#> 241 23.19
#> 242  23.2
#> 243 23.20
#> 244  23.3
#> 245 23.31
#> 246 23.32
#> 247  23.4
#> 248 23.41
#> 249 23.42
#> 250 23.43
#> 251 23.44
#> 252 23.49
#> 253  23.5
#> 254 23.51
#> 255 23.52
#> 256  23.6
#> 257 23.61
#> 258 23.62
#> 259 23.63
#> 260 23.64
#> 261 23.65
#> 262 23.69
#> 263  23.7
#> 264 23.70
#> 265  23.9
#> 266 23.91
#> 267 23.99
#> 268    24
#> 269  24.1
#> 270 24.10
#> 271  24.2
#> 272 24.20
#> 273  24.3
#> 274 24.31
#> 275 24.32
#> 276 24.33
#> 277 24.34
#> 278  24.4
#> 279 24.41
#> 280 24.42
#> 281 24.43
#> 282 24.44
#> 283 24.45
#> 284 24.46
#> 285  24.5
#> 286 24.51
#> 287 24.52
#> 288 24.53
#> 289 24.54
#> 290    25
#> 291  25.1
#> 292 25.11
#> 293 25.12
#> 294  25.2
#> 295 25.21
#> 296 25.29
#> 297  25.3
#> 298 25.30
#> 299  25.4
#> 300 25.40
#> 301  25.5
#> 302 25.50
#> 303  25.6
#> 304 25.61
#> 305 25.62
#> 306  25.7
#> 307 25.71
#> 308 25.72
#> 309 25.73
#> 310  25.9
#> 311 25.91
#> 312 25.92
#> 313 25.93
#> 314 25.94
#> 315 25.99
#> 316    26
#> 317  26.1
#> 318 26.11
#> 319 26.12
#> 320  26.2
#> 321 26.20
#> 322  26.3
#> 323 26.30
#> 324  26.4
#> 325 26.40
#> 326  26.5
#> 327 26.51
#> 328 26.52
#> 329  26.6
#> 330 26.60
#> 331  26.7
#> 332 26.70
#> 333  26.8
#> 334 26.80
#> 335    27
#> 336  27.1
#> 337 27.11
#> 338 27.12
#> 339  27.2
#> 340 27.20
#> 341  27.3
#> 342 27.31
#> 343 27.32
#> 344 27.33
#> 345  27.4
#> 346 27.40
#> 347  27.5
#> 348 27.51
#> 349 27.52
#> 350  27.9
#> 351 27.90
#> 352    28
#> 353  28.1
#> 354 28.11
#> 355 28.12
#> 356 28.13
#> 357 28.14
#> 358 28.15
#> 359  28.2
#> 360 28.21
#> 361 28.22
#> 362 28.23
#> 363 28.24
#> 364 28.25
#> 365 28.29
#> 366  28.3
#> 367 28.30
#> 368  28.4
#> 369 28.41
#> 370 28.49
#> 371  28.9
#> 372 28.91
#> 373 28.92
#> 374 28.93
#> 375 28.94
#> 376 28.95
#> 377 28.96
#> 378 28.99
#> 379    29
#> 380  29.1
#> 381 29.10
#> 382  29.2
#> 383 29.20
#> 384  29.3
#> 385 29.31
#> 386 29.32
#> 387    30
#> 388  30.1
#> 389 30.11
#> 390 30.12
#> 391  30.2
#> 392 30.20
#> 393  30.3
#> 394 30.30
#> 395  30.4
#> 396 30.40
#> 397  30.9
#> 398 30.91
#> 399 30.92
#> 400 30.99
#> 401    31
#> 402  31.0
#> 403 31.01
#> 404 31.02
#> 405 31.03
#> 406 31.09
#> 407    32
#> 408  32.1
#> 409 32.11
#> 410 32.12
#> 411 32.13
#> 412  32.2
#> 413 32.20
#> 414  32.3
#> 415 32.30
#> 416  32.4
#> 417 32.40
#> 418  32.5
#> 419 32.50
#> 420  32.9
#> 421 32.91
#> 422 32.99
#> 423    33
#> 424  33.1
#> 425 33.11
#> 426 33.12
#> 427 33.13
#> 428 33.14
#> 429 33.15
#> 430 33.16
#> 431 33.17
#> 432 33.19
#> 433  33.2
#> 434 33.20
#> 435    35
#> 436  35.1
#> 437 35.11
#> 438 35.12
#> 439 35.13
#> 440 35.14
#> 441  35.2
#> 442 35.21
#> 443 35.22
#> 444 35.23
#> 445  35.3
#> 446 35.30
#> 447    36
#> 448  36.0
#> 449 36.00
#> 450    37
#> 451  37.0
#> 452 37.00
#> 453    38
#> 454  38.1
#> 455 38.11
#> 456 38.12
#> 457  38.2
#> 458 38.21
#> 459 38.22
#> 460  38.3
#> 461 38.31
#> 462 38.32
#> 463    39
#> 464  39.0
#> 465 39.00
#> 466    41
#> 467  41.1
#> 468 41.10
#> 469  41.2
#> 470 41.20
#> 471    42
#> 472  42.1
#> 473 42.11
#> 474 42.12
#> 475 42.13
#> 476  42.2
#> 477 42.21
#> 478 42.22
#> 479  42.9
#> 480 42.91
#> 481 42.99
#> 482    43
#> 483  43.1
#> 484 43.11
#> 485 43.12
#> 486 43.13
#> 487  43.2
#> 488 43.21
#> 489 43.22
#> 490 43.29
#> 491  43.3
#> 492 43.31
#> 493 43.32
#> 494 43.33
#> 495 43.34
#> 496 43.39
#> 497  43.9
#> 498 43.91
#> 499 43.99
#> 500    45
#> 501  45.1
#> 502 45.11
#> 503 45.19
#> 504  45.2
#> 505 45.20
#> 506  45.3
#> 507 45.31
#> 508 45.32
#> 509  45.4
#> 510 45.40
#> 511    46
#> 512  46.1
#> 513 46.11
#> 514 46.12
#> 515 46.13
#> 516 46.14
#> 517 46.15
#> 518 46.16
#> 519 46.17
#> 520 46.18
#> 521 46.19
#> 522  46.2
#> 523 46.21
#> 524 46.22
#> 525 46.23
#> 526 46.24
#> 527  46.3
#> 528 46.31
#> 529 46.32
#> 530 46.33
#> 531 46.34
#> 532 46.35
#> 533 46.36
#> 534 46.37
#> 535 46.38
#> 536 46.39
#> 537  46.4
#> 538 46.41
#> 539 46.42
#> 540 46.43
#> 541 46.44
#> 542 46.45
#> 543 46.46
#> 544 46.47
#> 545 46.48
#> 546 46.49
#> 547  46.5
#> 548 46.51
#> 549 46.52
#> 550  46.6
#> 551 46.61
#> 552 46.62
#> 553 46.63
#> 554 46.64
#> 555 46.65
#> 556 46.66
#> 557 46.69
#> 558  46.7
#> 559 46.71
#> 560 46.72
#> 561 46.73
#> 562 46.74
#> 563 46.75
#> 564 46.76
#> 565 46.77
#> 566  46.9
#> 567 46.90
#> 568    47
#> 569  47.1
#> 570 47.11
#> 571 47.19
#> 572  47.2
#> 573 47.21
#> 574 47.22
#> 575 47.23
#> 576 47.24
#> 577 47.25
#> 578 47.26
#> 579 47.29
#> 580  47.3
#> 581 47.30
#> 582  47.4
#> 583 47.41
#> 584 47.42
#> 585 47.43
#> 586  47.5
#> 587 47.51
#> 588 47.52
#> 589 47.53
#> 590 47.54
#> 591 47.59
#> 592  47.6
#> 593 47.61
#> 594 47.62
#> 595 47.63
#> 596 47.64
#> 597 47.65
#> 598  47.7
#> 599 47.71
#> 600 47.72
#> 601 47.73
#> 602 47.74
#> 603 47.75
#> 604 47.76
#> 605 47.77
#> 606 47.78
#> 607 47.79
#> 608  47.8
#> 609 47.81
#> 610 47.82
#> 611 47.89
#> 612  47.9
#> 613 47.91
#> 614 47.99
#> 615    49
#> 616  49.1
#> 617 49.10
#> 618  49.2
#> 619 49.20
#> 620  49.3
#> 621 49.31
#> 622 49.32
#> 623 49.39
#> 624  49.4
#> 625 49.41
#> 626 49.42
#> 627  49.5
#> 628 49.50
#> 629    50
#> 630  50.1
#> 631 50.10
#> 632  50.2
#> 633 50.20
#> 634  50.3
#> 635 50.30
#> 636  50.4
#> 637 50.40
#> 638    51
#> 639  51.1
#> 640 51.10
#> 641  51.2
#> 642 51.21
#> 643 51.22
#> 644    52
#> 645  52.1
#> 646 52.10
#> 647  52.2
#> 648 52.21
#> 649 52.22
#> 650 52.23
#> 651 52.24
#> 652 52.29
#> 653    53
#> 654  53.1
#> 655 53.10
#> 656  53.2
#> 657 53.20
#> 658    55
#> 659  55.1
#> 660 55.10
#> 661  55.2
#> 662 55.20
#> 663  55.3
#> 664 55.30
#> 665  55.9
#> 666 55.90
#> 667    56
#> 668  56.1
#> 669 56.10
#> 670  56.2
#> 671 56.21
#> 672 56.29
#> 673  56.3
#> 674 56.30
#> 675    58
#> 676  58.1
#> 677 58.11
#> 678 58.12
#> 679 58.13
#> 680 58.14
#> 681 58.19
#> 682  58.2
#> 683 58.21
#> 684 58.29
#> 685    59
#> 686  59.1
#> 687 59.11
#> 688 59.12
#> 689 59.13
#> 690 59.14
#> 691  59.2
#> 692 59.20
#> 693    60
#> 694  60.1
#> 695 60.10
#> 696  60.2
#> 697 60.20
#> 698    61
#> 699  61.1
#> 700 61.10
#> 701  61.2
#> 702 61.20
#> 703  61.3
#> 704 61.30
#> 705  61.9
#> 706 61.90
#> 707    62
#> 708  62.0
#> 709 62.01
#> 710 62.02
#> 711 62.03
#> 712 62.09
#> 713    63
#> 714  63.1
#> 715 63.11
#> 716 63.12
#> 717  63.9
#> 718 63.91
#> 719 63.99
#> 720    64
#> 721  64.1
#> 722 64.11
#> 723 64.19
#> 724  64.2
#> 725 64.20
#> 726  64.3
#> 727 64.30
#> 728  64.9
#> 729 64.91
#> 730 64.92
#> 731 64.99
#> 732    65
#> 733  65.1
#> 734 65.11
#> 735 65.12
#> 736  65.2
#> 737 65.20
#> 738  65.3
#> 739 65.30
#> 740    66
#> 741  66.1
#> 742 66.11
#> 743 66.12
#> 744 66.19
#> 745  66.2
#> 746 66.21
#> 747 66.22
#> 748 66.29
#> 749  66.3
#> 750 66.30
#> 751    68
#> 752  68.1
#> 753 68.10
#> 754  68.2
#> 755 68.20
#> 756  68.3
#> 757 68.31
#> 758 68.32
#> 759    69
#> 760  69.1
#> 761 69.10
#> 762  69.2
#> 763 69.20
#> 764    70
#> 765  70.1
#> 766 70.10
#> 767  70.2
#> 768 70.21
#> 769 70.22
#> 770    71
#> 771  71.1
#> 772 71.11
#> 773 71.12
#> 774  71.2
#> 775 71.20
#> 776    72
#> 777  72.1
#> 778 72.11
#> 779 72.19
#> 780  72.2
#> 781 72.20
#> 782    73
#> 783  73.1
#> 784 73.11
#> 785 73.12
#> 786  73.2
#> 787 73.20
#> 788    74
#> 789  74.1
#> 790 74.10
#> 791  74.2
#> 792 74.20
#> 793  74.3
#> 794 74.30
#> 795  74.9
#> 796 74.90
#> 797    75
#> 798  75.0
#> 799 75.00
#> 800    77
#> 801  77.1
#> 802 77.11
#> 803 77.12
#> 804  77.2
#> 805 77.21
#> 806 77.22
#> 807 77.29
#> 808  77.3
#> 809 77.31
#> 810 77.32
#> 811 77.33
#> 812 77.34
#> 813 77.35
#> 814 77.39
#> 815  77.4
#> 816 77.40
#> 817    78
#> 818  78.1
#> 819 78.10
#> 820  78.2
#> 821 78.20
#> 822  78.3
#> 823 78.30
#> 824    79
#> 825  79.1
#> 826 79.11
#> 827 79.12
#> 828  79.9
#> 829 79.90
#> 830    80
#> 831  80.1
#> 832 80.10
#> 833  80.2
#> 834 80.20
#> 835  80.3
#> 836 80.30
#> 837    81
#> 838  81.1
#> 839 81.10
#> 840  81.2
#> 841 81.21
#> 842 81.22
#> 843 81.29
#> 844  81.3
#> 845 81.30
#> 846    82
#> 847  82.1
#> 848 82.11
#> 849 82.19
#> 850  82.2
#> 851 82.20
#> 852  82.3
#> 853 82.30
#> 854  82.9
#> 855 82.91
#> 856 82.92
#> 857 82.99
#> 858    84
#> 859  84.1
#> 860 84.11
#> 861 84.12
#> 862 84.13
#> 863  84.2
#> 864 84.21
#> 865 84.22
#> 866 84.23
#> 867 84.24
#> 868 84.25
#> 869  84.3
#> 870 84.30
#> 871    85
#> 872  85.1
#> 873 85.10
#> 874  85.2
#> 875 85.20
#> 876  85.3
#> 877 85.31
#> 878 85.32
#> 879  85.4
#> 880 85.41
#> 881 85.42
#> 882  85.5
#> 883 85.51
#> 884 85.52
#> 885 85.53
#> 886 85.59
#> 887  85.6
#> 888 85.60
#> 889    86
#> 890  86.1
#> 891 86.10
#> 892  86.2
#> 893 86.21
#> 894 86.22
#> 895 86.23
#> 896  86.9
#> 897 86.90
#> 898    87
#> 899  87.1
#> 900 87.10
#> 901  87.2
#> 902 87.20
#> 903  87.3
#> 904 87.30
#> 905  87.9
#> 906 87.90
#> 907    88
#> 908  88.1
#> 909 88.10
#> 910  88.9
#> 911 88.91
#> 912 88.99
#> 913    90
#> 914  90.0
#> 915 90.01
#> 916 90.02
#> 917 90.03
#> 918 90.04
#> 919    91
#> 920  91.0
#> 921 91.01
#> 922 91.02
#> 923 91.03
#> 924 91.04
#> 925    92
#> 926  92.0
#> 927 92.00
#> 928    93
#> 929  93.1
#> 930 93.11
#> 931 93.12
#> 932 93.13
#> 933 93.19
#> 934  93.2
#> 935 93.21
#> 936 93.29
#> 937    94
#> 938  94.1
#> 939 94.11
#> 940 94.12
#> 941  94.2
#> 942 94.20
#> 943  94.9
#> 944 94.91
#> 945 94.92
#> 946 94.99
#> 947    95
#> 948  95.1
#> 949 95.11
#> 950 95.12
#> 951  95.2
#> 952 95.21
#> 953 95.22
#> 954 95.23
#> 955 95.24
#> 956 95.25
#> 957 95.29
#> 958    96
#> 959  96.0
#> 960 96.01
#> 961 96.02
#> 962 96.03
#> 963 96.04
#> 964 96.09
#> 965    97
#> 966  97.0
#> 967 97.00
#> 968    98
#> 969  98.1
#> 970 98.10
#> 971  98.2
#> 972 98.20
#> 973    99
#> 974  99.0
#> 975 99.00
#> 976     A
#> 977     B
#> 978     C
#> 979     D
#> 980     E
#> 981     F
#> 982     G
#> 983     H
#> 984     I
#> 985     J
#> 986     K
#> 987     L
#> 988     M
#> 989     N
#> 990     O
#> 991     P
#> 992     Q
#> 993     R
#> 994     S
#> 995     T
#> 996     U
#>                                                                                                                                        Label
#> 1                                                                         Crop and animal production, hunting and related service activities
#> 2                                                                                                             Growing of non-perennial crops
#> 3                                                                           Growing of cereals (except rice), leguminous crops and oil seeds
#> 4                                                                                                                            Growing of rice
#> 5                                                                                         Growing of vegetables and melons, roots and tubers
#> 6                                                                                                                      Growing of sugar cane
#> 7                                                                                                                         Growing of tobacco
#> 8                                                                                                                     Growing of fibre crops
#> 9                                                                                                       Growing of other non-perennial crops
#> 10                                                                                                                Growing of perennial crops
#> 11                                                                                                                         Growing of grapes
#> 12                                                                                                Growing of tropical and subtropical fruits
#> 13                                                                                                                  Growing of citrus fruits
#> 14                                                                                                   Growing of pome fruits and stone fruits
#> 15                                                                                            Growing of other tree and bush fruits and nuts
#> 16                                                                                                              Growing of oleaginous fruits
#> 17                                                                                                                 Growing of beverage crops
#> 18                                                                                Growing of spices, aromatic, drug and pharmaceutical crops
#> 19                                                                                                          Growing of other perennial crops
#> 20                                                                                                                         Plant propagation
#> 21                                                                                                                         Plant propagation
#> 22                                                                                                                         Animal production
#> 23                                                                                                                   Raising of dairy cattle
#> 24                                                                                                     Raising of other cattle and buffaloes
#> 25                                                                                                       Raising of horses and other equines
#> 26                                                                                                            Raising of camels and camelids
#> 27                                                                                                                Raising of sheep and goats
#> 28                                                                                                                     Raising of swine/pigs
#> 29                                                                                                                        Raising of poultry
#> 30                                                                                                                  Raising of other animals
#> 31                                                                                                                             Mixed farming
#> 32                                                                                                                             Mixed farming
#> 33                                                                        Support activities to agriculture and post-harvest crop activities
#> 34                                                                                                    Support activities for crop production
#> 35                                                                                                  Support activities for animal production
#> 36                                                                                                              Post-harvest crop activities
#> 37                                                                                                           Seed processing for propagation
#> 38                                                                                          Hunting, trapping and related service activities
#> 39                                                                                          Hunting, trapping and related service activities
#> 40                                                                                                                      Forestry and logging
#> 41                                                                                                Silviculture and other forestry activities
#> 42                                                                                                Silviculture and other forestry activities
#> 43                                                                                                                                   Logging
#> 44                                                                                                                                   Logging
#> 45                                                                                               Gathering of wild growing non-wood products
#> 46                                                                                               Gathering of wild growing non-wood products
#> 47                                                                                                              Support services to forestry
#> 48                                                                                                              Support services to forestry
#> 49                                                                                                                   Fishing and aquaculture
#> 50                                                                                                                                   Fishing
#> 51                                                                                                                            Marine fishing
#> 52                                                                                                                        Freshwater fishing
#> 53                                                                                                                               Aquaculture
#> 54                                                                                                                        Marine aquaculture
#> 55                                                                                                                    Freshwater aquaculture
#> 56                                                                                                                Mining of coal and lignite
#> 57                                                                                                                       Mining of hard coal
#> 58                                                                                                                       Mining of hard coal
#> 59                                                                                                                         Mining of lignite
#> 60                                                                                                                         Mining of lignite
#> 61                                                                                             Extraction of crude petroleum and natural gas
#> 62                                                                                                             Extraction of crude petroleum
#> 63                                                                                                             Extraction of crude petroleum
#> 64                                                                                                                 Extraction of natural gas
#> 65                                                                                                                 Extraction of natural gas
#> 66                                                                                                                      Mining of metal ores
#> 67                                                                                                                       Mining of iron ores
#> 68                                                                                                                       Mining of iron ores
#> 69                                                                                                          Mining of non-ferrous metal ores
#> 70                                                                                                        Mining of uranium and thorium ores
#> 71                                                                                                    Mining of other non-ferrous metal ores
#> 72                                                                                                                Other mining and quarrying
#> 73                                                                                                         Quarrying of stone, sand and clay
#> 74                                                            Quarrying of ornamental and building stone, limestone, gypsum, chalk and slate
#> 75                                                                             Operation of gravel and sand pits; mining of clays and kaolin
#> 76                                                                                                               Mining and quarrying n.e.c.
#> 77                                                                                                Mining of chemical and fertiliser minerals
#> 78                                                                                                                        Extraction of peat
#> 79                                                                                                                        Extraction of salt
#> 80                                                                                                         Other mining and quarrying n.e.c.
#> 81                                                                                                         Mining support service activities
#> 82                                                                               Support activities for petroleum and natural gas extraction
#> 83                                                                               Support activities for petroleum and natural gas extraction
#> 84                                                                                         Support activities for other mining and quarrying
#> 85                                                                                         Support activities for other mining and quarrying
#> 86                                                                                                              Manufacture of food products
#> 87                                                                         Processing and preserving of meat and production of meat products
#> 88                                                                                                         Processing and preserving of meat
#> 89                                                                                                 Processing and preserving of poultry meat
#> 90                                                                                              Production of meat and poultry meat products
#> 91                                                                               Processing and preserving of fish, crustaceans and molluscs
#> 92                                                                               Processing and preserving of fish, crustaceans and molluscs
#> 93                                                                                         Processing and preserving of fruit and vegetables
#> 94                                                                                                     Processing and preserving of potatoes
#> 95                                                                                                  Manufacture of fruit and vegetable juice
#> 96                                                                                   Other processing and preserving of fruit and vegetables
#> 97                                                                                         Manufacture of vegetable and animal oils and fats
#> 98                                                                                                              Manufacture of oils and fats
#> 99                                                                                          Manufacture of margarine and similar edible fats
#> 100                                                                                                            Manufacture of dairy products
#> 101                                                                                                   Operation of dairies and cheese making
#> 102                                                                                                                 Manufacture of ice cream
#> 103                                                                         Manufacture of grain mill products, starches and starch products
#> 104                                                                                                       Manufacture of grain mill products
#> 105                                                                                              Manufacture of starches and starch products
#> 106                                                                                           Manufacture of bakery and farinaceous products
#> 107                                                                        Manufacture of bread; manufacture of fresh pastry goods and cakes
#> 108                                                       Manufacture of rusks and biscuits; manufacture of preserved pastry goods and cakes
#> 109                                                              Manufacture of macaroni, noodles, couscous and similar farinaceous products
#> 110                                                                                                       Manufacture of other food products
#> 111                                                                                                                     Manufacture of sugar
#> 112                                                                                  Manufacture of cocoa, chocolate and sugar confectionery
#> 113                                                                                                             Processing of tea and coffee
#> 114                                                                                                 Manufacture of condiments and seasonings
#> 115                                                                                                 Manufacture of prepared meals and dishes
#> 116                                                                           Manufacture of homogenised food preparations and dietetic food
#> 117                                                                                                Manufacture of other food products n.e.c.
#> 118                                                                                                     Manufacture of prepared animal feeds
#> 119                                                                                           Manufacture of prepared feeds for farm animals
#> 120                                                                                                        Manufacture of prepared pet foods
#> 121                                                                                                                 Manufacture of beverages
#> 122                                                                                                                 Manufacture of beverages
#> 123                                                                                           Distilling, rectifying and blending of spirits
#> 124                                                                                                           Manufacture of wine from grape
#> 125                                                                                               Manufacture of cider and other fruit wines
#> 126                                                                                   Manufacture of other non-distilled fermented beverages
#> 127                                                                                                                      Manufacture of beer
#> 128                                                                                                                      Manufacture of malt
#> 129                                                        Manufacture of soft drinks; production of mineral waters and other bottled waters
#> 130                                                                                                          Manufacture of tobacco products
#> 131                                                                                                          Manufacture of tobacco products
#> 132                                                                                                          Manufacture of tobacco products
#> 133                                                                                                                  Manufacture of textiles
#> 134                                                                                               Preparation and spinning of textile fibres
#> 135                                                                                               Preparation and spinning of textile fibres
#> 136                                                                                                                      Weaving of textiles
#> 137                                                                                                                      Weaving of textiles
#> 138                                                                                                                    Finishing of textiles
#> 139                                                                                                                    Finishing of textiles
#> 140                                                                                                            Manufacture of other textiles
#> 141                                                                                             Manufacture of knitted and crocheted fabrics
#> 142                                                                                  Manufacture of made-up textile articles, except apparel
#> 143                                                                                                          Manufacture of carpets and rugs
#> 144                                                                                          Manufacture of cordage, rope, twine and netting
#> 145                                                              Manufacture of non-wovens and articles made from non-wovens, except apparel
#> 146                                                                                   Manufacture of other technical and industrial textiles
#> 147                                                                                                     Manufacture of other textiles n.e.c.
#> 148                                                                                                           Manufacture of wearing apparel
#> 149                                                                                       Manufacture of wearing apparel, except fur apparel
#> 150                                                                                                           Manufacture of leather clothes
#> 151                                                                                                                  Manufacture of workwear
#> 152                                                                                                           Manufacture of other outerwear
#> 153                                                                                                                 Manufacture of underwear
#> 154                                                                                     Manufacture of other wearing apparel and accessories
#> 155                                                                                                           Manufacture of articles of fur
#> 156                                                                                                           Manufacture of articles of fur
#> 157                                                                                             Manufacture of knitted and crocheted apparel
#> 158                                                                                             Manufacture of knitted and crocheted hosiery
#> 159                                                                                       Manufacture of other knitted and crocheted apparel
#> 160                                                                                              Manufacture of leather and related products
#> 161                      Tanning and dressing of leather; manufacture of luggage, handbags, saddlery and harness; dressing and dyeing of fur
#> 162                                                                              Tanning and dressing of leather; dressing and dyeing of fur
#> 163                                                                      Manufacture of luggage, handbags and the like, saddlery and harness
#> 164                                                                                                                  Manufacture of footwear
#> 165                                                                                                                  Manufacture of footwear
#> 166          Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials
#> 167                                                                                                           Sawmilling and planing of wood
#> 168                                                                                                           Sawmilling and planing of wood
#> 169                                                                      Manufacture of products of wood, cork, straw and plaiting materials
#> 170                                                                                       Manufacture of veneer sheets and wood-based panels
#> 171                                                                                                  Manufacture of assembled parquet floors
#> 172                                                                                     Manufacture of other builders' carpentry and joinery
#> 173                                                                                                         Manufacture of wooden containers
#> 174                                     Manufacture of other products of wood; manufacture of articles of cork, straw and plaiting materials
#> 175                                                                                                  Manufacture of paper and paper products
#> 176                                                                                                Manufacture of pulp, paper and paperboard
#> 177                                                                                                                      Manufacture of pulp
#> 178                                                                                                      Manufacture of paper and paperboard
#> 179                                                                                          Manufacture of articles of paper and paperboard
#> 180                                                 Manufacture of corrugated paper and paperboard and of containers of paper and paperboard
#> 181                                                                     Manufacture of household and sanitary goods and of toilet requisites
#> 182                                                                                                          Manufacture of paper stationery
#> 183                                                                                                                 Manufacture of wallpaper
#> 184                                                                                    Manufacture of other articles of paper and paperboard
#> 185                                                                                              Printing and reproduction of recorded media
#> 186                                                                                      Printing and service activities related to printing
#> 187                                                                                                                   Printing of newspapers
#> 188                                                                                                                           Other printing
#> 189                                                                                                         Pre-press and pre-media services
#> 190                                                                                                             Binding and related services
#> 191                                                                                                           Reproduction of recorded media
#> 192                                                                                                           Reproduction of recorded media
#> 193                                                                                       Manufacture of coke and refined petroleum products
#> 194                                                                                                        Manufacture of coke oven products
#> 195                                                                                                        Manufacture of coke oven products
#> 196                                                                                                Manufacture of refined petroleum products
#> 197                                                                                                Manufacture of refined petroleum products
#> 198                                                                                           Manufacture of chemicals and chemical products
#> 199                       Manufacture of basic chemicals, fertilisers and nitrogen compounds, plastics and synthetic rubber in primary forms
#> 200                                                                                                          Manufacture of industrial gases
#> 201                                                                                                         Manufacture of dyes and pigments
#> 202                                                                                           Manufacture of other inorganic basic chemicals
#> 203                                                                                             Manufacture of other organic basic chemicals
#> 204                                                                                        Manufacture of fertilisers and nitrogen compounds
#> 205                                                                                                 Manufacture of plastics in primary forms
#> 206                                                                                         Manufacture of synthetic rubber in primary forms
#> 207                                                                                Manufacture of pesticides and other agrochemical products
#> 208                                                                                Manufacture of pesticides and other agrochemical products
#> 209                                                          Manufacture of paints, varnishes and similar coatings, printing ink and mastics
#> 210                                                          Manufacture of paints, varnishes and similar coatings, printing ink and mastics
#> 211                                Manufacture of soap and detergents, cleaning and polishing preparations, perfumes and toilet preparations
#> 212                                                                  Manufacture of soap and detergents, cleaning and polishing preparations
#> 213                                                                                          Manufacture of perfumes and toilet preparations
#> 214                                                                                                   Manufacture of other chemical products
#> 215                                                                                                                Manufacture of explosives
#> 216                                                                                                                     Manufacture of glues
#> 217                                                                                                            Manufacture of essential oils
#> 218                                                                                            Manufacture of other chemical products n.e.c.
#> 219                                                                                                           Manufacture of man-made fibres
#> 220                                                                                                           Manufacture of man-made fibres
#> 221                                                             Manufacture of basic pharmaceutical products and pharmaceutical preparations
#> 222                                                                                             Manufacture of basic pharmaceutical products
#> 223                                                                                             Manufacture of basic pharmaceutical products
#> 224                                                                                               Manufacture of pharmaceutical preparations
#> 225                                                                                               Manufacture of pharmaceutical preparations
#> 226                                                                                               Manufacture of rubber and plastic products
#> 227                                                                                                           Manufacture of rubber products
#> 228                                                         Manufacture of rubber tyres and tubes; retreading and rebuilding of rubber tyres
#> 229                                                                                                     Manufacture of other rubber products
#> 230                                                                                                         Manufacture of plastics products
#> 231                                                                                Manufacture of plastic plates, sheets, tubes and profiles
#> 232                                                                                                     Manufacture of plastic packing goods
#> 233                                                                                                 Manufacture of builders' ware of plastic
#> 234                                                                                                    Manufacture of other plastic products
#> 235                                                                                       Manufacture of other non-metallic mineral products
#> 236                                                                                                  Manufacture of glass and glass products
#> 237                                                                                                                Manufacture of flat glass
#> 238                                                                                                     Shaping and processing of flat glass
#> 239                                                                                                              Manufacture of hollow glass
#> 240                                                                                                              Manufacture of glass fibres
#> 241                                                                 Manufacture and processing of other glass, including technical glassware
#> 242                                                                                                       Manufacture of refractory products
#> 243                                                                                                       Manufacture of refractory products
#> 244                                                                                                   Manufacture of clay building materials
#> 245                                                                                                   Manufacture of ceramic tiles and flags
#> 246                                                                    Manufacture of bricks, tiles and construction products, in baked clay
#> 247                                                                                      Manufacture of other porcelain and ceramic products
#> 248                                                                                 Manufacture of ceramic household and ornamental articles
#> 249                                                                                                 Manufacture of ceramic sanitary fixtures
#> 250                                                                                Manufacture of ceramic insulators and insulating fittings
#> 251                                                                                          Manufacture of other technical ceramic products
#> 252                                                                                                    Manufacture of other ceramic products
#> 253                                                                                                  Manufacture of cement, lime and plaster
#> 254                                                                                                                    Manufacture of cement
#> 255                                                                                                          Manufacture of lime and plaster
#> 256                                                                                  Manufacture of articles of concrete, cement and plaster
#> 257                                                                               Manufacture of concrete products for construction purposes
#> 258                                                                                Manufacture of plaster products for construction purposes
#> 259                                                                                                      Manufacture of ready-mixed concrete
#> 260                                                                                                                   Manufacture of mortars
#> 261                                                                                                              Manufacture of fibre cement
#> 262                                                                            Manufacture of other articles of concrete, plaster and cement
#> 263                                                                                                  Cutting, shaping and finishing of stone
#> 264                                                                                                  Cutting, shaping and finishing of stone
#> 265                                                                Manufacture of abrasive products and non-metallic mineral products n.e.c.
#> 266                                                                                                          Production of abrasive products
#> 267                                                                                Manufacture of other non-metallic mineral products n.e.c.
#> 268                                                                                                              Manufacture of basic metals
#> 269                                                                                  Manufacture of basic iron and steel and of ferro-alloys
#> 270                                                                                  Manufacture of basic iron and steel and of ferro-alloys
#> 271                                                              Manufacture of tubes, pipes, hollow profiles and related fittings, of steel
#> 272                                                              Manufacture of tubes, pipes, hollow profiles and related fittings, of steel
#> 273                                                                               Manufacture of other products of first processing of steel
#> 274                                                                                                                     Cold drawing of bars
#> 275                                                                                                             Cold rolling of narrow strip
#> 276                                                                                                                  Cold forming or folding
#> 277                                                                                                                     Cold drawing of wire
#> 278                                                                               Manufacture of basic precious and other non-ferrous metals
#> 279                                                                                                               Precious metals production
#> 280                                                                                                                     Aluminium production
#> 281                                                                                                            Lead, zinc and tin production
#> 282                                                                                                                        Copper production
#> 283                                                                                                       Other non-ferrous metal production
#> 284                                                                                                               Processing of nuclear fuel
#> 285                                                                                                                        Casting of metals
#> 286                                                                                                                          Casting of iron
#> 287                                                                                                                         Casting of steel
#> 288                                                                                                                  Casting of light metals
#> 289                                                                                                      Casting of other non-ferrous metals
#> 290                                                                 Manufacture of fabricated metal products, except machinery and equipment
#> 291                                                                                                 Manufacture of structural metal products
#> 292                                                                                  Manufacture of metal structures and parts of structures
#> 293                                                                                                Manufacture of doors and windows of metal
#> 294                                                                                 Manufacture of tanks, reservoirs and containers of metal
#> 295                                                                                     Manufacture of central heating radiators and boilers
#> 296                                                                           Manufacture of other tanks, reservoirs and containers of metal
#> 297                                                                Manufacture of steam generators, except central heating hot water boilers
#> 298                                                                Manufacture of steam generators, except central heating hot water boilers
#> 299                                                                                                    Manufacture of weapons and ammunition
#> 300                                                                                                    Manufacture of weapons and ammunition
#> 301                                                                 Forging, pressing, stamping and roll-forming of metal; powder metallurgy
#> 302                                                                 Forging, pressing, stamping and roll-forming of metal; powder metallurgy
#> 303                                                                                               Treatment and coating of metals; machining
#> 304                                                                                                          Treatment and coating of metals
#> 305                                                                                                                                Machining
#> 306                                                                                       Manufacture of cutlery, tools and general hardware
#> 307                                                                                                                   Manufacture of cutlery
#> 308                                                                                                          Manufacture of locks and hinges
#> 309                                                                                                                     Manufacture of tools
#> 310                                                                                           Manufacture of other fabricated metal products
#> 311                                                                                        Manufacture of steel drums and similar containers
#> 312                                                                                                     Manufacture of light metal packaging
#> 313                                                                                          Manufacture of wire products, chain and springs
#> 314                                                                                      Manufacture of fasteners and screw machine products
#> 315                                                                                    Manufacture of other fabricated metal products n.e.c.
#> 316                                                                                 Manufacture of computer, electronic and optical products
#> 317                                                                                          Manufacture of electronic components and boards
#> 318                                                                                                     Manufacture of electronic components
#> 319                                                                                                  Manufacture of loaded electronic boards
#> 320                                                                                        Manufacture of computers and peripheral equipment
#> 321                                                                                        Manufacture of computers and peripheral equipment
#> 322                                                                                                   Manufacture of communication equipment
#> 323                                                                                                   Manufacture of communication equipment
#> 324                                                                                                      Manufacture of consumer electronics
#> 325                                                                                                      Manufacture of consumer electronics
#> 326                                      Manufacture of instruments and appliances for measuring, testing and navigation; watches and clocks
#> 327                                                          Manufacture of instruments and appliances for measuring, testing and navigation
#> 328                                                                                                        Manufacture of watches and clocks
#> 329                                                              Manufacture of irradiation, electromedical and electrotherapeutic equipment
#> 330                                                              Manufacture of irradiation, electromedical and electrotherapeutic equipment
#> 331                                                                            Manufacture of optical instruments and photographic equipment
#> 332                                                                            Manufacture of optical instruments and photographic equipment
#> 333                                                                                                Manufacture of magnetic and optical media
#> 334                                                                                                Manufacture of magnetic and optical media
#> 335                                                                                                      Manufacture of electrical equipment
#> 336                              Manufacture of electric motors, generators, transformers and electricity distribution and control apparatus
#> 337                                                                              Manufacture of electric motors, generators and transformers
#> 338                                                                            Manufacture of electricity distribution and control apparatus
#> 339                                                                                                Manufacture of batteries and accumulators
#> 340                                                                                                Manufacture of batteries and accumulators
#> 341                                                                                                 Manufacture of wiring and wiring devices
#> 342                                                                                                        Manufacture of fibre optic cables
#> 343                                                                            Manufacture of other electronic and electric wires and cables
#> 344                                                                                                            Manufacture of wiring devices
#> 345                                                                                               Manufacture of electric lighting equipment
#> 346                                                                                               Manufacture of electric lighting equipment
#> 347                                                                                                       Manufacture of domestic appliances
#> 348                                                                                              Manufacture of electric domestic appliances
#> 349                                                                                          Manufacture of non-electric domestic appliances
#> 350                                                                                                Manufacture of other electrical equipment
#> 351                                                                                                Manufacture of other electrical equipment
#> 352                                                                                            Manufacture of machinery and equipment n.e.c.
#> 353                                                                                               Manufacture of general — purpose machinery
#> 354                                                          Manufacture of engines and turbines, except aircraft, vehicle and cycle engines
#> 355                                                                                                     Manufacture of fluid power equipment
#> 356                                                                                               Manufacture of other pumps and compressors
#> 357                                                                                                     Manufacture of other taps and valves
#> 358                                                                             Manufacture of bearings, gears, gearing and driving elements
#> 359                                                                                           Manufacture of other general-purpose machinery
#> 360                                                                                       Manufacture of ovens, furnaces and furnace burners
#> 361                                                                                            Manufacture of lifting and handling equipment
#> 362                                                Manufacture of office machinery and equipment (except computers and peripheral equipment)
#> 363                                                                                                   Manufacture of power-driven hand tools
#> 364                                                                            Manufacture of non-domestic cooling and ventilation equipment
#> 365                                                                                    Manufacture of other general-purpose machinery n.e.c.
#> 366                                                                                       Manufacture of agricultural and forestry machinery
#> 367                                                                                       Manufacture of agricultural and forestry machinery
#> 368                                                                                 Manufacture of metal forming machinery and machine tools
#> 369                                                                                                   Manufacture of metal forming machinery
#> 370                                                                                                       Manufacture of other machine tools
#> 371                                                                                           Manufacture of other special-purpose machinery
#> 372                                                                                                  Manufacture of machinery for metallurgy
#> 373                                                                          Manufacture of machinery for mining, quarrying and construction
#> 374                                                                       Manufacture of machinery for food, beverage and tobacco processing
#> 375                                                                     Manufacture of machinery for textile, apparel and leather production
#> 376                                                                             Manufacture of machinery for paper and paperboard production
#> 377                                                                                              Manufacture of plastic and rubber machinery
#> 378                                                                                    Manufacture of other special-purpose machinery n.e.c.
#> 379                                                                                Manufacture of motor vehicles, trailers and semi-trailers
#> 380                                                                                                            Manufacture of motor vehicles
#> 381                                                                                                            Manufacture of motor vehicles
#> 382                                          Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi-trailers
#> 383                                          Manufacture of bodies (coachwork) for motor vehicles; manufacture of trailers and semi-trailers
#> 384                                                                                  Manufacture of parts and accessories for motor vehicles
#> 385                                                                    Manufacture of electrical and electronic equipment for motor vehicles
#> 386                                                                            Manufacture of other parts and accessories for motor vehicles
#> 387                                                                                                 Manufacture of other transport equipment
#> 388                                                                                                              Building of ships and boats
#> 389                                                                                                Building of ships and floating structures
#> 390                                                                                                  Building of pleasure and sporting boats
#> 391                                                                                     Manufacture of railway locomotives and rolling stock
#> 392                                                                                     Manufacture of railway locomotives and rolling stock
#> 393                                                                                  Manufacture of air and spacecraft and related machinery
#> 394                                                                                  Manufacture of air and spacecraft and related machinery
#> 395                                                                                                Manufacture of military fighting vehicles
#> 396                                                                                                Manufacture of military fighting vehicles
#> 397                                                                                                Manufacture of transport equipment n.e.c.
#> 398                                                                                                               Manufacture of motorcycles
#> 399                                                                                            Manufacture of bicycles and invalid carriages
#> 400                                                                                          Manufacture of other transport equipment n.e.c.
#> 401                                                                                                                 Manufacture of furniture
#> 402                                                                                                                 Manufacture of furniture
#> 403                                                                                                 Manufacture of office and shop furniture
#> 404                                                                                                         Manufacture of kitchen furniture
#> 405                                                                                                                Manufacture of mattresses
#> 406                                                                                                           Manufacture of other furniture
#> 407                                                                                                                      Other manufacturing
#> 408                                                                                Manufacture of jewellery, bijouterie and related articles
#> 409                                                                                                                        Striking of coins
#> 410                                                                                            Manufacture of jewellery and related articles
#> 411                                                                                  Manufacture of imitation jewellery and related articles
#> 412                                                                                                       Manufacture of musical instruments
#> 413                                                                                                       Manufacture of musical instruments
#> 414                                                                                                              Manufacture of sports goods
#> 415                                                                                                              Manufacture of sports goods
#> 416                                                                                                            Manufacture of games and toys
#> 417                                                                                                            Manufacture of games and toys
#> 418                                                                               Manufacture of medical and dental instruments and supplies
#> 419                                                                               Manufacture of medical and dental instruments and supplies
#> 420                                                                                                                     Manufacturing n.e.c.
#> 421                                                                                                        Manufacture of brooms and brushes
#> 422                                                                                                               Other manufacturing n.e.c.
#> 423                                                                                       Repair and installation of machinery and equipment
#> 424                                                                             Repair of fabricated metal products, machinery and equipment
#> 425                                                                                                      Repair of fabricated metal products
#> 426                                                                                                                      Repair of machinery
#> 427                                                                                               Repair of electronic and optical equipment
#> 428                                                                                                           Repair of electrical equipment
#> 429                                                                                                Repair and maintenance of ships and boats
#> 430                                                                                        Repair and maintenance of aircraft and spacecraft
#> 431                                                                                      Repair and maintenance of other transport equipment
#> 432                                                                                                                Repair of other equipment
#> 433                                                                                       Installation of industrial machinery and equipment
#> 434                                                                                       Installation of industrial machinery and equipment
#> 435                                                                                      Electricity, gas, steam and air conditioning supply
#> 436                                                                                 Electric power generation, transmission and distribution
#> 437                                                                                                                Production of electricity
#> 438                                                                                                              Transmission of electricity
#> 439                                                                                                              Distribution of electricity
#> 440                                                                                                                     Trade of electricity
#> 441                                                                          Manufacture of gas; distribution of gaseous fuels through mains
#> 442                                                                                                                       Manufacture of gas
#> 443                                                                                              Distribution of gaseous fuels through mains
#> 444                                                                                                               Trade of gas through mains
#> 445                                                                                                        Steam and air conditioning supply
#> 446                                                                                                        Steam and air conditioning supply
#> 447                                                                                                   Water collection, treatment and supply
#> 448                                                                                                   Water collection, treatment and supply
#> 449                                                                                                   Water collection, treatment and supply
#> 450                                                                                                                                 Sewerage
#> 451                                                                                                                                 Sewerage
#> 452                                                                                                                                 Sewerage
#> 453                                                                  Waste collection, treatment and disposal activities; materials recovery
#> 454                                                                                                                         Waste collection
#> 455                                                                                                        Collection of non-hazardous waste
#> 456                                                                                                            Collection of hazardous waste
#> 457                                                                                                             Waste treatment and disposal
#> 458                                                                                            Treatment and disposal of non-hazardous waste
#> 459                                                                                                Treatment and disposal of hazardous waste
#> 460                                                                                                                       Materials recovery
#> 461                                                                                                                    Dismantling of wrecks
#> 462                                                                                                             Recovery of sorted materials
#> 463                                                                               Remediation activities and other waste management services
#> 464                                                                               Remediation activities and other waste management services
#> 465                                                                               Remediation activities and other waste management services
#> 466                                                                                                                Construction of buildings
#> 467                                                                                                         Development of building projects
#> 468                                                                                                         Development of building projects
#> 469                                                                                Construction of residential and non-residential buildings
#> 470                                                                                Construction of residential and non-residential buildings
#> 471                                                                                                                        Civil engineering
#> 472                                                                                                       Construction of roads and railways
#> 473                                                                                                      Construction of roads and motorways
#> 474                                                                                        Construction of railways and underground railways
#> 475                                                                                                      Construction of bridges and tunnels
#> 476                                                                                                         Construction of utility projects
#> 477                                                                                              Construction of utility projects for fluids
#> 478                                                                  Construction of utility projects for electricity and telecommunications
#> 479                                                                                         Construction of other civil engineering projects
#> 480                                                                                                           Construction of water projects
#> 481                                                                                  Construction of other civil engineering projects n.e.c.
#> 482                                                                                                      Specialised construction activities
#> 483                                                                                                          Demolition and site preparation
#> 484                                                                                                                               Demolition
#> 485                                                                                                                         Site preparation
#> 486                                                                                                                 Test drilling and boring
#> 487                                                                      Electrical, plumbing and other construction installation activities
#> 488                                                                                                                  Electrical installation
#> 489                                                                                         Plumbing, heat and air conditioning installation
#> 490                                                                                                          Other construction installation
#> 491                                                                                                        Building completion and finishing
#> 492                                                                                                                               Plastering
#> 493                                                                                                                     Joinery installation
#> 494                                                                                                                  Floor and wall covering
#> 495                                                                                                                     Painting and glazing
#> 496                                                                                                  Other building completion and finishing
#> 497                                                                                                Other specialised construction activities
#> 498                                                                                                                       Roofing activities
#> 499                                                                                         Other specialised construction activities n.e.c.
#> 500                                                                  Wholesale and retail trade and repair of motor vehicles and motorcycles
#> 501                                                                                                                   Sale of motor vehicles
#> 502                                                                                                    Sale of cars and light motor vehicles
#> 503                                                                                                             Sale of other motor vehicles
#> 504                                                                                                 Maintenance and repair of motor vehicles
#> 505                                                                                                 Maintenance and repair of motor vehicles
#> 506                                                                                              Sale of motor vehicle parts and accessories
#> 507                                                                                   Wholesale trade of motor vehicle parts and accessories
#> 508                                                                                      Retail trade of motor vehicle parts and accessories
#> 509                                                            Sale, maintenance and repair of motorcycles and related parts and accessories
#> 510                                                            Sale, maintenance and repair of motorcycles and related parts and accessories
#> 511                                                                                Wholesale trade, except of motor vehicles and motorcycles
#> 512                                                                                                     Wholesale on a fee or contract basis
#> 513                   Agents involved in the sale of agricultural raw materials, live animals, textile raw materials and semi-finished goods
#> 514                                                              Agents involved in the sale of fuels, ores, metals and industrial chemicals
#> 515                                                                             Agents involved in the sale of timber and building materials
#> 516                                                       Agents involved in the sale of machinery, industrial equipment, ships and aircraft
#> 517                                                      Agents involved in the sale of furniture, household goods, hardware and ironmongery
#> 518                                                       Agents involved in the sale of textiles, clothing, fur, footwear and leather goods
#> 519                                                                               Agents involved in the sale of food, beverages and tobacco
#> 520                                                                              Agents specialised in the sale of other particular products
#> 521                                                                                        Agents involved in the sale of a variety of goods
#> 522                                                                                 Wholesale of agricultural raw materials and live animals
#> 523                                                                       Wholesale of grain, unmanufactured tobacco, seeds and animal feeds
#> 524                                                                                                          Wholesale of flowers and plants
#> 525                                                                                                                Wholesale of live animals
#> 526                                                                                                    Wholesale of hides, skins and leather
#> 527                                                                                                 Wholesale of food, beverages and tobacco
#> 528                                                                                                        Wholesale of fruit and vegetables
#> 529                                                                                                      Wholesale of meat and meat products
#> 530                                                                               Wholesale of dairy products, eggs and edible oils and fats
#> 531                                                                                                                   Wholesale of beverages
#> 532                                                                                                            Wholesale of tobacco products
#> 533                                                                                 Wholesale of sugar and chocolate and sugar confectionery
#> 534                                                                                               Wholesale of coffee, tea, cocoa and spices
#> 535                                                                        Wholesale of other food, including fish, crustaceans and molluscs
#> 536                                                                                 Non-specialised wholesale of food, beverages and tobacco
#> 537                                                                                                             Wholesale of household goods
#> 538                                                                                                                    Wholesale of textiles
#> 539                                                                                                       Wholesale of clothing and footwear
#> 540                                                                                             Wholesale of electrical household appliances
#> 541                                                                                  Wholesale of china and glassware and cleaning materials
#> 542                                                                                                       Wholesale of perfume and cosmetics
#> 543                                                                                                        Wholesale of pharmaceutical goods
#> 544                                                                                   Wholesale of furniture, carpets and lighting equipment
#> 545                                                                                                       Wholesale of watches and jewellery
#> 546                                                                                                       Wholesale of other household goods
#> 547                                                                                     Wholesale of information and communication equipment
#> 548                                                                       Wholesale of computers, computer peripheral equipment and software
#> 549                                                                       Wholesale of electronic and telecommunications equipment and parts
#> 550                                                                                     Wholesale of other machinery, equipment and supplies
#> 551                                                                              Wholesale of agricultural machinery, equipment and supplies
#> 552                                                                                                               Wholesale of machine tools
#> 553                                                                        Wholesale of mining, construction and civil engineering machinery
#> 554                                                      Wholesale of machinery for the textile industry and of sewing and knitting machines
#> 555                                                                                                            Wholesale of office furniture
#> 556                                                                                        Wholesale of other office machinery and equipment
#> 557                                                                                               Wholesale of other machinery and equipment
#> 558                                                                                                              Other specialised wholesale
#> 559                                                                        Wholesale of solid, liquid and gaseous fuels and related products
#> 560                                                                                                       Wholesale of metals and metal ores
#> 561                                                                         Wholesale of wood, construction materials and sanitary equipment
#> 562                                                                       Wholesale of hardware, plumbing and heating equipment and supplies
#> 563                                                                                                           Wholesale of chemical products
#> 564                                                                                                 Wholesale of other intermediate products
#> 565                                                                                                             Wholesale of waste and scrap
#> 566                                                                                                          Non-specialised wholesale trade
#> 567                                                                                                          Non-specialised wholesale trade
#> 568                                                                                   Retail trade, except of motor vehicles and motorcycles
#> 569                                                                                                    Retail sale in non-specialised stores
#> 570                                                      Retail sale in non-specialised stores with food, beverages or tobacco predominating
#> 571                                                                                              Other retail sale in non-specialised stores
#> 572                                                                         Retail sale of food, beverages and tobacco in specialised stores
#> 573                                                                                Retail sale of fruit and vegetables in specialised stores
#> 574                                                                              Retail sale of meat and meat products in specialised stores
#> 575                                                                      Retail sale of fish, crustaceans and molluscs in specialised stores
#> 576                                           Retail sale of bread, cakes, flour confectionery and sugar confectionery in specialised stores
#> 577                                                                                           Retail sale of beverages in specialised stores
#> 578                                                                                    Retail sale of tobacco products in specialised stores
#> 579                                                                                          Other retail sale of food in specialised stores
#> 580                                                                                     Retail sale of automotive fuel in specialised stores
#> 581                                                                                     Retail sale of automotive fuel in specialised stores
#> 582                                                             Retail sale of information and communication equipment in specialised stores
#> 583                                                            Retail sale of computers, peripheral units and software in specialised stores
#> 584                                                                        Retail sale of telecommunications equipment in specialised stores
#> 585                                                                           Retail sale of audio and video equipment in specialised stores
#> 586                                                                           Retail sale of other household equipment in specialised stores
#> 587                                                                                            Retail sale of textiles in specialised stores
#> 588                                                                          Retail sale of hardware, paints and glass in specialised stores
#> 589                                                             Retail sale of carpets, rugs, wall and floor coverings in specialised stores
#> 590                                                                     Retail sale of electrical household appliances in specialised stores
#> 591                                          Retail sale of furniture, lighting equipment and other household articles in specialised stores
#> 592                                                                       Retail sale of cultural and recreation goods in specialised stores
#> 593                                                                                               Retail sale of books in specialised stores
#> 594                                                                           Retail sale of newspapers and stationery in specialised stores
#> 595                                                                          Retail sale of music and video recordings in specialised stores
#> 596                                                                                  Retail sale of sporting equipment in specialised stores
#> 597                                                                                      Retail sale of games and toys in specialised stores
#> 598                                                                                         Retail sale of other goods in specialised stores
#> 599                                                                                            Retail sale of clothing in specialised stores
#> 600                                                                          Retail sale of footwear and leather goods in specialised stores
#> 601                                                                                                 Dispensing chemist in specialised stores
#> 602                                                                       Retail sale of medical and orthopaedic goods in specialised stores
#> 603                                                                        Retail sale of cosmetic and toilet articles in specialised stores
#> 604                                       Retail sale of flowers, plants, seeds, fertilisers, pet animals and pet food in specialised stores
#> 605                                                                               Retail sale of watches and jewellery in specialised stores
#> 606                                                                                     Other retail sale of new goods in specialised stores
#> 607                                                                                               Retail sale of second-hand goods in stores
#> 608                                                                                                       Retail sale via stalls and markets
#> 609                                                               Retail sale via stalls and markets of food, beverages and tobacco products
#> 610                                                                    Retail sale via stalls and markets of textiles, clothing and footwear
#> 611                                                                                        Retail sale via stalls and markets of other goods
#> 612                                                                                            Retail trade not in stores, stalls or markets
#> 613                                                                                        Retail sale via mail order houses or via Internet
#> 614                                                                                       Other retail sale not in stores, stalls or markets
#> 615                                                                                               Land transport and transport via pipelines
#> 616                                                                                                     Passenger rail transport, interurban
#> 617                                                                                                     Passenger rail transport, interurban
#> 618                                                                                                                   Freight rail transport
#> 619                                                                                                                   Freight rail transport
#> 620                                                                                                           Other passenger land transport
#> 621                                                                                              Urban and suburban passenger land transport
#> 622                                                                                                                           Taxi operation
#> 623                                                                                                    Other passenger land transport n.e.c.
#> 624                                                                                           Freight transport by road and removal services
#> 625                                                                                                                Freight transport by road
#> 626                                                                                                                         Removal services
#> 627                                                                                                                   Transport via pipeline
#> 628                                                                                                                   Transport via pipeline
#> 629                                                                                                                          Water transport
#> 630                                                                                                Sea and coastal passenger water transport
#> 631                                                                                                Sea and coastal passenger water transport
#> 632                                                                                                  Sea and coastal freight water transport
#> 633                                                                                                  Sea and coastal freight water transport
#> 634                                                                                                         Inland passenger water transport
#> 635                                                                                                         Inland passenger water transport
#> 636                                                                                                           Inland freight water transport
#> 637                                                                                                           Inland freight water transport
#> 638                                                                                                                            Air transport
#> 639                                                                                                                  Passenger air transport
#> 640                                                                                                                  Passenger air transport
#> 641                                                                                                Freight air transport and space transport
#> 642                                                                                                                    Freight air transport
#> 643                                                                                                                          Space transport
#> 644                                                                                    Warehousing and support activities for transportation
#> 645                                                                                                                  Warehousing and storage
#> 646                                                                                                                  Warehousing and storage
#> 647                                                                                                    Support activities for transportation
#> 648                                                                                     Service activities incidental to land transportation
#> 649                                                                                    Service activities incidental to water transportation
#> 650                                                                                      Service activities incidental to air transportation
#> 651                                                                                                                           Cargo handling
#> 652                                                                                                  Other transportation support activities
#> 653                                                                                                            Postal and courier activities
#> 654                                                                                     Postal activities under universal service obligation
#> 655                                                                                     Postal activities under universal service obligation
#> 656                                                                                                      Other postal and courier activities
#> 657                                                                                                      Other postal and courier activities
#> 658                                                                                                                            Accommodation
#> 659                                                                                                         Hotels and similar accommodation
#> 660                                                                                                         Hotels and similar accommodation
#> 661                                                                                               Holiday and other short-stay accommodation
#> 662                                                                                               Holiday and other short-stay accommodation
#> 663                                                                            Camping grounds, recreational vehicle parks and trailer parks
#> 664                                                                            Camping grounds, recreational vehicle parks and trailer parks
#> 665                                                                                                                      Other accommodation
#> 666                                                                                                                      Other accommodation
#> 667                                                                                                     Food and beverage service activities
#> 668                                                                                           Restaurants and mobile food service activities
#> 669                                                                                           Restaurants and mobile food service activities
#> 670                                                                                         Event catering and other food service activities
#> 671                                                                                                                Event catering activities
#> 672                                                                                                            Other food service activities
#> 673                                                                                                              Beverage serving activities
#> 674                                                                                                              Beverage serving activities
#> 675                                                                                                                    Publishing activities
#> 676                                                                         Publishing of books, periodicals and other publishing activities
#> 677                                                                                                                          Book publishing
#> 678                                                                                              Publishing of directories and mailing lists
#> 679                                                                                                                 Publishing of newspapers
#> 680                                                                                                   Publishing of journals and periodicals
#> 681                                                                                                              Other publishing activities
#> 682                                                                                                                      Software publishing
#> 683                                                                                                             Publishing of computer games
#> 684                                                                                                                Other software publishing
#> 685                               Motion picture, video and television programme production, sound recording and music publishing activities
#> 686                                                                                Motion picture, video and television programme activities
#> 687                                                                     Motion picture, video and television programme production activities
#> 688                                                                Motion picture, video and television programme post-production activities
#> 689                                                                   Motion picture, video and television programme distribution activities
#> 690                                                                                                     Motion picture projection activities
#> 691                                                                                          Sound recording and music publishing activities
#> 692                                                                                          Sound recording and music publishing activities
#> 693                                                                                                  Programming and broadcasting activities
#> 694                                                                                                                       Radio broadcasting
#> 695                                                                                                                       Radio broadcasting
#> 696                                                                                       Television programming and broadcasting activities
#> 697                                                                                       Television programming and broadcasting activities
#> 698                                                                                                                       Telecommunications
#> 699                                                                                                      Wired telecommunications activities
#> 700                                                                                                      Wired telecommunications activities
#> 701                                                                                                   Wireless telecommunications activities
#> 702                                                                                                   Wireless telecommunications activities
#> 703                                                                                                  Satellite telecommunications activities
#> 704                                                                                                  Satellite telecommunications activities
#> 705                                                                                                      Other telecommunications activities
#> 706                                                                                                      Other telecommunications activities
#> 707                                                                                 Computer programming, consultancy and related activities
#> 708                                                                                 Computer programming, consultancy and related activities
#> 709                                                                                                          Computer programming activities
#> 710                                                                                                          Computer consultancy activities
#> 711                                                                                                Computer facilities management activities
#> 712                                                                             Other information technology and computer service activities
#> 713                                                                                                           Information service activities
#> 714                                                                             Data processing, hosting and related activities; web portals
#> 715                                                                                          Data processing, hosting and related activities
#> 716                                                                                                                              Web portals
#> 717                                                                                                     Other information service activities
#> 718                                                                                                                   News agency activities
#> 719                                                                                              Other information service activities n.e.c.
#> 720                                                                       Financial service activities, except insurance and pension funding
#> 721                                                                                                                  Monetary intermediation
#> 722                                                                                                                          Central banking
#> 723                                                                                                            Other monetary intermediation
#> 724                                                                                                          Activities of holding companies
#> 725                                                                                                          Activities of holding companies
#> 726                                                                                             Trusts, funds and similar financial entities
#> 727                                                                                             Trusts, funds and similar financial entities
#> 728                                                                 Other financial service activities, except insurance and pension funding
#> 729                                                                                                                        Financial leasing
#> 730                                                                                                                    Other credit granting
#> 731                                                          Other financial service activities, except insurance and pension funding n.e.c.
#> 732                                                            Insurance, reinsurance and pension funding, except compulsory social security
#> 733                                                                                                                                Insurance
#> 734                                                                                                                           Life insurance
#> 735                                                                                                                       Non-life insurance
#> 736                                                                                                                              Reinsurance
#> 737                                                                                                                              Reinsurance
#> 738                                                                                                                          Pension funding
#> 739                                                                                                                          Pension funding
#> 740                                                                      Activities auxiliary to financial services and insurance activities
#> 741                                                         Activities auxiliary to financial services, except insurance and pension funding
#> 742                                                                                                      Administration of financial markets
#> 743                                                                                               Security and commodity contracts brokerage
#> 744                                                   Other activities auxiliary to financial services, except insurance and pension funding
#> 745                                                                                    Activities auxiliary to insurance and pension funding
#> 746                                                                                                               Risk and damage evaluation
#> 747                                                                                               Activities of insurance agents and brokers
#> 748                                                                              Other activities auxiliary to insurance and pension funding
#> 749                                                                                                               Fund management activities
#> 750                                                                                                               Fund management activities
#> 751                                                                                                                   Real estate activities
#> 752                                                                                                    Buying and selling of own real estate
#> 753                                                                                                    Buying and selling of own real estate
#> 754                                                                                       Renting and operating of own or leased real estate
#> 755                                                                                       Renting and operating of own or leased real estate
#> 756                                                                                        Real estate activities on a fee or contract basis
#> 757                                                                                                                     Real estate agencies
#> 758                                                                                     Management of real estate on a fee or contract basis
#> 759                                                                                                          Legal and accounting activities
#> 760                                                                                                                         Legal activities
#> 761                                                                                                                         Legal activities
#> 762                                                                         Accounting, bookkeeping and auditing activities; tax consultancy
#> 763                                                                         Accounting, bookkeeping and auditing activities; tax consultancy
#> 764                                                                            Activities of head offices; management consultancy activities
#> 765                                                                                                               Activities of head offices
#> 766                                                                                                               Activities of head offices
#> 767                                                                                                        Management consultancy activities
#> 768                                                                                            Public relations and communication activities
#> 769                                                                                     Business and other management consultancy activities
#> 770                                                                 Architectural and engineering activities; technical testing and analysis
#> 771                                                               Architectural and engineering activities and related technical consultancy
#> 772                                                                                                                 Architectural activities
#> 773                                                                                 Engineering activities and related technical consultancy
#> 774                                                                                                           Technical testing and analysis
#> 775                                                                                                           Technical testing and analysis
#> 776                                                                                                      Scientific research and development
#> 777                                                                Research and experimental development on natural sciences and engineering
#> 778                                                                                   Research and experimental development on biotechnology
#> 779                                                          Other research and experimental development on natural sciences and engineering
#> 780                                                                  Research and experimental development on social sciences and humanities
#> 781                                                                  Research and experimental development on social sciences and humanities
#> 782                                                                                                          Advertising and market research
#> 783                                                                                                                              Advertising
#> 784                                                                                                                     Advertising agencies
#> 785                                                                                                                     Media representation
#> 786                                                                                               Market research and public opinion polling
#> 787                                                                                               Market research and public opinion polling
#> 788                                                                                  Other professional, scientific and technical activities
#> 789                                                                                                            Specialised design activities
#> 790                                                                                                            Specialised design activities
#> 791                                                                                                                  Photographic activities
#> 792                                                                                                                  Photographic activities
#> 793                                                                                                Translation and interpretation activities
#> 794                                                                                                Translation and interpretation activities
#> 795                                                                           Other professional, scientific and technical activities n.e.c.
#> 796                                                                           Other professional, scientific and technical activities n.e.c.
#> 797                                                                                                                    Veterinary activities
#> 798                                                                                                                    Veterinary activities
#> 799                                                                                                                    Veterinary activities
#> 800                                                                                                            Rental and leasing activities
#> 801                                                                                                    Renting and leasing of motor vehicles
#> 802                                                                                     Renting and leasing of cars and light motor vehicles
#> 803                                                                                                            Renting and leasing of trucks
#> 804                                                                                      Renting and leasing of personal and household goods
#> 805                                                                                     Renting and leasing of recreational and sports goods
#> 806                                                                                                         Renting of video tapes and disks
#> 807                                                                                Renting and leasing of other personal and household goods
#> 808                                                                     Renting and leasing of other machinery, equipment and tangible goods
#> 809                                                                              Renting and leasing of agricultural machinery and equipment
#> 810                                                        Renting and leasing of construction and civil engineering machinery and equipment
#> 811                                                              Renting and leasing of office machinery and equipment (including computers)
#> 812                                                                                         Renting and leasing of water transport equipment
#> 813                                                                                           Renting and leasing of air transport equipment
#> 814                                                              Renting and leasing of other machinery, equipment and tangible goods n.e.c.
#> 815                                                          Leasing of intellectual property and similar products, except copyrighted works
#> 816                                                          Leasing of intellectual property and similar products, except copyrighted works
#> 817                                                                                                                    Employment activities
#> 818                                                                                              Activities of employment placement agencies
#> 819                                                                                              Activities of employment placement agencies
#> 820                                                                                                   Temporary employment agency activities
#> 821                                                                                                   Temporary employment agency activities
#> 822                                                                                                          Other human resources provision
#> 823                                                                                                          Other human resources provision
#> 824                                                                  Travel agency, tour operator reservation service and related activities
#> 825                                                                                               Travel agency and tour operator activities
#> 826                                                                                                                 Travel agency activities
#> 827                                                                                                                 Tour operator activities
#> 828                                                                                         Other reservation service and related activities
#> 829                                                                                         Other reservation service and related activities
#> 830                                                                                                    Security and investigation activities
#> 831                                                                                                              Private security activities
#> 832                                                                                                              Private security activities
#> 833                                                                                                      Security systems service activities
#> 834                                                                                                      Security systems service activities
#> 835                                                                                                                 Investigation activities
#> 836                                                                                                                 Investigation activities
#> 837                                                                                           Services to buildings and landscape activities
#> 838                                                                                                   Combined facilities support activities
#> 839                                                                                                   Combined facilities support activities
#> 840                                                                                                                      Cleaning activities
#> 841                                                                                                            General cleaning of buildings
#> 842                                                                                        Other building and industrial cleaning activities
#> 843                                                                                                                Other cleaning activities
#> 844                                                                                                             Landscape service activities
#> 845                                                                                                             Landscape service activities
#> 846                                                              Office administrative, office support and other business support activities
#> 847                                                                                             Office administrative and support activities
#> 848                                                                                        Combined office administrative service activities
#> 849                                                       Photocopying, document preparation and other specialised office support activities
#> 850                                                                                                               Activities of call centres
#> 851                                                                                                               Activities of call centres
#> 852                                                                                              Organisation of conventions and trade shows
#> 853                                                                                              Organisation of conventions and trade shows
#> 854                                                                                               Business support service activities n.e.c.
#> 855                                                                                     Activities of collection agencies and credit bureaus
#> 856                                                                                                                     Packaging activities
#> 857                                                                                         Other business support service activities n.e.c.
#> 858                                                                            Public administration and defence; compulsory social security
#> 859                                                          Administration of the State and the economic and social policy of the community
#> 860                                                                                                 General public administration activities
#> 861 Regulation of the activities of providing health care, education, cultural services and other social services, excluding social security
#> 862                                                                 Regulation of and contribution to more efficient operation of businesses
#> 863                                                                                        Provision of services to the community as a whole
#> 864                                                                                                                          Foreign affairs
#> 865                                                                                                                       Defence activities
#> 866                                                                                                          Justice and judicial activities
#> 867                                                                                                       Public order and safety activities
#> 868                                                                                                                  Fire service activities
#> 869                                                                                                    Compulsory social security activities
#> 870                                                                                                    Compulsory social security activities
#> 871                                                                                                                                Education
#> 872                                                                                                                    Pre-primary education
#> 873                                                                                                                    Pre-primary education
#> 874                                                                                                                        Primary education
#> 875                                                                                                                        Primary education
#> 876                                                                                                                      Secondary education
#> 877                                                                                                              General secondary education
#> 878                                                                                             Technical and vocational secondary education
#> 879                                                                                                                         Higher education
#> 880                                                                                                    Post-secondary non-tertiary education
#> 881                                                                                                                       Tertiary education
#> 882                                                                                                                          Other education
#> 883                                                                                                          Sports and recreation education
#> 884                                                                                                                       Cultural education
#> 885                                                                                                                Driving school activities
#> 886                                                                                                                   Other education n.e.c.
#> 887                                                                                                           Educational support activities
#> 888                                                                                                           Educational support activities
#> 889                                                                                                                  Human health activities
#> 890                                                                                                                      Hospital activities
#> 891                                                                                                                      Hospital activities
#> 892                                                                                                   Medical and dental practice activities
#> 893                                                                                                      General medical practice activities
#> 894                                                                                                   Specialist medical practice activities
#> 895                                                                                                               Dental practice activities
#> 896                                                                                                            Other human health activities
#> 897                                                                                                            Other human health activities
#> 898                                                                                                              Residential care activities
#> 899                                                                                                      Residential nursing care activities
#> 900                                                                                                      Residential nursing care activities
#> 901                                                    Residential care activities for mental retardation, mental health and substance abuse
#> 902                                                    Residential care activities for mental retardation, mental health and substance abuse
#> 903                                                                                 Residential care activities for the elderly and disabled
#> 904                                                                                 Residential care activities for the elderly and disabled
#> 905                                                                                                        Other residential care activities
#> 906                                                                                                        Other residential care activities
#> 907                                                                                             Social work activities without accommodation
#> 908                                                                Social work activities without accommodation for the elderly and disabled
#> 909                                                                Social work activities without accommodation for the elderly and disabled
#> 910                                                                                       Other social work activities without accommodation
#> 911                                                                                                                Child day-care activities
#> 912                                                                                Other social work activities without accommodation n.e.c.
#> 913                                                                                              Creative, arts and entertainment activities
#> 914                                                                                              Creative, arts and entertainment activities
#> 915                                                                                                                          Performing arts
#> 916                                                                                                    Support activities to performing arts
#> 917                                                                                                                        Artistic creation
#> 918                                                                                                             Operation of arts facilities
#> 919                                                                               Libraries, archives, museums and other cultural activities
#> 920                                                                               Libraries, archives, museums and other cultural activities
#> 921                                                                                                          Library and archives activities
#> 922                                                                                                                       Museums activities
#> 923                                                              Operation of historical sites and buildings and similar visitor attractions
#> 924                                                                          Botanical and zoological gardens and nature reserves activities
#> 925                                                                                                          Gambling and betting activities
#> 926                                                                                                          Gambling and betting activities
#> 927                                                                                                          Gambling and betting activities
#> 928                                                                                Sports activities and amusement and recreation activities
#> 929                                                                                                                        Sports activities
#> 930                                                                                                           Operation of sports facilities
#> 931                                                                                                                Activities of sport clubs
#> 932                                                                                                                       Fitness facilities
#> 933                                                                                                                  Other sports activities
#> 934                                                                                                      Amusement and recreation activities
#> 935                                                                                            Activities of amusement parks and theme parks
#> 936                                                                                                Other amusement and recreation activities
#> 937                                                                                                   Activities of membership organisations
#> 938                                                              Activities of business, employers and professional membership organisations
#> 939                                                                            Activities of business and employers membership organisations
#> 940                                                                                      Activities of professional membership organisations
#> 941                                                                                                               Activities of trade unions
#> 942                                                                                                               Activities of trade unions
#> 943                                                                                             Activities of other membership organisations
#> 944                                                                                                    Activities of religious organisations
#> 945                                                                                                    Activities of political organisations
#> 946                                                                                      Activities of other membership organisations n.e.c.
#> 947                                                                                     Repair of computers and personal and household goods
#> 948                                                                                          Repair of computers and communication equipment
#> 949                                                                                             Repair of computers and peripheral equipment
#> 950                                                                                                        Repair of communication equipment
#> 951                                                                                                   Repair of personal and household goods
#> 952                                                                                                           Repair of consumer electronics
#> 953                                                                             Repair of household appliances and home and garden equipment
#> 954                                                                                                     Repair of footwear and leather goods
#> 955                                                                                                 Repair of furniture and home furnishings
#> 956                                                                                                  Repair of watches, clocks and jewellery
#> 957                                                                                             Repair of other personal and household goods
#> 958                                                                                                        Other personal service activities
#> 959                                                                                                        Other personal service activities
#> 960                                                                                   Washing and (dry-)cleaning of textile and fur products
#> 961                                                                                                  Hairdressing and other beauty treatment
#> 962                                                                                                           Funeral and related activities
#> 963                                                                                                           Physical well-being activities
#> 964                                                                                                 Other personal service activities n.e.c.
#> 965                                                                              Activities of households as employers of domestic personnel
#> 966                                                                              Activities of households as employers of domestic personnel
#> 967                                                                              Activities of households as employers of domestic personnel
#> 968                                              Undifferentiated goods- and services-producing activities of private households for own use
#> 969                                                            Undifferentiated goods-producing activities of private households for own use
#> 970                                                            Undifferentiated goods-producing activities of private households for own use
#> 971                                                          Undifferentiated service-producing activities of private households for own use
#> 972                                                          Undifferentiated service-producing activities of private households for own use
#> 973                                                                                  Activities of extraterritorial organisations and bodies
#> 974                                                                                  Activities of extraterritorial organisations and bodies
#> 975                                                                                  Activities of extraterritorial organisations and bodies
#> 976                                                                                                        AGRICULTURE, FORESTRY AND FISHING
#> 977                                                                                                                     MINING AND QUARRYING
#> 978                                                                                                                            MANUFACTURING
#> 979                                                                                      ELECTRICITY, GAS, STEAM AND AIR CONDITIONING SUPPLY
#> 980                                                                      WATER SUPPLY; SEWERAGE, WASTE MANAGEMENT AND REMEDIATION ACTIVITIES
#> 981                                                                                                                             CONSTRUCTION
#> 982                                                                     WHOLESALE AND RETAIL TRADE; REPAIR OF MOTOR VEHICLES AND MOTORCYCLES
#> 983                                                                                                               TRANSPORTATION AND STORAGE
#> 984                                                                                                ACCOMMODATION AND FOOD SERVICE ACTIVITIES
#> 985                                                                                                            INFORMATION AND COMMUNICATION
#> 986                                                                                                       FINANCIAL AND INSURANCE ACTIVITIES
#> 987                                                                                                                   REAL ESTATE ACTIVITIES
#> 988                                                                                        PROFESSIONAL, SCIENTIFIC AND TECHNICAL ACTIVITIES
#> 989                                                                                            ADMINISTRATIVE AND SUPPORT SERVICE ACTIVITIES
#> 990                                                                            PUBLIC ADMINISTRATION AND DEFENCE; COMPULSORY SOCIAL SECURITY
#> 991                                                                                                                                EDUCATION
#> 992                                                                                                  HUMAN HEALTH AND SOCIAL WORK ACTIVITIES
#> 993                                                                                                       ARTS, ENTERTAINMENT AND RECREATION
#> 994                                                                                                                 OTHER SERVICE ACTIVITIES
#> 995               ACTIVITIES OF HOUSEHOLDS AS EMPLOYERS; UNDIFFERENTIATED GOODS- AND SERVICES-PRODUCING ACTIVITIES OF HOUSEHOLDS FOR OWN USE
#> 996                                                                                  ACTIVITIES OF EXTRATERRITORIAL ORGANISATIONS AND BODIES
#>     Level Parent Include
#> 1       2      0      NA
#> 2       3     01      NA
#> 3       4   01.1      NA
#> 4       4   01.1      NA
#> 5       4   01.1      NA
#> 6       4   01.1      NA
#> 7       4   01.1      NA
#> 8       4   01.1      NA
#> 9       4   01.1      NA
#> 10      3     01      NA
#> 11      4   01.2      NA
#> 12      4   01.2      NA
#> 13      4   01.2      NA
#> 14      4   01.2      NA
#> 15      4   01.2      NA
#> 16      4   01.2      NA
#> 17      4   01.2      NA
#> 18      4   01.2      NA
#> 19      4   01.2      NA
#> 20      3     01      NA
#> 21      4   01.3      NA
#> 22      3     01      NA
#> 23      4   01.4      NA
#> 24      4   01.4      NA
#> 25      4   01.4      NA
#> 26      4   01.4      NA
#> 27      4   01.4      NA
#> 28      4   01.4      NA
#> 29      4   01.4      NA
#> 30      4   01.4      NA
#> 31      3     01      NA
#> 32      4   01.5      NA
#> 33      3     01      NA
#> 34      4   01.6      NA
#> 35      4   01.6      NA
#> 36      4   01.6      NA
#> 37      4   01.6      NA
#> 38      3     01      NA
#> 39      4   01.7      NA
#> 40      2      0      NA
#> 41      3     02      NA
#> 42      4   02.1      NA
#> 43      3     02      NA
#> 44      4   02.2      NA
#> 45      3     02      NA
#> 46      4   02.3      NA
#> 47      3     02      NA
#> 48      4   02.4      NA
#> 49      2      0      NA
#> 50      3     03      NA
#> 51      4   03.1      NA
#> 52      4   03.1      NA
#> 53      3     03      NA
#> 54      4   03.2      NA
#> 55      4   03.2      NA
#> 56      2      0      NA
#> 57      3     05      NA
#> 58      4   05.1      NA
#> 59      3     05      NA
#> 60      4   05.2      NA
#> 61      2      0      NA
#> 62      3     06      NA
#> 63      4   06.1      NA
#> 64      3     06      NA
#> 65      4   06.2      NA
#> 66      2      0      NA
#> 67      3     07      NA
#> 68      4   07.1      NA
#> 69      3     07      NA
#> 70      4   07.2      NA
#> 71      4   07.2      NA
#> 72      2      0      NA
#> 73      3     08      NA
#> 74      4   08.1      NA
#> 75      4   08.1      NA
#> 76      3     08      NA
#> 77      4   08.9      NA
#> 78      4   08.9      NA
#> 79      4   08.9      NA
#> 80      4   08.9      NA
#> 81      2      0      NA
#> 82      3     09      NA
#> 83      4   09.1      NA
#> 84      3     09      NA
#> 85      4   09.9      NA
#> 86      2      1      NA
#> 87      3     10      NA
#> 88      4   10.1      NA
#> 89      4   10.1      NA
#> 90      4   10.1      NA
#> 91      3     10      NA
#> 92      4   10.2      NA
#> 93      3     10      NA
#> 94      4   10.3      NA
#> 95      4   10.3      NA
#> 96      4   10.3      NA
#> 97      3     10      NA
#> 98      4   10.4      NA
#> 99      4   10.4      NA
#> 100     3     10      NA
#> 101     4   10.5      NA
#> 102     4   10.5      NA
#> 103     3     10      NA
#> 104     4   10.6      NA
#> 105     4   10.6      NA
#> 106     3     10      NA
#> 107     4   10.7      NA
#> 108     4   10.7      NA
#> 109     4   10.7      NA
#> 110     3     10      NA
#> 111     4   10.8      NA
#> 112     4   10.8      NA
#> 113     4   10.8      NA
#> 114     4   10.8      NA
#> 115     4   10.8      NA
#> 116     4   10.8      NA
#> 117     4   10.8      NA
#> 118     3     10      NA
#> 119     4   10.9      NA
#> 120     4   10.9      NA
#> 121     2      1      NA
#> 122     3     11      NA
#> 123     4   11.0      NA
#> 124     4   11.0      NA
#> 125     4   11.0      NA
#> 126     4   11.0      NA
#> 127     4   11.0      NA
#> 128     4   11.0      NA
#> 129     4   11.0      NA
#> 130     2      1      NA
#> 131     3     12      NA
#> 132     4   12.0      NA
#> 133     2      1      NA
#> 134     3     13      NA
#> 135     4   13.1      NA
#> 136     3     13      NA
#> 137     4   13.2      NA
#> 138     3     13      NA
#> 139     4   13.3      NA
#> 140     3     13      NA
#> 141     4   13.9      NA
#> 142     4   13.9      NA
#> 143     4   13.9      NA
#> 144     4   13.9      NA
#> 145     4   13.9      NA
#> 146     4   13.9      NA
#> 147     4   13.9      NA
#> 148     2      1      NA
#> 149     3     14      NA
#> 150     4   14.1      NA
#> 151     4   14.1      NA
#> 152     4   14.1      NA
#> 153     4   14.1      NA
#> 154     4   14.1      NA
#> 155     3     14      NA
#> 156     4   14.2      NA
#> 157     3     14      NA
#> 158     4   14.3      NA
#> 159     4   14.3      NA
#> 160     2      1      NA
#> 161     3     15      NA
#> 162     4   15.1      NA
#> 163     4   15.1      NA
#> 164     3     15      NA
#> 165     4   15.2      NA
#> 166     2      1      NA
#> 167     3     16      NA
#> 168     4   16.1      NA
#> 169     3     16      NA
#> 170     4   16.2      NA
#> 171     4   16.2      NA
#> 172     4   16.2      NA
#> 173     4   16.2      NA
#> 174     4   16.2      NA
#> 175     2      1      NA
#> 176     3     17      NA
#> 177     4   17.1      NA
#> 178     4   17.1      NA
#> 179     3     17      NA
#> 180     4   17.2      NA
#> 181     4   17.2      NA
#> 182     4   17.2      NA
#> 183     4   17.2      NA
#> 184     4   17.2      NA
#> 185     2      1      NA
#> 186     3     18      NA
#> 187     4   18.1      NA
#> 188     4   18.1      NA
#> 189     4   18.1      NA
#> 190     4   18.1      NA
#> 191     3     18      NA
#> 192     4   18.2      NA
#> 193     2      1      NA
#> 194     3     19      NA
#> 195     4   19.1      NA
#> 196     3     19      NA
#> 197     4   19.2      NA
#> 198     2      2      NA
#> 199     3     20      NA
#> 200     4   20.1      NA
#> 201     4   20.1      NA
#> 202     4   20.1      NA
#> 203     4   20.1      NA
#> 204     4   20.1      NA
#> 205     4   20.1      NA
#> 206     4   20.1      NA
#> 207     3     20      NA
#> 208     4   20.2      NA
#> 209     3     20      NA
#> 210     4   20.3      NA
#> 211     3     20      NA
#> 212     4   20.4      NA
#> 213     4   20.4      NA
#> 214     3     20      NA
#> 215     4   20.5      NA
#> 216     4   20.5      NA
#> 217     4   20.5      NA
#> 218     4   20.5      NA
#> 219     3     20      NA
#> 220     4   20.6      NA
#> 221     2      2      NA
#> 222     3     21      NA
#> 223     4   21.1      NA
#> 224     3     21      NA
#> 225     4   21.2      NA
#> 226     2      2      NA
#> 227     3     22      NA
#> 228     4   22.1      NA
#> 229     4   22.1      NA
#> 230     3     22      NA
#> 231     4   22.2      NA
#> 232     4   22.2      NA
#> 233     4   22.2      NA
#> 234     4   22.2      NA
#> 235     2      2      NA
#> 236     3     23      NA
#> 237     4   23.1      NA
#> 238     4   23.1      NA
#> 239     4   23.1      NA
#> 240     4   23.1      NA
#> 241     4   23.1      NA
#> 242     3     23      NA
#> 243     4   23.2      NA
#> 244     3     23      NA
#> 245     4   23.3      NA
#> 246     4   23.3      NA
#> 247     3     23      NA
#> 248     4   23.4      NA
#> 249     4   23.4      NA
#> 250     4   23.4      NA
#> 251     4   23.4      NA
#> 252     4   23.4      NA
#> 253     3     23      NA
#> 254     4   23.5      NA
#> 255     4   23.5      NA
#> 256     3     23      NA
#> 257     4   23.6      NA
#> 258     4   23.6      NA
#> 259     4   23.6      NA
#> 260     4   23.6      NA
#> 261     4   23.6      NA
#> 262     4   23.6      NA
#> 263     3     23      NA
#> 264     4   23.7      NA
#> 265     3     23      NA
#> 266     4   23.9      NA
#> 267     4   23.9      NA
#> 268     2      2      NA
#> 269     3     24      NA
#> 270     4   24.1      NA
#> 271     3     24      NA
#> 272     4   24.2      NA
#> 273     3     24      NA
#> 274     4   24.3      NA
#> 275     4   24.3      NA
#> 276     4   24.3      NA
#> 277     4   24.3      NA
#> 278     3     24      NA
#> 279     4   24.4      NA
#> 280     4   24.4      NA
#> 281     4   24.4      NA
#> 282     4   24.4      NA
#> 283     4   24.4      NA
#> 284     4   24.4      NA
#> 285     3     24      NA
#> 286     4   24.5      NA
#> 287     4   24.5      NA
#> 288     4   24.5      NA
#> 289     4   24.5      NA
#> 290     2      2      NA
#> 291     3     25      NA
#> 292     4   25.1      NA
#> 293     4   25.1      NA
#> 294     3     25      NA
#> 295     4   25.2      NA
#> 296     4   25.2      NA
#> 297     3     25      NA
#> 298     4   25.3      NA
#> 299     3     25      NA
#> 300     4   25.4      NA
#> 301     3     25      NA
#> 302     4   25.5      NA
#> 303     3     25      NA
#> 304     4   25.6      NA
#> 305     4   25.6      NA
#> 306     3     25      NA
#> 307     4   25.7      NA
#> 308     4   25.7      NA
#> 309     4   25.7      NA
#> 310     3     25      NA
#> 311     4   25.9      NA
#> 312     4   25.9      NA
#> 313     4   25.9      NA
#> 314     4   25.9      NA
#> 315     4   25.9      NA
#> 316     2      2      NA
#> 317     3     26      NA
#> 318     4   26.1      NA
#> 319     4   26.1      NA
#> 320     3     26      NA
#> 321     4   26.2      NA
#> 322     3     26      NA
#> 323     4   26.3      NA
#> 324     3     26      NA
#> 325     4   26.4      NA
#> 326     3     26      NA
#> 327     4   26.5      NA
#> 328     4   26.5      NA
#> 329     3     26      NA
#> 330     4   26.6      NA
#> 331     3     26      NA
#> 332     4   26.7      NA
#> 333     3     26      NA
#> 334     4   26.8      NA
#> 335     2      2      NA
#> 336     3     27      NA
#> 337     4   27.1      NA
#> 338     4   27.1      NA
#> 339     3     27      NA
#> 340     4   27.2      NA
#> 341     3     27      NA
#> 342     4   27.3      NA
#> 343     4   27.3      NA
#> 344     4   27.3      NA
#> 345     3     27      NA
#> 346     4   27.4      NA
#> 347     3     27      NA
#> 348     4   27.5      NA
#> 349     4   27.5      NA
#> 350     3     27      NA
#> 351     4   27.9      NA
#> 352     2      2      NA
#> 353     3     28      NA
#> 354     4   28.1      NA
#> 355     4   28.1      NA
#> 356     4   28.1      NA
#> 357     4   28.1      NA
#> 358     4   28.1      NA
#> 359     3     28      NA
#> 360     4   28.2      NA
#> 361     4   28.2      NA
#> 362     4   28.2      NA
#> 363     4   28.2      NA
#> 364     4   28.2      NA
#> 365     4   28.2      NA
#> 366     3     28      NA
#> 367     4   28.3      NA
#> 368     3     28      NA
#> 369     4   28.4      NA
#> 370     4   28.4      NA
#> 371     3     28      NA
#> 372     4   28.9      NA
#> 373     4   28.9      NA
#> 374     4   28.9      NA
#> 375     4   28.9      NA
#> 376     4   28.9      NA
#> 377     4   28.9      NA
#> 378     4   28.9      NA
#> 379     2      2      NA
#> 380     3     29      NA
#> 381     4   29.1      NA
#> 382     3     29      NA
#> 383     4   29.2      NA
#> 384     3     29      NA
#> 385     4   29.3      NA
#> 386     4   29.3      NA
#> 387     2      3      NA
#> 388     3     30      NA
#> 389     4   30.1      NA
#> 390     4   30.1      NA
#> 391     3     30      NA
#> 392     4   30.2      NA
#> 393     3     30      NA
#> 394     4   30.3      NA
#> 395     3     30      NA
#> 396     4   30.4      NA
#> 397     3     30      NA
#> 398     4   30.9      NA
#> 399     4   30.9      NA
#> 400     4   30.9      NA
#> 401     2      3      NA
#> 402     3     31      NA
#> 403     4   31.0      NA
#> 404     4   31.0      NA
#> 405     4   31.0      NA
#> 406     4   31.0      NA
#> 407     2      3      NA
#> 408     3     32      NA
#> 409     4   32.1      NA
#> 410     4   32.1      NA
#> 411     4   32.1      NA
#> 412     3     32      NA
#> 413     4   32.2      NA
#> 414     3     32      NA
#> 415     4   32.3      NA
#> 416     3     32      NA
#> 417     4   32.4      NA
#> 418     3     32      NA
#> 419     4   32.5      NA
#> 420     3     32      NA
#> 421     4   32.9      NA
#> 422     4   32.9      NA
#> 423     2      3      NA
#> 424     3     33      NA
#> 425     4   33.1      NA
#> 426     4   33.1      NA
#> 427     4   33.1      NA
#> 428     4   33.1      NA
#> 429     4   33.1      NA
#> 430     4   33.1      NA
#> 431     4   33.1      NA
#> 432     4   33.1      NA
#> 433     3     33      NA
#> 434     4   33.2      NA
#> 435     2      3      NA
#> 436     3     35      NA
#> 437     4   35.1      NA
#> 438     4   35.1      NA
#> 439     4   35.1      NA
#> 440     4   35.1      NA
#> 441     3     35      NA
#> 442     4   35.2      NA
#> 443     4   35.2      NA
#> 444     4   35.2      NA
#> 445     3     35      NA
#> 446     4   35.3      NA
#> 447     2      3      NA
#> 448     3     36      NA
#> 449     4   36.0      NA
#> 450     2      3      NA
#> 451     3     37      NA
#> 452     4   37.0      NA
#> 453     2      3      NA
#> 454     3     38      NA
#> 455     4   38.1      NA
#> 456     4   38.1      NA
#> 457     3     38      NA
#> 458     4   38.2      NA
#> 459     4   38.2      NA
#> 460     3     38      NA
#> 461     4   38.3      NA
#> 462     4   38.3      NA
#> 463     2      3      NA
#> 464     3     39      NA
#> 465     4   39.0      NA
#> 466     2      4      NA
#> 467     3     41      NA
#> 468     4   41.1      NA
#> 469     3     41      NA
#> 470     4   41.2      NA
#> 471     2      4      NA
#> 472     3     42      NA
#> 473     4   42.1      NA
#> 474     4   42.1      NA
#> 475     4   42.1      NA
#> 476     3     42      NA
#> 477     4   42.2      NA
#> 478     4   42.2      NA
#> 479     3     42      NA
#> 480     4   42.9      NA
#> 481     4   42.9      NA
#> 482     2      4      NA
#> 483     3     43      NA
#> 484     4   43.1      NA
#> 485     4   43.1      NA
#> 486     4   43.1      NA
#> 487     3     43      NA
#> 488     4   43.2      NA
#> 489     4   43.2      NA
#> 490     4   43.2      NA
#> 491     3     43      NA
#> 492     4   43.3      NA
#> 493     4   43.3      NA
#> 494     4   43.3      NA
#> 495     4   43.3      NA
#> 496     4   43.3      NA
#> 497     3     43      NA
#> 498     4   43.9      NA
#> 499     4   43.9      NA
#> 500     2      4      NA
#> 501     3     45      NA
#> 502     4   45.1      NA
#> 503     4   45.1      NA
#> 504     3     45      NA
#> 505     4   45.2      NA
#> 506     3     45      NA
#> 507     4   45.3      NA
#> 508     4   45.3      NA
#> 509     3     45      NA
#> 510     4   45.4      NA
#> 511     2      4      NA
#> 512     3     46      NA
#> 513     4   46.1      NA
#> 514     4   46.1      NA
#> 515     4   46.1      NA
#> 516     4   46.1      NA
#> 517     4   46.1      NA
#> 518     4   46.1      NA
#> 519     4   46.1      NA
#> 520     4   46.1      NA
#> 521     4   46.1      NA
#> 522     3     46      NA
#> 523     4   46.2      NA
#> 524     4   46.2      NA
#> 525     4   46.2      NA
#> 526     4   46.2      NA
#> 527     3     46      NA
#> 528     4   46.3      NA
#> 529     4   46.3      NA
#> 530     4   46.3      NA
#> 531     4   46.3      NA
#> 532     4   46.3      NA
#> 533     4   46.3      NA
#> 534     4   46.3      NA
#> 535     4   46.3      NA
#> 536     4   46.3      NA
#> 537     3     46      NA
#> 538     4   46.4      NA
#> 539     4   46.4      NA
#> 540     4   46.4      NA
#> 541     4   46.4      NA
#> 542     4   46.4      NA
#> 543     4   46.4      NA
#> 544     4   46.4      NA
#> 545     4   46.4      NA
#> 546     4   46.4      NA
#> 547     3     46      NA
#> 548     4   46.5      NA
#> 549     4   46.5      NA
#> 550     3     46      NA
#> 551     4   46.6      NA
#> 552     4   46.6      NA
#> 553     4   46.6      NA
#> 554     4   46.6      NA
#> 555     4   46.6      NA
#> 556     4   46.6      NA
#> 557     4   46.6      NA
#> 558     3     46      NA
#> 559     4   46.7      NA
#> 560     4   46.7      NA
#> 561     4   46.7      NA
#> 562     4   46.7      NA
#> 563     4   46.7      NA
#> 564     4   46.7      NA
#> 565     4   46.7      NA
#> 566     3     46      NA
#> 567     4   46.9      NA
#> 568     2      4      NA
#> 569     3     47      NA
#> 570     4   47.1      NA
#> 571     4   47.1      NA
#> 572     3     47      NA
#> 573     4   47.2      NA
#> 574     4   47.2      NA
#> 575     4   47.2      NA
#> 576     4   47.2      NA
#> 577     4   47.2      NA
#> 578     4   47.2      NA
#> 579     4   47.2      NA
#> 580     3     47      NA
#> 581     4   47.3      NA
#> 582     3     47      NA
#> 583     4   47.4      NA
#> 584     4   47.4      NA
#> 585     4   47.4      NA
#> 586     3     47      NA
#> 587     4   47.5      NA
#> 588     4   47.5      NA
#> 589     4   47.5      NA
#> 590     4   47.5      NA
#> 591     4   47.5      NA
#> 592     3     47      NA
#> 593     4   47.6      NA
#> 594     4   47.6      NA
#> 595     4   47.6      NA
#> 596     4   47.6      NA
#> 597     4   47.6      NA
#> 598     3     47      NA
#> 599     4   47.7      NA
#> 600     4   47.7      NA
#> 601     4   47.7      NA
#> 602     4   47.7      NA
#> 603     4   47.7      NA
#> 604     4   47.7      NA
#> 605     4   47.7      NA
#> 606     4   47.7      NA
#> 607     4   47.7      NA
#> 608     3     47      NA
#> 609     4   47.8      NA
#> 610     4   47.8      NA
#> 611     4   47.8      NA
#> 612     3     47      NA
#> 613     4   47.9      NA
#> 614     4   47.9      NA
#> 615     2      4      NA
#> 616     3     49      NA
#> 617     4   49.1      NA
#> 618     3     49      NA
#> 619     4   49.2      NA
#> 620     3     49      NA
#> 621     4   49.3      NA
#> 622     4   49.3      NA
#> 623     4   49.3      NA
#> 624     3     49      NA
#> 625     4   49.4      NA
#> 626     4   49.4      NA
#> 627     3     49      NA
#> 628     4   49.5      NA
#> 629     2      5      NA
#> 630     3     50      NA
#> 631     4   50.1      NA
#> 632     3     50      NA
#> 633     4   50.2      NA
#> 634     3     50      NA
#> 635     4   50.3      NA
#> 636     3     50      NA
#> 637     4   50.4      NA
#> 638     2      5      NA
#> 639     3     51      NA
#> 640     4   51.1      NA
#> 641     3     51      NA
#> 642     4   51.2      NA
#> 643     4   51.2      NA
#> 644     2      5      NA
#> 645     3     52      NA
#> 646     4   52.1      NA
#> 647     3     52      NA
#> 648     4   52.2      NA
#> 649     4   52.2      NA
#> 650     4   52.2      NA
#> 651     4   52.2      NA
#> 652     4   52.2      NA
#> 653     2      5      NA
#> 654     3     53      NA
#> 655     4   53.1      NA
#> 656     3     53      NA
#> 657     4   53.2      NA
#> 658     2      5      NA
#> 659     3     55      NA
#> 660     4   55.1      NA
#> 661     3     55      NA
#> 662     4   55.2      NA
#> 663     3     55      NA
#> 664     4   55.3      NA
#> 665     3     55      NA
#> 666     4   55.9      NA
#> 667     2      5      NA
#> 668     3     56      NA
#> 669     4   56.1      NA
#> 670     3     56      NA
#> 671     4   56.2      NA
#> 672     4   56.2      NA
#> 673     3     56      NA
#> 674     4   56.3      NA
#> 675     2      5      NA
#> 676     3     58      NA
#> 677     4   58.1      NA
#> 678     4   58.1      NA
#> 679     4   58.1      NA
#> 680     4   58.1      NA
#> 681     4   58.1      NA
#> 682     3     58      NA
#> 683     4   58.2      NA
#> 684     4   58.2      NA
#> 685     2      5      NA
#> 686     3     59      NA
#> 687     4   59.1      NA
#> 688     4   59.1      NA
#> 689     4   59.1      NA
#> 690     4   59.1      NA
#> 691     3     59      NA
#> 692     4   59.2      NA
#> 693     2      6      NA
#> 694     3     60      NA
#> 695     4   60.1      NA
#> 696     3     60      NA
#> 697     4   60.2      NA
#> 698     2      6      NA
#> 699     3     61      NA
#> 700     4   61.1      NA
#> 701     3     61      NA
#> 702     4   61.2      NA
#> 703     3     61      NA
#> 704     4   61.3      NA
#> 705     3     61      NA
#> 706     4   61.9      NA
#> 707     2      6      NA
#> 708     3     62      NA
#> 709     4   62.0      NA
#> 710     4   62.0      NA
#> 711     4   62.0      NA
#> 712     4   62.0      NA
#> 713     2      6      NA
#> 714     3     63      NA
#> 715     4   63.1      NA
#> 716     4   63.1      NA
#> 717     3     63      NA
#> 718     4   63.9      NA
#> 719     4   63.9      NA
#> 720     2      6      NA
#> 721     3     64      NA
#> 722     4   64.1      NA
#> 723     4   64.1      NA
#> 724     3     64      NA
#> 725     4   64.2      NA
#> 726     3     64      NA
#> 727     4   64.3      NA
#> 728     3     64      NA
#> 729     4   64.9      NA
#> 730     4   64.9      NA
#> 731     4   64.9      NA
#> 732     2      6      NA
#> 733     3     65      NA
#> 734     4   65.1      NA
#> 735     4   65.1      NA
#> 736     3     65      NA
#> 737     4   65.2      NA
#> 738     3     65      NA
#> 739     4   65.3      NA
#> 740     2      6      NA
#> 741     3     66      NA
#> 742     4   66.1      NA
#> 743     4   66.1      NA
#> 744     4   66.1      NA
#> 745     3     66      NA
#> 746     4   66.2      NA
#> 747     4   66.2      NA
#> 748     4   66.2      NA
#> 749     3     66      NA
#> 750     4   66.3      NA
#> 751     2      6      NA
#> 752     3     68      NA
#> 753     4   68.1      NA
#> 754     3     68      NA
#> 755     4   68.2      NA
#> 756     3     68      NA
#> 757     4   68.3      NA
#> 758     4   68.3      NA
#> 759     2      6      NA
#> 760     3     69      NA
#> 761     4   69.1      NA
#> 762     3     69      NA
#> 763     4   69.2      NA
#> 764     2      7      NA
#> 765     3     70      NA
#> 766     4   70.1      NA
#> 767     3     70      NA
#> 768     4   70.2      NA
#> 769     4   70.2      NA
#> 770     2      7      NA
#> 771     3     71      NA
#> 772     4   71.1      NA
#> 773     4   71.1      NA
#> 774     3     71      NA
#> 775     4   71.2      NA
#> 776     2      7      NA
#> 777     3     72      NA
#> 778     4   72.1      NA
#> 779     4   72.1      NA
#> 780     3     72      NA
#> 781     4   72.2      NA
#> 782     2      7      NA
#> 783     3     73      NA
#> 784     4   73.1      NA
#> 785     4   73.1      NA
#> 786     3     73      NA
#> 787     4   73.2      NA
#> 788     2      7      NA
#> 789     3     74      NA
#> 790     4   74.1      NA
#> 791     3     74      NA
#> 792     4   74.2      NA
#> 793     3     74      NA
#> 794     4   74.3      NA
#> 795     3     74      NA
#> 796     4   74.9      NA
#> 797     2      7      NA
#> 798     3     75      NA
#> 799     4   75.0      NA
#> 800     2      7      NA
#> 801     3     77      NA
#> 802     4   77.1      NA
#> 803     4   77.1      NA
#> 804     3     77      NA
#> 805     4   77.2      NA
#> 806     4   77.2      NA
#> 807     4   77.2      NA
#> 808     3     77      NA
#> 809     4   77.3      NA
#> 810     4   77.3      NA
#> 811     4   77.3      NA
#> 812     4   77.3      NA
#> 813     4   77.3      NA
#> 814     4   77.3      NA
#> 815     3     77      NA
#> 816     4   77.4      NA
#> 817     2      7      NA
#> 818     3     78      NA
#> 819     4   78.1      NA
#> 820     3     78      NA
#> 821     4   78.2      NA
#> 822     3     78      NA
#> 823     4   78.3      NA
#> 824     2      7      NA
#> 825     3     79      NA
#> 826     4   79.1      NA
#> 827     4   79.1      NA
#> 828     3     79      NA
#> 829     4   79.9      NA
#> 830     2      8      NA
#> 831     3     80      NA
#> 832     4   80.1      NA
#> 833     3     80      NA
#> 834     4   80.2      NA
#> 835     3     80      NA
#> 836     4   80.3      NA
#> 837     2      8      NA
#> 838     3     81      NA
#> 839     4   81.1      NA
#> 840     3     81      NA
#> 841     4   81.2      NA
#> 842     4   81.2      NA
#> 843     4   81.2      NA
#> 844     3     81      NA
#> 845     4   81.3      NA
#> 846     2      8      NA
#> 847     3     82      NA
#> 848     4   82.1      NA
#> 849     4   82.1      NA
#> 850     3     82      NA
#> 851     4   82.2      NA
#> 852     3     82      NA
#> 853     4   82.3      NA
#> 854     3     82      NA
#> 855     4   82.9      NA
#> 856     4   82.9      NA
#> 857     4   82.9      NA
#> 858     2      8      NA
#> 859     3     84      NA
#> 860     4   84.1      NA
#> 861     4   84.1      NA
#> 862     4   84.1      NA
#> 863     3     84      NA
#> 864     4   84.2      NA
#> 865     4   84.2      NA
#> 866     4   84.2      NA
#> 867     4   84.2      NA
#> 868     4   84.2      NA
#> 869     3     84      NA
#> 870     4   84.3      NA
#> 871     2      8      NA
#> 872     3     85      NA
#> 873     4   85.1      NA
#> 874     3     85      NA
#> 875     4   85.2      NA
#> 876     3     85      NA
#> 877     4   85.3      NA
#> 878     4   85.3      NA
#> 879     3     85      NA
#> 880     4   85.4      NA
#> 881     4   85.4      NA
#> 882     3     85      NA
#> 883     4   85.5      NA
#> 884     4   85.5      NA
#> 885     4   85.5      NA
#> 886     4   85.5      NA
#> 887     3     85      NA
#> 888     4   85.6      NA
#> 889     2      8      NA
#> 890     3     86      NA
#> 891     4   86.1      NA
#> 892     3     86      NA
#> 893     4   86.2      NA
#> 894     4   86.2      NA
#> 895     4   86.2      NA
#> 896     3     86      NA
#> 897     4   86.9      NA
#> 898     2      8      NA
#> 899     3     87      NA
#> 900     4   87.1      NA
#> 901     3     87      NA
#> 902     4   87.2      NA
#> 903     3     87      NA
#> 904     4   87.3      NA
#> 905     3     87      NA
#> 906     4   87.9      NA
#> 907     2      8      NA
#> 908     3     88      NA
#> 909     4   88.1      NA
#> 910     3     88      NA
#> 911     4   88.9      NA
#> 912     4   88.9      NA
#> 913     2      9      NA
#> 914     3     90      NA
#> 915     4   90.0      NA
#> 916     4   90.0      NA
#> 917     4   90.0      NA
#> 918     4   90.0      NA
#> 919     2      9      NA
#> 920     3     91      NA
#> 921     4   91.0      NA
#> 922     4   91.0      NA
#> 923     4   91.0      NA
#> 924     4   91.0      NA
#> 925     2      9      NA
#> 926     3     92      NA
#> 927     4   92.0      NA
#> 928     2      9      NA
#> 929     3     93      NA
#> 930     4   93.1      NA
#> 931     4   93.1      NA
#> 932     4   93.1      NA
#> 933     4   93.1      NA
#> 934     3     93      NA
#> 935     4   93.2      NA
#> 936     4   93.2      NA
#> 937     2      9      NA
#> 938     3     94      NA
#> 939     4   94.1      NA
#> 940     4   94.1      NA
#> 941     3     94      NA
#> 942     4   94.2      NA
#> 943     3     94      NA
#> 944     4   94.9      NA
#> 945     4   94.9      NA
#> 946     4   94.9      NA
#> 947     2      9      NA
#> 948     3     95      NA
#> 949     4   95.1      NA
#> 950     4   95.1      NA
#> 951     3     95      NA
#> 952     4   95.2      NA
#> 953     4   95.2      NA
#> 954     4   95.2      NA
#> 955     4   95.2      NA
#> 956     4   95.2      NA
#> 957     4   95.2      NA
#> 958     2      9      NA
#> 959     3     96      NA
#> 960     4   96.0      NA
#> 961     4   96.0      NA
#> 962     4   96.0      NA
#> 963     4   96.0      NA
#> 964     4   96.0      NA
#> 965     2      9      NA
#> 966     3     97      NA
#> 967     4   97.0      NA
#> 968     2      9      NA
#> 969     3     98      NA
#> 970     4   98.1      NA
#> 971     3     98      NA
#> 972     4   98.2      NA
#> 973     2      9      NA
#> 974     3     99      NA
#> 975     4   99.0      NA
#> 976     1   <NA>      NA
#> 977     1   <NA>      NA
#> 978     1   <NA>      NA
#> 979     1   <NA>      NA
#> 980     1   <NA>      NA
#> 981     1   <NA>      NA
#> 982     1   <NA>      NA
#> 983     1   <NA>      NA
#> 984     1   <NA>      NA
#> 985     1   <NA>      NA
#> 986     1   <NA>      NA
#> 987     1   <NA>      NA
#> 988     1   <NA>      NA
#> 989     1   <NA>      NA
#> 990     1   <NA>      NA
#> 991     1   <NA>      NA
#> 992     1   <NA>      NA
#> 993     1   <NA>      NA
#> 994     1   <NA>      NA
#> 995     1   <NA>      NA
#> 996     1   <NA>      NA
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Include_Also
#> 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This division also includes service activities incidental to agriculture, as well as hunting, trapping and related activities.
#> 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Also included are post-harvest crop activities, aimed at preparing agricultural products for the primary market.
#> 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - provision of agricultural machinery with operators and crew
#> 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - activities of farriers
#> 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - land-based catching of sea mammals such as walrus and seal
#> 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 49                                                                                                                                                                                                                                                                                                                                                                Also included are activities that are normally integrated in the process of production for own account (e.g. seeding oysters for pearl production). Service activities incidental to marine or freshwater fishery or aquaculture are included in the related fishing or aquaculture activities.
#> 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 51                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - activities of vessels engaged both in marine fishing and in processing and preserving of fish - gathering of other marine organisms and materials: natural pearls, sponges, coral and algae
#> 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - gathering of freshwater materials
#> 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In addition, "aquaculture" also encompasses individual, corporate or state ownership of the individual organisms throughout the rearing or culture stage, up to and including harvesting.
#> 54                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - aquaculture activities in brackish waters - aquaculture activities in salt water filled tanks and reservoirs - operation of fish hatcheries (marine) - operation of marine worm farms
#> 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - recovery of hard coal from culm banks
#> 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 63                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - extraction of bituminous or oil shale and tar sand - production of crude petroleum from bituminous shale and sand - processes to obtain crude oils: decantation, desalting, dehydration, stabilisation etc.
#> 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - mining of hydrocarbon liquids, obtained through liquefaction or pyrolysis
#> 66                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division also includes: - ore dressing and beneficiating operations, such as crushing, grinding, washing, drying, sintering, calcining or leaching ore, gravity separation or flotation operations
#> 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - guano mining
#> 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - oil and gas field fire fighting services
#> 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 88                                                                                                                                                                                                                                                                                                                                                This class also includes: - slaughtering and processing of whales on land or on specialised vessels - production of hides and skins originating from slaughterhouses, including fellmongery - rendering of lard and other edible fats of animal origin - processing of animal offal - production of pulled wool
#> 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - production of feathers and down
#> 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class also includes: - activities of vessels engaged only in the processing and preserving of fish - processing of seaweed
#> 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - industrial peeling of potatoes
#> 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - production of concentrates from fresh fruits and vegetables
#> 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - manufacture of perishable prepared foods of fruit and vegetables, such as:   • salads; mixed salads, packaged   • peeled or cut vegetables   • tofu (bean curd)
#> 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 98                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - manufacture of non-edible animal oils and fats - extraction of fish and marine mammal oils - production of cotton linters, oilcakes and other residual products of oil production
#> 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Also included in this group are the wet milling of corn and vegetables and the manufacture of starch and starch products.
#> 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - manufacture of herb infusions (mint, vervain, chamomile etc.)
#> 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - processing of salt into food-grade salt, e.g. iodised salt
#> 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - manufacture of local and national dishes
#> 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 117                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - manufacture of yeast - manufacture of extracts and juices of meat, fish, crustaceans or molluscs - manufacture of non-dairy milk and cheese substitutes - manufacture of egg products, egg albumin - manufacture of artificial concentrates
#> 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - treatment of slaughter waste to produce animal feeds
#> 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - treatment of slaughter waste to produce animal feeds
#> 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - blending, purification and bottling of wine - manufacture of low or non-alcoholic wine
#> 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - manufacture of mead and mixed beverages containing fruit wines
#> 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - manufacture of low alcohol or non-alcoholic beer
#> 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - stemming and redrying of tobacco
#> 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - manufacture of paper yarn
#> 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 137                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - manufacture of woven pile or chenille fabrics, terry towelling, gauze etc. - manufacture of woven fabrics of glass fibres - manufacture of woven carbon and aramid threads - manufacture of imitation fur by weaving
#> 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - bleaching of jeans - pleating and similar work on textiles - waterproofing, coating, rubberising, or impregnating purchased garments
#> 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - manufacture of imitation fur by knitting
#> 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - manufacture of the textile part of electric blankets - manufacture of hand-woven tapestries
#> 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - manufacture of needle-loom felt floor coverings
#> 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Division 14 also includes the fur industry (fur skins and wearing apparel).
#> 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - custom tailoring - manufacture of parts of the products listed
#> 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - manufacture of headgear of fur skins - manufacture of footwear of textile material without applied soles - manufacture of parts of the products listed
#> 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 160                                                                                                                                                                                                                                                                                    It also includes the manufacture of similar products from other materials (imitation leathers or leather substitutes), such as rubber footwear, textile luggage etc. The products made from leather substitutes are included here, since they are made in ways similar to those in which leather products are made (e.g. luggage) and are often produced in the same unit.
#> 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - drying of wood - impregnation or chemical treatment of wood with preservatives or other materials
#> 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 178                                                                                                                                                       This class also includes: - further processing of paper and paperboard:   • coating, covering and impregnation of paper and paperboard   • manufacture of crêped or crinkled paper   • manufacture of laminates and foils, if laminated with paper or paperboard - manufacture of handmade paper - manufacture of newsprint and other printing or writing paper - manufacture of cellulose wadding and webs of cellulose fibres - manufacture of carbon paper or stencil paper in rolls or large sheets
#> 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This division also includes the reproduction of recorded media, such as compact discs, video recordings, software on discs or tapes, records etc.
#> 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class also includes: - printing of other periodicals, appearing at least four times a week
#> 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - printing on labels or tags (lithographic, gravure printing, flexographic printing, other)
#> 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 193                                                                                                                                                                                                                                                                                                                                                                                                                                                   This division also includes the manufacture for own account of characteristic products (e.g. coke, butane, propane, petrol, kerosene, fuel oil etc.) as well as processing services (e.g. custom refining).
#> 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - manufacture of peat briquettes - manufacture of hard-coal and lignite fuel briquettes
#> 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - manufacture of products of a kind used as fluorescent brightening agents or as luminophores
#> 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - enrichment of uranium and thorium ores
#> 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - manufacture of potting soil with peat as main constituent - manufacture of potting soil mixtures of natural soil, sand, clays and minerals
#> 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - manufacture of cellulose and its chemical derivatives
#> 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - manufacture of matches
#> 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - manufacture of writing and drawing ink
#> 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This also includes the manufacture of medicinal chemical and botanical products.
#> 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - manufacture of chemically pure sugars - processing of glands and manufacture of extracts of glands etc.
#> 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 225                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class also includes: - manufacture of medical impregnated wadding, gauze, bandages, dressings etc. - preparation of botanical products (grinding, grading, milling) for pharmaceutical use
#> 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 229                                                                                                                                                                                                                                                                           This class also includes: - manufacture of rubber repair materials - manufacture of textile fabric impregnated, coated, covered or laminated with rubber, where rubber is the chief constituent - manufacture of rubber waterbed mattresses - manufacture of rubber bathing caps and aprons - manufacture of rubber wet suits and diving suits - manufacture of rubber sex articles
#> 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The manufacture of shaped and finished stone and other mineral products is also included in this division.
#> 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - manufacture of refractory articles containing magnesite, dolomite or chromite
#> 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - manufacture of calcined dolomite
#> 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 268                                                                                                                                                                                                                                  This division also includes the manufacture of metal alloys and super-alloys by introducing other chemical elements to pure metals. The output of smelting and refining, usually in ingot form, is used in rolling, drawing and extruding operations to make products such as plate, sheet, strip, bars, rods, wire or tubes, pipes and hollow profiles, and in molten form to make castings and other basic metal products.
#> 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - manufacture of wire of these metals by drawing - manufacture of precious metal foil laminates
#> 280                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - manufacture of wire of these metals by drawing - production of aluminium oxide (alumina) - production of aluminium wrapping foil - manufacture of aluminium foil laminates made from aluminium foil as primary component
#> 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - manufacture of wire of these metals by drawing - production of tin foil
#> 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - manufacture of wire of these metals by drawing
#> 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - manufacture of wire of these metals by drawing
#> 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The manufacture of weapons and ammunition is also included in this division.
#> 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 298                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - pipe system construction comprising further processing of tubes generally to make pressure pipes or pipe systems together with the associated design and construction work
#> 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class also includes: - manufacture of hunting, sporting or protective firearms and ammunition - manufacture of explosive devices such as bombs, mines and torpedoes
#> 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 316                                                                                                                                                                                                                                                                                                                                                                                          The division also contains the manufacture of consumer electronics, measuring, testing and navigating equipment, irradiation, electromedical and electrotherapeutic equipment, optical instruments and equipment, and the manufacture of magnetic and optical media.
#> 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - manufacture of printer cables, monitor cables, USB cables, connectors etc.
#> 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 321                                                                                                                                                                                                                                                                                                                                                           This class also includes: - manufacture of computer terminals, like automatic teller machines (ATM's), point-of-sale (POS) terminals, not mechanically operated - manufacture of multi-function office equipment performing two or more of following functions: printing, scanning, copying, faxing
#> 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class also includes: - manufacture of food and milk irradiation equipment
#> 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Also included is the manufacture of electrical lighting, signalling equipment and electric household appliances.
#> 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This group also includes the insulating of wire and the manufacture of fibre optic cables.
#> 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - manufacture of non-electrical lighting equipment
#> 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 352                                                                                                                                                                                                                                                                                                                                                                                                  This division also includes the manufacture of other special-purpose machinery, not covered elsewhere in the classification, whether or not used in a manufacturing process, such as fairground amusement equipment, automatic bowling alley equipment, etc.
#> 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - manufacture of hand pumps
#> 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - manufacture of mechanical stokers, grates, ash dischargers etc.
#> 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - manufacture of parts and accessories for the machine tools listed
#> 371                                                                                                                                                                                                                                                                                                                                                                     While most of these are used in other manufacturing processes, such as food manufacturing or textile manufacturing, this group also includes the manufacture of machinery specific for other (non-manufacturing industries), such as aircraft launching gear or amusement park equipment.
#> 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - factory rebuilding of motor vehicle engines
#> 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 389                                                                                                                                                                                                                                  This class also includes: - building of hovercraft (except recreation-type hovercraft) - construction of drilling platforms, floating or submersible - construction of floating structures:   • floating docks, pontoons, coffer-dams, floating landing stages, buoys, floating tanks, barges, lighters, floating cranes, non-recreational inflatable rafts etc. - manufacture of sections for ships and floating structures
#> 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 392                                                                                                                                                                                                                                                                                                                                                  This class also includes: - manufacture of mining locomotives and mining rail cars - manufacture of mechanical and electromechanical signalling, safety and traffic control equipment for railways, tramways, inland waterways, roads, parking facilities, airfields etc. - manufacture of railway car seats
#> 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - overhaul and conversion of aircraft or aircraft engines - manufacture of aircraft seats
#> 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - decorative restaurant carts, such as a desert cart, food wagons
#> 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - finishing such as upholstery of chairs and seats - finishing of furniture such as spraying, painting, French polishing and upholstering
#> 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - engraving of personal precious and non-precious metal products
#> 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - manufacture of whistles, call horns and other mouth-blown sound signalling instruments
#> 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 423                                                                                                                                                                                                                                                                                                                         Also included in this division is the specialised installation of machinery. However, the installation of equipment that forms an integral part of buildings or similar structures, such as installation of electrical wiring, installation of escalators or installation of air-conditioning systems, is classified as construction.
#> 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The operation of irrigation canals is also included; however the provision of irrigation services through sprinklers, and similar agricultural support services, is not included.
#> 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This also includes local hauling of waste materials and the operation of materials recovery facilities (i.e. those that sort recoverable materials from a waste stream).
#> 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 455                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - collection of construction and demolition waste - collection and removal of debris such as brush and rubble - collection of waste output of textile mills - operation of waste transfer facilities for non-hazardous waste
#> 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 462                                                                                                                                                                                                                                                                                                                        Also included is the recovery of materials from waste streams in the form of (1) separating and sorting recoverable materials from non-hazardous waste streams (i.e. garbage) or (2) the separating and sorting of commingled recoverable materials, such as paper, plastics, used beverage cans and metals, into distinct categories.
#> 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - remodelling or renovating existing residential structures
#> 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class also includes: - water well drilling
#> 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - land subdivision with land improvement (e.g. adding of roads, utility infrastructure etc.)
#> 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Also included are building finishing and building completion activities.
#> 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 485                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - site preparation for mining:   • overburden removal and other development and preparation of mineral properties and sites, except oil and gas sites - building site drainage - drainage of agricultural or forestry land
#> 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - connecting of electric appliances and household equipment, including baseboard heating
#> 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This division also includes activities such as washing, polishing of vehicles etc.
#> 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - wholesale and retail sale of off-road motor vehicles (with a weight not exceeding 3,5 tons)
#> 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - wholesale and retail sale of off-road motor vehicles (with a weight exceeding 3,5 tons)
#> 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This group also includes: - activities of wholesale auctioneering houses, including Internet wholesale auctions
#> 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - buying of wine in bulk and bottling without transformation
#> 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - wholesale of feed for pet animals
#> 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class also includes: - lawn mowers however operated
#> 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - wholesale of computer-controlled machine tools
#> 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - wholesale of computer-controlled machinery for the textile industry and of computer-controlled sewing and knitting machines
#> 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - wholesale of measuring instruments and equipment
#> 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - dismantling of automobiles, computers, televisions and other equipment to obtain and re-sell usable parts
#> 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 568                                                                                                                       This division also includes units engaged primarily in selling to the general public, from displayed merchandise, products such as personal computers, stationery, paint or timber, although these products may not be for personal or household use. Handling that is customary in trade does not affect the basic character of the merchandise and may include, for example, sorting, separating, mixing and packaging.  This division also includes the retail sale by commission agents and activities of retail auctioning houses.
#> 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - retail sale of lubricating products and cooling products for motor vehicles
#> 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class also includes: - retail sale of lawnmowers, however operated - retail sale of saunas
#> 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - retail sale of office supplies such as pens, pencils, paper etc.
#> 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - retail sale of blank tapes and discs
#> 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also included is the retail sale of used goods in specialised stores.
#> 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - direct sale via television, radio and telephone - Internet retail auctions
#> 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - town-to-airport or town-to-station lines - operation of funicular railways, aerial cableways etc. if part of urban or suburban transit systems
#> 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - other rental of private cars with driver
#> 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - operation of school buses and buses for transport of employees - passenger transport by man- or animal-drawn vehicles
#> 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes: - rental of trucks with driver - freight transport by man or animal-drawn vehicles
#> 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes: - operation of pump stations
#> 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Also included is the transport of passengers on great lakes etc. when similar types of vessels are used.
#> 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - rental of pleasure boats with crew for sea and coastal water transport (e.g. for fishing cruises)
#> 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also included is the transport of freight on great lakes etc. when similar types of vessels are used.
#> 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - rental of vessels with crew for sea and coastal freight water transport
#> 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - rental of pleasure boats with crew for inland water transport
#> 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class also includes: - rental of vessels with crew for inland freight water transport
#> 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 640                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - rental of air transport equipment with operator for the purpose of passenger transportation - general aviation activities, such as:   • transport of passengers by aero clubs for instruction or pleasure
#> 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - rental of air transport equipment with operator for the purpose of freight transportation
#> 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - storage of goods in foreign trade zones - blast freezing
#> 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - liquefaction of gas for transportation purposes
#> 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - fire fighting and fire prevention services at airports
#> 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Local delivery and messenger services are also included.
#> 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - home delivery services
#> 658                                                                                                                                                                                                                                                                                                                                                                                                               Also included is the provision of longer term accommodation for students, workers and similar individuals. Some units may provide only accommodation while others provide a combination of accommodation, meals and/or recreational facilities.
#> 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class also includes accommodation provided by: - protective shelters or plain bivouac facilities for placing tents and/or sleeping bags
#> 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - restaurant and bar activities connected to transportation, when carried out by separate units
#> 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 685                                                                                                                                                                                                                                                                                                                                                                                                      This division also includes the sound recording activities, i.e. production of original sound master recordings, releasing, promoting and distributing them, publishing of music as well as sound recording service activities in a studio or elsewhere.
#> 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Buying and selling of motion picture or any other film production distribution rights is also included.
#> 687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - activities of stock footage film libraries etc.
#> 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - acquiring film, video tape and DVD distribution rights
#> 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 692 This class also includes sound recording service activities in a studio or elsewhere, including the production of taped ( i.e. non-live) radio programming.  This class also includes the activities of music publishing, i.e. activities of acquiring and registering copyrights for musical compositions, promoting, authorising and using these compositions in recordings, radio, television, motion pictures, live performances, print and other media. Units engaged in these activities may own the copyright or act as administrator of the music copyrights on behalf of the copyright owners. Publishing of music and sheet books is included here.
#> 693                                                                                                                                                                                                                                                                                                                                                                                 This division also includes the production of programs that are typically narrowcast in nature (limited format, such as news, sports, education, and youth-oriented programming) on a subscription or fee basis, to a third party, for subsequent broadcasting to the public.
#> 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 695                                                                                                                                                                                                                                                                                                                             This class also includes: - activities of radio networks, i.e. assembling and transmitting aural programming to the affiliates or subscribers via over-the-air broadcasts, cable or satellite - radio broadcasting activities over the Internet (Internet radio stations)  - data broadcasting integrated with radio broadcasting
#> 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes data broadcasting integrated with television broadcasting.
#> 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 700                                                                                                                                                                                                                                                                                                                                                                                This class also includes: - purchasing access and network capacity from owners and operators of networks and providing telecommunications services using this capacity to businesses and households - provision of Internet access by the operator of the wired infrastructure
#> 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 702                                                                                                                                                                                                                                                                                                                                                 This class also includes: - purchasing access and network capacity from owners and operators of networks and providing wireless telecommunications services (except satellite) using this capacity to businesses and households - provision of Internet access by the operator of the wireless infrastructure
#> 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class also includes: - provision of Internet access by the operator of the satellite infrastructure
#> 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class also includes: - postal giro and postal savings bank activities - credit granting for house purchase by specialised deposit-taking institutions - money order activities
#> 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class also includes: - trustee, fiduciary and custody services on a fee or contract basis
#> 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class also includes - subdividing real estate into lots, without land improvement
#> 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - development of building projects for own operation - operation of residential mobile home sites
#> 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - rent-collecting agencies
#> 759                                                                                                                                                       It also includes preparation of legal documents such as articles of incorporation, partnership agreements or similar documents in connection with company formation, patents and copyrights, preparation of deeds, wills, trusts, etc. as well as other activities of notaries public, civil law notaries, bailiffs, arbitrators, examiners and referees.  It also includes accounting and bookkeeping services such as auditing of accounting records, preparing financial statements and bookkeeping.
#> 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It also includes the overseeing and managing of other units of the same company or enterprise, i.e. the activities of head offices.
#> 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It also includes the performance of physical, chemical, and other analytical testing services.
#> 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - microfilming of documents
#> 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 796                                                                                                                                                                                                                                                                                                                        This class also includes: - activities carried out by agents and agencies on behalf of individuals usually involving the obtaining of engagements in motion picture, theatrical production or other entertainment or sports attractions and the placement of books, plays, artworks, photographs etc., with publishers, producers etc.
#> 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It also includes animal ambulance activities.
#> 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 799                                                                                                                                                                                                                                                                                                                                                                                                                                            This class also includes: - activities of veterinary assistants or other auxiliary veterinary personnel - clinico-pathological and other diagnostic activities pertaining to animals - animal ambulance activities
#> 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - rental of accommodation or office containers - rental of animals (e.g. herds, race horses) - rental of containers - rental of pallets
#> 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The activities of tourist guides and tourism promotion activities are also included.
#> 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This division also includes all support service activities typically provided to businesses not elsewhere classified.
#> 847                                                                                                                                                                                                                                                                                                                                                                                                                                                     This group also includes support activities for others on a contract or fee basis, that are ongoing routine business support functions that businesses and organisations traditionally do for themselves.
#> 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 861                                                                                                                                                                                                                                                                                                                    This class also includes:  - sponsoring of recreational and cultural activities - distribution of public grants to artists - administration of potable water supply programmes - administration of waste collection and disposal operations - administration of environmental protection programmes - administration of housing programmes
#> 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 878                                                                                                                                                                                                                                                                                                                                                                             This class also includes: - tourist guide instruction - instruction for chefs, hoteliers and restaurateurs - cosmetology and barber schools - computer repair training - driving schools for occupational drivers e.g. of trucks, buses, coaches, schools for professional pilots
#> 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - performing arts schools providing tertiary education
#> 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - flying, sailing, shipping schools not issuing commercial certificates and permits
#> 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - lifeguard training - survival training - public speaking training - speed reading instruction
#> 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 889                                                                                                                                                                                 It also includes medical consultation and treatment in the field of general and specialised medicine by general practitioners and medical specialists and surgeons. It includes dental practice activities of a general or specialised nature and orthodontic activities. Additionally, this division includes activities for human health not performed by hospitals or by practicing medical doctors but by paramedical practitioners legally recognised to treat patients.
#> 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This group also includes: - private consultants' services to inpatients
#> 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - family planning centres providing medical treatment such as sterilisation and termination of pregnancy, without accommodation
#> 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - dental activities in operating rooms
#> 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 897                                                                         This class also includes: - activities of dental paramedical personnel such as dental therapists, school dental nurses and dental hygienists, who may work remote from, but are periodically supervised by, the dentist - activities of medical laboratories such as:   • X-ray laboratories and other diagnostic imaging centres   • blood analysis laboratories - activities of blood banks, sperm banks, transplant organ banks etc. - ambulance transport of patients by any mode of transport including airplanes. These services are often provided during a medical emergency.
#> 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class also includes: - provision of residential care and treatment for patients with mental health and substance abuse illnesses
#> 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class also includes: - activities of:   • halfway group homes for persons with social or personal problems   • halfway homes for delinquents and offenders   • juvenile correction homes
#> 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class also includes: - activities of day nurseries for pupils, including day-care activities for disabled children
#> 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class also includes: - activities of producers or entrepreneurs of arts live events, with or without facilities
#> 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It also includes the preservation and exhibition of objects, sites and natural wonders of historical, cultural or educational interest (e.g. world heritage sites, etc).
#> 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class includes managing and providing the staff to operate these facilities.
#> 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class also includes activities of producers or entrepreneurs of live events other than arts or sports events, with or without facilities.
#> 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In the case of professional membership organisations, it also includes the activities of promoting the professional interests of members of the profession.
#> 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - activities of learned societies
#> 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 942                                                                                                                                                                                                          This class also includes: - activities of associations whose members are employees interested chiefly in the representation of their views concerning the salary and work situation, and in concerted action through organisation - activities of single plant unions, of unions composed of affiliated branches and of labour organisations composed of affiliated unions on the basis of trade, region, organisational structure or other criteria
#> 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class also includes: - religious funeral service activities
#> 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class also includes: - grant giving activities by membership organisations or others
#> 947                                                                                                                                                                                                                                                           It also includes the repair of communications equipment such as fax machines, two-way radios and consumer electronics such as radios and TVs, home and garden equipment such as lawn-mowers and blowers, footwear and leather goods, furniture and home furnishings, clothing and clothing accessories, sporting goods, musical instruments, hobby articles and other personal and household goods.
#> 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 949                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes the repair and maintenance of: - computer terminals like automatic teller machines (ATM's); point-of-sale (POS) terminals, not mechanically operated - hand-held computers (PDA's)
#> 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class also includes: - activities of diplomatic and consular missions when being determined by the country of their location rather than by the country they represent
#> 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also included is the provision of steam and air-conditioning supply.
#> 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Activities of water supply are also grouped in this section, since they are often carried out in connection with, or by units also engaged in, the treatment of sewage.
#> 981                                                                                                                                                                                                                                                                                                                                                                                                                                    This section also includes the development of building projects for buildings or civil engineering works by bringing together financial, technical and physical means to realise the construction projects for later sale.
#> 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This section also includes the activities of holding assets, such as activities of holding companies and the activities of trusts, funds and similar financial entities.
#> 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Also included is the building of structures, combined with maintaining ownership or leasing of such structures.
#> 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This section also includes compulsory social security activities.
#> 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This section also includes instruction primarily concerned with sport and recreational activities such as tennis or golf and education support activities.
#> 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#> 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          <NA>
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exclude
#> 1                                                                                                                                                                                                                                                                                                                                     Agricultural activities exclude any subsequent processing of the agricultural products (classified under divisions 10 and 11 (Manufacture of food products and beverages) and division 12 (Manufacture of tobacco products)), beyond that needed to prepare them for the primary markets. The preparation of products for the primary markets is included here.  The division excludes field construction (e.g. agricultural land terracing, drainage, preparing rice paddies etc.) classified in section F (Construction) and buyers and cooperative associations engaged in the marketing of farm products classified in section G. Also excluded is the landscape care and maintenance, which is classified in class 81.30.
#> 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               <NA>
#> 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - growing of rice, see 01.12 - growing of sweet corn, see 01.13 - growing of maize for fodder, see 01.19 - growing of oleaginous fruits, see 01.26
#> 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               <NA>
#> 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - growing of chillies, peppers (capsicum sop.) and other spices and aromatic crops, see 01.28 - growing of mushroom spawn, see 01.30
#> 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - growing of sugar beet, see 01.13
#> 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of tobacco products, see 12.00
#> 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               <NA>
#> 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - growing of non-perennial spices, aromatic, drug and pharmaceutical crops, see 01.28
#> 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of wine, see 11.02
#> 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - growing of coconuts, see 01.26
#> 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - growing of soya beans, groundnuts and other oil seeds, see 01.11
#> 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - growing of flowers, production of cut flower buds and growing of flower seeds, see 01.19 - gathering of tree sap or rubber-like gums in the wild, see 02.30
#> 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - growing of plants for the purpose of seed production, see 01.1, 01.2 - operation of forest tree nurseries, see 02.10
#> 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This group excludes:  - farm animal boarding and care, see 01.62 - production of hides and skins from slaughterhouses, see 10.11
#> 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - processing of milk, see 10.51
#> 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - operation of racing and riding stables, see 93.19
#> 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - sheep shearing on a fee or contract basis, see 01.62 - production of pulled wool, see 10.11 - processing of milk, see 10.51
#> 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - production of feathers or down, see 10.12
#> 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - production of hides and skins originating from hunting and trapping, see 01.70 - operation of frog farms, crocodile farms, marine worm farms, see 03.21, 03.22 - operation of fish farms, see 03.21, 03.22 - boarding and training of pet animals, see 96.09 - raising and breeding of poultry, see 01.47
#> 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - mixed crop farming, see groups 01.1 and 01.2 - mixed animal farming, see group 01.4
#> 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - post-harvest crop activities, see 01.63 - drainage of agricultural land, see 43.12 - landscape architecture, see 71.11 - activities of agronomists and agricultural economists, see 74.90 - landscape gardening, planting, see 81.30 - organisation of agricultural shows and fairs, see 82.30
#> 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - provision of space for animal boarding only, see 68.20 - veterinary activities, see 75.00 - vaccination of animals, see 75.00 - rental of animals (e.g. herds), see 77.39 - pet boarding, see 96.09
#> 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - preparation of agricultural products by the producer, see corresponding class in groups 01.1, 01.2 or 01.3 - post-harvest activities aimed at improving the propagation quality of seed, see 01.64  - stemming and redrying of tobacco, see 12.00 - marketing activities of commission merchants and cooperative associations, see division 46 - wholesale of agricultural raw materials, see 46.2
#> 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - growing of seeds, see groups 01.1 and 01.2 - processing of seeds to obtain oil, see 10.41 - research to develop or modify new forms of seeds, see 72.11
#> 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - production of fur skins, reptile or bird skins from ranching operations, see group 01.49 - raising of game animals on ranching operations, see 01.4 - catching of whales, see 03.11 - production of hides and skins originating from slaughterhouses, see 10.11 - hunting for sport or recreation and related service activities, see 93.19 - service activities to promote hunting and trapping, see 94.99
#> 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Excluded is further processing of wood beginning with sawmilling and planing of wood, see division 16.
#> 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - growing of Christmas trees, see 01.29 - operation of tree nurseries, except for forest trees, see 01.30 - gathering of mushrooms and other wild growing non-wood forest products, see 02.30 - production of wood chips and particles, see 16.10
#> 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - growing of Christmas trees, see 01.29 - growing of standing timber: planting, replanting, transplanting, thinning and conserving of forests and timber tracts, see 02.10 - gathering of wild growing non-wood forest products, see 02.30 - production of wood chips and particles, see 16.10 - production of charcoal through distillation of wood, see 20.14
#> 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - managed production of any of these products (except growing of cork trees), see division 01 - growing of mushrooms or truffles, see 01.13 - growing of berries or nuts, see 01.25 - gathering of fire wood, see 02.20 - production of wood chips, see 16.10
#> 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - operation of forest tree nurseries, see 02.10 - draining of forestry land, see 43.12 - clearing of building sites, see 43.12
#> 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This division does not include building and repairing of ships and boats (30.1, 33.15) and sport or recreational fishing activities (93.19). Processing of fish, crustaceans or molluscs is excluded, whether at land-based plants or on factory ships (10.20).
#> 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - capturing of marine mammals, except whales, e.g. walruses, seals, see 01.70 - processing of whales on factory ships, see 10.11 - processing of fish, crustaceans and molluscs on factory ships or in factories ashore, see 10.20 - rental of pleasure boats with crew for sea and coastal water transport (e.g. for fishing cruises), see 50.10 - fishing inspection, protection and patrol services, see 84.24 - fishing practiced for sport or recreation and related services, see 93.19 - operation of sport fishing preserves, see 93.19
#> 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - processing of fish, crustaceans and molluscs, see 10.20 - fishing inspection, protection and patrol services, see 84.24 - fishing practiced for sport or recreation and related services, see 93.19 - operation of sport fishing preserves, see 93.19
#> 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - frog farming, see 03.22 - operation of sport fishing preserves, see 93.19
#> 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - aquaculture activities in salt water filled tanks and reservoirs, see 03.21 - operation of sport fishing preserves, see 93.19
#> 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division does not include coking (see 19.10), services incidental to coal or lignite mining (see 09.90) or the manufacture of briquettes (see 19.20).
#> 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - lignite mining, see 05.20 - peat digging, see 08.92 - support activities for hard coal mining, see 09.90 - test drilling for coal mining, see 09.90 - coke ovens producing solid fuels, see 19.10 - manufacture of hard coal briquettes, see 19.20 - work performed to develop or prepare properties for coal mining, see 43.12
#> 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - hard coal mining, see 05.10 - peat digging, see 08.92 - support activities for lignite mining, see 09.90 - test drilling for coal mining, see 09.90 - manufacture of lignite fuel briquettes, see 19.20 - work performed to develop or prepare properties for coal mining, see 43.12
#> 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes: - oil and gas field services, performed on a fee or contract basis, see 09.10 - oil and gas well exploration, see 09.10 - test drilling and boring, see 09.10 - refining of petroleum products, see 19.20 - geophysical, geologic and seismic surveying, see 71.12
#> 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - support activities for oil and natural gas extraction, see 09.10 - oil and gas exploration, see 09.10 - manufacture of refined petroleum products, see 19.20 - recovery of liquefied petroleum gases in the refining of petroleum, see 19.20 - operation of pipelines, see 49.50
#> 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - support activities for oil and natural gas extraction, see 09.10 - oil and gas exploration, see 09.10 - recovery of liquefied petroleum gases in the refining of petroleum, see 19.20 - manufacture of industrial gases, see 20.11 - operation of pipelines, see 49.50
#> 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This division excludes: - roasting of iron pyrites, see 20.13 - production of aluminium oxide, see 24.42 - operation of blast furnaces, see division 24
#> 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - extraction and preparation of pyrites and pyrrhotite (except roasting), see 08.91
#> 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - enrichment of uranium and thorium ores, see 20.13 - production of uranium metal from pitchblende or other ores, see 24.46 - smelting and refining of uranium, see 24.46
#> 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - mining and preparation of uranium and thorium ores, see 07.21 - production of aluminium oxide, see 24.42 - production of mattes of copper or of nickel, see 24.44, 24.45
#> 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This division does not include processing (except crushing, grinding, cutting, cleaning, drying, sorting and mixing) of the minerals extracted.
#> 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - mining of chemical and fertiliser minerals, see 08.91 - production of calcined dolomite, see 23.52 - cutting, shaping and finishing of stone outside quarries, see 23.70
#> 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - mining of bituminous sand, see 06.10
#> 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - extraction of salt, see 08.93 - roasting of iron pyrites, see 20.13 - manufacture of synthetic fertilisers and nitrogen compounds, see 20.15
#> 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - service activities incidental to peat mining, see 09.90 - manufacture of peat briquettes, see 19.20 - manufacture of potting soil mixtures of peat, natural soil, sands, clays, fertiliser minerals etc., see 20.15 - manufacture of articles of peat, see 23.99
#> 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - processing of salt into food-grade salt, e.g. iodised salt, see 10.84 - potable water production by evaporation of saline water, see 36.00
#> 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - service activities performed by operators of oil or gas fields, see 06.10, 06.20 - specialised repair of mining machinery, see 33.12 - liquefaction and regasification of natural gas for purpose of transport, done off the mine site, see 52.21 - geophysical, geologic and seismic surveying, see 71.12
#> 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - operating mines or quarries on a contract or fee basis, see division 05, 07 or 08 - specialised repair of mining machinery, see 33.12 - geophysical surveying services, on a contract or fee basis, see 71.12
#> 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division does not include the preparation of meals for immediate consumption, such as in restaurants.
#> 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - rendering of edible poultry fats, see 10.12 - packaging of meat, see 82.92
#> 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - packaging of meat, see 82.92
#> 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of prepared frozen meat and poultry dishes, see 10.85 - manufacture of soup containing meat, see 10.89 - wholesale trade of meat, see 46.32 - packaging of meat, see 82.92
#> 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - processing and preserving of fish on vessels engaged in fishing, see 03.11 - processing of whales on land or specialised vessels, see 10.11 - production of oils and fats from marine material, see 10.41 - manufacture of prepared frozen fish dishes, see 10.85 - manufacture of fish soups, see 10.89
#> 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of fruit or vegetable juices, see 10.32 - manufacture of flour or meal of dried leguminous vegetables, see 10.61 - preservation of fruit and nuts in sugar, see 10.82 - manufacture of prepared vegetable dishes, see 10.85 - manufacture of artificial concentrates, see 10.89
#> 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - rendering and refining of lard and other edible animal fats, see 10.11 - manufacture of margarine, see 10.42 - wet corn milling, see 10.62 - manufacture of corn oil, see 10.62 - production of essential oils, see 20.53 - treatment of oil and fats by chemical processes, see 20.59
#> 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <NA>
#> 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - production of raw milk (cattle), see 01.41 - production of raw milk (sheep, goats, horses, asses, camels, etc.), see 01.43, 01.44, 01.45 - manufacture of non-dairy milk and cheese substitutes, see 10.89
#> 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - activities of ice cream parlours, see 56.10
#> 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of potato flour and meal, see 10.31 - wet corn milling, see 10.62
#> 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of lactose (milk sugar), see 10.51 - production of cane or beet sugar, see 10.81
#> 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of dry bakery products, see 10.72 - manufacture of pastas, see 10.73 - heating up of bakery items for immediate consumption, see division 56
#> 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of potato snacks, see 10.31
#> 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of prepared couscous dishes, see 10.85 - manufacture of soup containing pasta, see 10.89
#> 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of glucose, glucose syrup, maltose, see 10.62
#> 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of sucrose sugar, see 10.81
#> 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of inulin, see 10.62 - manufacture of spirits, beer, wine and soft drinks, see division 11 - preparation of botanical products for pharmaceutical use, see 21.20
#> 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - growing of spice crops, see 01.28
#> 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of fresh foods or foods with less than two ingredients, see corresponding class in division 10 - manufacture of perishable prepared foods, see 10.89 - retail sale of prepared meals and dishes in stores, see 47.11, 47.29 - wholesale of prepared meals and dishes, see 46.38 - activities of food service contractors, see 56.29
#> 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of perishable prepared foods of fruit and vegetables, see 10.39 - manufacture of frozen pizza, see 10.85 - manufacture of spirits, beer, wine and soft drinks, see division 11
#> 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - production of fishmeal for animal feed, see 10.20 - production of oilseed cake, see 10.41 - activities resulting in by-products usable as animal feed without special treatment, e.g. oilseeds (see 10.41), grain milling residues (see 10.61) etc.
#> 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - production of fishmeal for animal feed, see 10.20 - production of oilseed cake, see 10.41 - activities resulting in by-products usable as animal feed without special treatment, e.g. oilseeds (see 10.41), grain milling residues (see 10.61) etc.
#> 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This division excludes: - production of fruit and vegetable juices, see 10.32 - manufacture of milk-based drinks, see 10.51 - manufacture of coffee, tea and mate products, see 10.83
#> 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of non-distilled alcoholic beverages, see 11.02-11.06 - manufacture of synthetic ethyl alcohol, see 20.14 - manufacture of ethyl alcohol from fermented materials, see 20.14 - merely bottling and labelling, see 46.34 (if performed as part of wholesale) and 82.92 (if performed on a fee or contract basis)
#> 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - merely bottling and labelling, see 46.34 (if performed as part of wholesale) and 82.92 (if performed on a fee or contract basis)
#> 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - merely bottling and labelling, see 46.34 (if performed as part of wholesale) and 82.92 (if performed on a fee or contract basis)
#> 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - merely bottling and labelling, see 46.34 (if performed as part of wholesale) and 82.92 (if performed on a fee or contract basis)
#> 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - production of fruit and vegetable juice, see 10.32 - manufacture of milk-based drinks, see 10.51 - manufacture of coffee, tea and maté products, see 10.83 - manufacture of alcohol-based drinks, see 11.01, 11.02, 11.03, 11.04, 11.05 - manufacture of non-alcoholic wine, see 11.02 - manufacture of non-alcoholic beer, see 11.05 - manufacture of ice, see 35.30 - merely bottling and labelling, see 46.34 (if performed as part of wholesale) and 82.92 (if performed on a fee or contract basis)
#> 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - growing or preliminary processing of tobacco, see 01.15, 01.63
#> 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - preparatory operations carried out in combination with agriculture, see division 01 - retting of plants bearing vegetable textile fibres (jute, flax, coir etc.), see 01.16 - cotton ginning, see 01.63 - manufacture of synthetic or artificial fibres and tows, manufacture of single yarns (including high-tenacity yarn and yarn for carpets) of synthetic or artificial fibres, see 20.60 - manufacture of glass fibres, see 23.14
#> 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of knitted and crocheted fabrics, see 13.91 - manufacture of textile floor coverings, see 13.93 - manufacture of non-woven fabrics, see 13.95 - manufacture of narrow fabrics, see 13.96 - manufacture of felts, see 13.99
#> 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of textile fabric impregnated, coated, covered or laminated with rubber, where rubber is the chief constituent, see 22.19
#> 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of net and window furnishing type fabrics of lace knitted on Raschel or similar machines, see 13.99 - manufacture of knitted and crocheted apparel, see 14.39
#> 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of textile articles for technical use, see 13.96
#> 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of mats and matting of plaiting materials, see 16.29 - manufacture of floor coverings of cork, see 16.29 - manufacture of resilient floor coverings, such as vinyl, linoleum, see 22.23
#> 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of hairnets, see 14.19 - manufacture of wire rope, see 25.93 - manufacture of landing nets for sports fishing, see 32.30
#> 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of transmission or conveyor belts of textile fabric, yarn or cord impregnated, coated, covered or laminated with rubber, where rubber is the chief constituent, see 22.19 - manufacture of plates or sheets of cellular rubber or plastic combined with textiles for reinforcing purposes only, see 22.19, 22.21 - manufacture of cloth of woven metal wire, see 25.93
#> 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of needle-loom felt floor coverings, see 13.93 - manufacture of textile wadding and articles of wadding: sanitary towels, tampons etc., see 17.22
#> 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of fur wearing apparel, see 14.20 - manufacture of leather sports gloves and sports headgear, see 32.30 - manufacture of fire resistant and protective safety clothing, see 32.99
#> 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of footwear, see 15.20 - manufacture of fire resistant and protective safety clothing, see 32.99 - repair of wearing apparel, see 95.29
#> 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of wearing apparel of fur skins (except headgear), see 14.20 - manufacture of wearing apparel of rubber or plastics not assembled by stitching but merely sealed together, see 22.19, 22.29 - manufacture of fire resistant and protective safety clothing, see 32.99 - repair of wearing apparel, see 95.29
#> 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - repair of wearing apparel, see 95.29
#> 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of sports headgear, see 32.30 - manufacture of safety headgear (except sports headgear), see 32.99 - manufacture of fire resistant and protective safety clothing, see 32.99 - repair of wearing apparel, see 95.29
#> 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - production of raw fur skins, see 01.4, 01.70 - production of raw hides and skins, see 10.11 - manufacture of imitation furs (long-hair cloth obtained by weaving or knitting), see 13.20, 13.91 - manufacture of fur hats, see 14.19 - manufacture of apparel trimmed with fur, see 14.19 - dressing and dyeing of fur, see 15.11 - manufacture of boots or shoes containing fur parts, see 15.20
#> 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of knitted and crocheted fabrics, see 13.91 - manufacture of hosiery, see 14.31
#> 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - production of hides and skins as part of ranching, see 01.4 - production of hides and skins as part of slaughtering, see 10.11 - manufacture of leather apparel, see 14.11 - manufacture of imitation leather not based on natural leather, see 22.19, 22.29
#> 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of leather wearing apparel, see 14.11 - manufacture of leather gloves and hats, see 14.19 - manufacture of footwear, see 15.20 - manufacture of saddles for bicycles, see 30.92 - manufacture of precious metal watch bands, see 32.12 - manufacture of non-precious metal watch bands, see 32.13 - manufacture of linemen's safety belts and other belts for occupational use, see 32.99
#> 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of footwear of textile material without applied soles, see 14.19 - manufacture of wooden shoe parts (e.g. heels and lasts), see 16.29 - manufacture of rubber boot and shoe heels and soles and other rubber footwear parts, see 22.19 - manufacture of plastic footwear parts, see 22.29 - manufacture of ski-boots, see 32.30 - manufacture of orthopaedic shoes, see 32.50
#> 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This division does not include the manufacture of furniture (31.0), or the installation of wooden fittings and the like (43.32, 43.33, 43.39).
#> 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - logging and production of wood in the rough, see 02.20 - manufacture of veneer sheets thin enough for use in plywood, boards and panels, see 16.21 - manufacture of shingles and shakes, beadings and mouldings, see 16.23 - manufacture of fire logs or pressed wood, see 16.29
#> 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of unassembled wooden floors, see 16.10
#> 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of kitchen cabinets, bookcases, wardrobes etc., see 31.01, 31.02, 31.09 - manufacture of wood partitions, free standing, see 31.01, 31.02, 31.09
#> 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of luggage, see 15.12 - manufacture of cases of plaiting material, see 16.29
#> 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of mats or matting of textile materials, see 13.92 - manufacture of luggage, see 15.12 - manufacture of wooden footwear, see 15.20 - manufacture of matches, see 20.51 - manufacture of clock cases, see 26.52 - manufacture of wooden spools and bobbins that are part of textile machinery, see 28.94 - manufacture of furniture, see 31.0 - manufacture of wooden toys, see 32.40 - manufacture of brushes and brooms, see 32.91 - manufacture of coffins, see 32.99 - manufacture of cork life preservers, see 32.99
#> 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of corrugated paper and paperboard, see 17.21 - manufacture of further-processed articles of paper, paperboard or pulp, see 17.22, 17.23, 17.24, 17.29 - manufacture of coated or impregnated paper, where the coating or impregnant is the main ingredient, see class in which the manufacture of the coating or impregnant is classified - manufacture of abrasive paper, see 23.91
#> 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of envelopes, see 17.23 - manufacture of moulded or pressed articles of paper pulp (e.g. boxes for packing eggs, moulded pulp paper plates), see 17.29
#> 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of cellulose wadding, see 17.12
#> 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - printing on paper products, see 18.1
#> 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of paper or paperboard in bulk, see 17.12 - manufacture of plastic wallpaper, see 22.29
#> 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of playing cards, see 32.40 - manufacture of games and toys of paper or paperboard, see 32.40
#> 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This division excludes publishing activities (see section J).
#> 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - publishing of printed matter, see 58.1 - photocopying of documents, see 82.19
#> 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of stationery (notebooks, binders, registers, accounting books, business forms etc.), when the printed information is not the main characteristic, see 17.23 - publishing of printed matter, see 58.1
#> 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - specialised design activities, see 74.10
#> 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - reproduction of printed matter, see 18.11, 18.12 - publishing of software, see 58.2 - production and distribution of motion pictures, video tapes and movies on DVD or similar media, see 59.11, 59.12, 59.13 - reproduction of motion picture film for theatrical distribution, see 59.12 - production of master copies for records or audio material, see 59.20
#> 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Not included is the manufacture of such gases in other units (20.14), manufacture of industrial gases (20.11), extraction of natural gas (methane, ethane, butane or propane) (06.20), and manufacture of fuel gas, other than petroleum gases (e.g. coal gas, water gas, producer gas, gasworks gas) (35.21).  The manufacture of petrochemicals from refined petroleum is classified in division 20.
#> 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of coal fuel briquettes, see 19.20
#> 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - extraction of methane, ethane, butane or propane, see 06.20 - manufacture of fuel gases such as ethane, butane or propane in a petroleum refinery, see 19.20 - manufacture of gaseous fuels from coal, waste etc., see 35.21
#> 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of prepared dyes and pigments, see 20.30
#> 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of industrial gases, see 20.11 - manufacture of nitrogenous fertilisers and nitrogen compounds, see 20.15 - manufacture of ammonia, see 20.15 - manufacture of ammonium chloride, see 20.15 - manufacture of nitrites and nitrates of potassium, see 20.15 - manufacture of ammonium carbonates, see 20.15 - manufacture of aromatic distilled water, see 20.53 - manufacture of basic metals, see division 24
#> 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of plastics in primary forms, see 20.16 - manufacture of synthetic rubber in primary forms, see 20.17 - manufacture of crude glycerol, see 20.41 - manufacture of natural essential oils, see 20.53 - manufacture of salicylic and O-acetylsalicylic acids, see 21.10
#> 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - mining of guano, see 08.91 - manufacture of agrochemical products, such as pesticides, see 20.20
#> 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of artificial and synthetic fibres, filaments and yarn, see 20.60 - shredding of plastic products, see 38.32
#> 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of fertilisers and nitrogen compounds, see 20.15
#> 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of dyestuffs and pigments, see 20.12 - manufacture of writing and drawing ink, see 20.59
#> 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of separate, chemically defined compounds, see 20.13, 20.14 - manufacture of glycerol, synthesised from petroleum products, see 20.14 - manufacture of cosmetic soap, see 20.42
#> 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - extraction and refining of natural essential oils, see 20.53
#> 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of gelatines and its derivates, see 20.59
#> 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of synthetic aromatic products, see 20.14 - manufacture of perfumes and toilet preparations, see 20.42
#> 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of chemically defined products in bulk, see 20.13, 20.14 - manufacture of distilled water, 20.13 - manufacture of other organic basic chemicals, see 20.14 - manufacture of printing ink, see 20.30 - manufacture of asphalt-based adhesives, see 23.99
#> 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - spinning of synthetic or artificial fibres, see 13.10 - manufacture of yarns made of man-made staple, see 13.10
#> 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of herb infusions (mint, vervain, chamomile etc.), see 10.83 - manufacture of dental fillings and dental cement, see 32.50 - manufacture of bone reconstruction cements, see 32.50 - manufacture of surgical drapes, see 32.50 - wholesale of pharmaceuticals, see 46.46 - retail sale of pharmaceuticals, see 47.73 - research and development for pharmaceuticals and biotech pharmaceuticals, see 72.1 - packaging of pharmaceuticals, see 82.92
#> 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of tube repair materials, see 22.19 - tyre and tube repair, fitting or replacement, see 45.20
#> 229                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of tyre cord fabrics, see 13.96 - manufacture of apparel of elastic fabrics, see 14.14, 14.19 - manufacture of rubber footwear, see 15.20 - manufacture of glues and adhesives based on rubber, see 20.52 - manufacture of "camelback" strips, see 22.11 - manufacture of inflatable rafts and boats, see 30.11, 30.12 - manufacture of mattresses of uncovered cellular rubber, see 31.03 - manufacture of rubber sports requisites, except apparel, see 32.30 - manufacture of rubber games and toys (including children's wading pools, inflatable children rubber boats, inflatable rubber animals, balls and the like), see 32.40 - reclaiming of rubber, see 38.32
#> 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of plastics in primary forms, see 20.16 - manufacture of articles of synthetic or natural rubber, see 22.1
#> 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of luggage and handbags of plastic, see 15.12
#> 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of plastic luggage, see 15.12 - manufacture of plastic footwear, see 15.20 - manufacture of plastic furniture, see 31.01, 31.02, 31.09 - manufacture of mattresses of uncovered cellular plastic, see 31.03 - manufacture of plastic sports requisites, see 32.30 - manufacture of plastic games and toys, see 32.40 - manufacture of plastic medical and dental appliances, see 32.50 - manufacture of plastic ophthalmic goods, see 32.50 - manufacture of plastics hard hats and other personal safety equipment of plastics, see 32.99
#> 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of glass toys, see 32.40
#> 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of woven fabrics of glass yarn, see 13.20 - manufacture of fibre optic cable for data transmission or live transmission of images, see 27.31
#> 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of optical elements optically worked, see 26.70 - manufacture of syringes and other medical laboratory equipment, see 32.50
#> 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of artificial stone (e.g. cultured marble), see 22.23 - manufacture of refractory ceramic products, see 23.20 - manufacture of ceramic bricks and roofing tiles, see 23.32
#> 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of refractory ceramic products, see 23.20 - manufacture of non-structural non-refractory ceramic products, see 23.4
#> 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of imitation jewellery, see 32.13 - manufacture of ceramic toys, see 32.40
#> 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of refractory ceramic goods, see 23.20 - manufacture of ceramic building materials, see 23.3
#> 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of refractory ceramic goods, see 23.20
#> 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of artificial stone (e.g. cultured marble), see 22.23 - manufacture of refractory ceramic goods, see 23.20 - manufacture of ceramic building materials, see 23.3
#> 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of ceramic sanitary fixtures, see 23.42 - manufacture of artificial teeth, see 32.50
#> 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of refractory mortars, concrete etc., see 23.20 - manufacture of ready-mixed and dry-mix concrete and mortars, see 23.63, 23.64 - manufacture of articles of cement, see 23.69 - manufacture of cements used in dentistry, see 32.50
#> 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of articles of plaster, see 23.62, 23.69
#> 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of refractory cements, see 23.20
#> 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of refractory mortars, see 23.20 - manufacture of dry-mixed concrete and mortars, see 23.63
#> 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - activities carried out by operators of quarries, e.g. production of rough cut stone, see 08.11 - production of millstones, abrasive stones and similar products, see 23.9
#> 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of glass wool and non-woven glass wool products, see 23.14 - manufacture of graphite electrodes, see 27.90 - manufacture of carbon or graphite gaskets, see 28.29
#> 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - cold drawing of bars, see 24.31
#> 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes - manufacture of seamless tubes and pipes of steel by centrifugally casting, see 24.52
#> 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - drawing of wire, see 24.34
#> 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - drawing of bars and solid sections of steel, see 24.31 - manufacture of derived wire products, see 25.93
#> 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - casting of non-ferrous metals, see 24.53, 24.54 - manufacture of precious metal jewellery, see 32.12
#> 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - casting of non-ferrous metals, see 24.53, 24.54
#> 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - casting of non-ferrous metals, see 24.53, 24.54
#> 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - casting of non-ferrous metals, see 24.53, 24.54
#> 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - casting of non-ferrous metals, see 24.53, 24.54
#> 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This group excludes: - manufacture of finished cast products such as:   • boilers and radiators, see 25.21   • cast household items, see 25.99
#> 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This division excludes: - specialised repair and maintenance activities, see 33.1 - specialised installation of manufactured goods produced in this division in buildings, such as central heating boilers, see 43.22
#> 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of parts for marine or power boilers, see 25.30 - manufacture of assembled railway track fixtures, see 25.99 - manufacture of sections of ships, see 30.11
#> 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of electrical ovens and water heaters, see 27.51
#> 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of metal casks, drums, cans, pails, boxes etc. of a kind normally used for carrying and packing of goods, of a capacity not exceeding 300 litres, see 25.91, 25.92 - manufacture of transport containers, see 29.20 - manufacture of tanks (armoured military vehicles), see 30.40
#> 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of central heating hot-water boilers and radiators, see 25.21 - manufacture of boiler-turbine sets, see 28.11 - manufacture of isotope separators, see 28.99
#> 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of percussion caps, detonators or signalling flares, see 20.51 - manufacture of cutlasses, swords, bayonets etc., see 25.71 - manufacture of armoured vehicles for the transport of banknotes or valuables, see 29.10 - manufacture of space vehicles, see 30.30 - manufacture of tanks and other fighting vehicles, see 30.40
#> 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - production of metal powder, see 24.1, 24.4
#> 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - activities of farriers, see 01.62 - printing onto metals, see 18.12 - metal coating of plastics, see 22.29 - rolling precious metals onto base metals or other metals, see 24.41, 24.42, 24.43, 24.44 - "while-you-wait" engraving services, see 95.29
#> 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - activities of farriers, see 01.62
#> 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of hollowware (pots, kettles etc.), dinnerware (bowls, platters etc.) or flatware (plates, saucers etc.), see 25.99 - manufacture of cutlery of precious metal, see 32.12
#> 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of power-driven hand tools, see 28.24 - manufacture of ingot moulds, see 28.91
#> 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of tanks and reservoirs, see 25.2
#> 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of clock or watch springs, see 26.52 - manufacture of wire and cable for electricity transmission, see 27.32 - manufacture of power transmission chain, see 28.15
#> 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of swords, bayonets, see 25.71 - manufacture of shopping carts, see 30.99 - manufacture of metal furniture, see 31.01, 31.02, 31.09 - manufacture of sports goods, see 32.30 - manufacture of games and toys, see 32.40
#> 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 318                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - printing of smart cards, see 18.12 - manufacture of computer and television displays, see 26.20, 26.40 - manufacture of modems (carrier equipment), see 26.30 - manufacture of X-ray tubes and similar irradiation devices, see 26.60 - manufacture of optical equipment and instruments, see 26.70 - manufacture of similar devices for electrical applications, see division 27 - manufacture of fluorescent ballasts, see 27.11 - manufacture of electrical relays, see 27.12 - manufacture of electrical wiring devices, see 27.33 - manufacture of complete equipment is classified elsewhere based on complete equipment classification
#> 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - printing of smart cards, see 18.12 - manufacture of bare printed circuit boards, see 26.11
#> 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 321                                                                                                                                                        This class excludes: - reproduction of recorded media (computer media, sound, video, etc.), see 18.20 - manufacture of electronic components and electronic assemblies used in computers and peripherals, see 26.1 - manufacture of internal/external computer modems, see 26.12 - manufacture of interface cards, modules and assemblies, see 26.12 - manufacture of loaded electronic boards, see 26.12 - manufacture of modems, carrier equipment, see 26.30 - manufacture of digital communication switches, data communications equipment (e.g. bridges, routers, gateways), see 26.30 - manufacture of consumer electronic devices, such as CD players and DVD players, see 26.40 - manufacture of television monitors and displays, see 26.40 - manufacture of video game consoles, see 26.40 - manufacture of blank optical and magnetic media for use with computers or other devices, see 26.80
#> 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of electronic components and subassemblies used in communications equipment, including internal/external computer modems, see 26.1 - manufacture of loaded electronic boards, see 26.12 - manufacture of computers and computer peripheral equipment, see 26.20 - manufacture of consumer audio and video equipment, see 26.40 - manufacture of GPS devices, see 26.51 - manufacture of electronic scoreboards, see 27.90 - manufacture of traffic lights, see 27.90
#> 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 325                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - reproduction of recorded media (computer media, sound, video, etc.), see 18.2 - manufacture of computer peripheral devices and computer monitors, see 26.20 - manufacture of telephone answering machines, see 26.30 - manufacture of paging equipment, see 26.30 - manufacture of remote control devices (radio and infrared), see 26.30 - manufacture of broadcast studio equipment such as reproduction equipment, transmitting and receiving antennas, commercial video cameras, see 26.30  - manufacture of antennas, see 26.30 - manufacture of digital cameras, see 26.70 - manufacture of electronic games with fixed (non-replaceable) software, see 32.40
#> 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - manufacture of telephone answering machines, see 26.30 - manufacture of irradiation equipment, see 26.60 - manufacture of optical positioning equipment, see 26.70 - manufacture of dictating machines, see 28.23 - manufacture of weighing machinery (other than sensitive laboratory balances), levels, tape measures etc., see 28.29 - manufacture of medical thermometers, see 32.50 - installation of industrial process control equipment, see 33.20
#> 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of non-metal watch bands (textile, leather, plastic), see 15.12 - manufacture of watch bands of precious metal, see 32.12 - manufacture of watch bands of non-precious metal, see 32.13
#> 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of tanning beds, see 27.90
#> 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of computer projectors, see 26.20 - manufacture of commercial TV and video cameras, see 26.30 - manufacture of household-type video cameras, see 26.40 - manufacture of complete equipment using laser components, see manufacturing class by type of machinery (e.g. medical laser equipment, see 26.60) - manufacture of photocopy machinery, see 28.23 - manufacture of ophthalmic goods, see 32.50
#> 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - reproduction of recorded media (computer media, sound, video, etc.), see 18.2
#> 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division excludes the manufacture of electronic products (see division 26).
#> 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of electronic component-type transformers and switches, see 26.11 - manufacture of electric welding and soldering equipment, see 27.90 - manufacture of solid state inverters, rectifiers and converters, see 27.90 - manufacture of turbine-generator sets, see 28.11 - manufacture of starting motors and generators for internal combustion engines, see 29.31
#> 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of environmental controls and industrial process control instruments, see 26.51 - manufacture of switches for electrical circuits, such as pushbutton and snap switches, see 27.33
#> 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of glass fibres or strand, see 23.14 - manufacture of optical cable sets or assemblies with connectors or other attachments, see depending on application, e.g. 26.11
#> 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture (drawing) of wire, see 24.34, 24.41, 24.42, 24.43, 24.44, 24.45 - manufacture of computer cables, printer cables, USB cables and similar cable sets or assemblies, see 26.11 - manufacture of electrical cord sets with insulated wire and connectors, see 27.90 - manufacture of cable sets, wiring harnesses and similar cable sets or assemblies for automotive applications, see 29.31
#> 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of ceramic insulators, see 23.43 - manufacture of electronic component-type connectors, sockets, and switches, see 26.11
#> 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of glassware and glass parts for lighting fixtures, see 23.19 - manufacture of current-carrying wiring devices for lighting fixtures, see 27.33 - manufacture of ceiling fans or bath fans with integrated lighting fixtures, see 27.51 - manufacture of electrical signalling equipment such as traffic lights and pedestrian signalling equipment, see 27.90 - manufacture of electrical signs, see 27.90
#> 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - manufacture of commercial and industrial refrigerators and freezers, room air-conditioners, attic fans, permanent mount space heaters, and commercial ventilation and exhaust fans, commercial-type cooking equipment; commercial-type laundry, dry-cleaning, and pressing equipment; commercial, industrial, and institutional vacuum cleaners, see division 28 - manufacture of household-type sewing machines, see 28.94 - installation of central vacuum cleaning systems, 43.29
#> 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 351 This class excludes: - manufacture of porcelain electrical insulators, see 23.43 - manufacture of carbon and graphite fibres and products (except electrodes and electrical applications), see 23.99 - manufacture of electronic component-type rectifiers, voltage regulating integrated circuits, power converting integrated circuits, electronic capacitors, electronic resistors, and similar devices, see 26.11 - manufacture of transformers, motors, generators, switchgear, relays and industrial controls, see 27.1 - manufacture of batteries, see 27.20 - manufacture of communication and energy wire, current-carrying and non current-carrying wiring devices, see 27.3 - manufacture of lighting equipment, see 27.40 - manufacture of household-type appliances, see 27.5 - manufacture of non-electrical welding and soldering equipment, see 28.29 - manufacture of motor vehicle electrical equipment, such as generators, alternators, spark plugs, ignition wiring harnesses, power window and door systems, voltage regulators, see 29.31
#> 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes the manufacture of metal products for general use (division 25), associated control devices, computer equipment, measurement and testing equipment, electricity distribution and control apparatus (divisions 26 and 27) and general-purpose motor vehicles (divisions 29 and 30).
#> 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of electric generators (except turbine generator sets), see 27.11 - manufacture of prime mover generator sets (except turbine generator sets), see 27.11 - manufacture of electrical equipment and components of internal combustion engines, see 29.31 - manufacture of motor vehicle, aircraft or cycle propulsion engines, see 29.10, 30.30, 30.91 - manufacture of turbojets and turbo propellers, see 30.30
#> 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of compressors, see 28.13 - manufacture of pumps for non-hydraulic applications, see 28.13 - manufacture of valves for non-fluid power applications, see 28.14 - manufacture of mechanical transmission equipment, see 28.15
#> 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of hydraulic and pneumatic equipment, see 28.12
#> 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of valves of unhardened vulcanised rubber, glass or of ceramic materials, see 22.19, 23.19 or 23.44 - manufacture of inlet and exhaust valves of internal combustion engines, see 28.11 - manufacture of hydraulic and pneumatic valves and air preparation equipment for use in pneumatic systems, see 28.12
#> 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of other chain, see 25.93 - manufacture of hydraulic transmission equipment, see 28.12 - manufacture of hydrostatic transmissions, see 28.12 - manufacture of (electromagnetic) clutches, see 29.31 - manufacture of sub-assemblies of power transmission equipment identifiable as parts of vehicles or aircraft, see divisions 29 and 30
#> 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of household ovens, see 27.51 - manufacture of agricultural dryers, see 28.93 - manufacture of bakery ovens, see 28.93 - manufacture of dryers for wood, paper pulp, paper or paperboard, see 28.99 - manufacture of medical, surgical or laboratory sterilisers, see 32.50 - manufacture of (dental) laboratory furnaces, see 32.50
#> 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of industrial robots for multiple uses, see 28.99 - manufacture of continuous-action elevators and conveyors for underground use, see 28.92 - manufacture of mechanical shovels, excavators and shovel loaders, see 28.92 - manufacture of floating cranes, railway cranes, crane-lorries, see 30.11, 30.20 - installation of lifts and elevators, see 43.29
#> 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of computers and peripheral equipment, see 26.20
#> 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of interchangeable tools for hand tools, see 25.73 - manufacture of electrical hand held soldering and welding equipment, see 27.90
#> 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of domestic refrigerating or freezing equipment, see 27.51 - manufacture of domestic fans, see 27.51
#> 365                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of sensitive (laboratory-type) balances, see 26.51 - manufacture of domestic refrigerating or freezing equipment, see 27.51 - manufacture of domestic fans, see 27.51 - manufacture of electrical welding and soldering equipment, see 27.90 - manufacture of agricultural spraying machinery, see 28.30 - manufacture of metal or glass rolling machinery and cylinders thereof, see 28.91, 28.99 - manufacture of agricultural dryers, see 28.93 - manufacture of machinery for filtering or purifying food, see 28.93 - manufacture of cream separators, see 28.93 - manufacture of commercial clothes dryers, see 28.94 - manufacture of textile printing machinery, see 28.94
#> 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - manufacture of non-power-driven agricultural hand tools, see 25.73 - manufacture of conveyors for farm use, see 28.22 - manufacture of power-driven hand tools, see 28.24 - manufacture of cream separators, see 28.93 - manufacture of machinery to clean, sort or grade seed, grain or dried leguminous vegetables, see 28.93 - manufacture of road tractors for semi-trailers, see 29.10 - manufacture of road trailers or semi-trailers, see 29.20
#> 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of interchangeable tools, see 25.73 - manufacture of electrical welding and soldering machines, see 27.90
#> 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of interchangeable tools for machine tools (drills, punches, dies, taps, milling cutters, turning tools, saw blades, cutting knives etc.), see 25.73 - manufacture of electric hand held soldering irons and soldering guns, see 27.90 - manufacture of power-driven hand tools, see 28.24 - manufacture of machinery used in metal mills or foundries, see 28.91 - manufacture of machinery for mining and quarrying, see 28.92
#> 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of draw-benches, see 28.41 - manufacture of moulding boxes and moulds (except ingot moulds), see 25.73 - manufacture of machines for forming foundry moulds, see 28.99
#> 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of lifting and handling equipment, see 28.22 - manufacture of other tractors, see 28.30, 29.10 - manufacture of machine tools for working stone, including machines for splitting or clearing stone, see 28.49 - manufacture of concrete-mixer lorries, see 29.10
#> 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of food and milk irradiation equipment, see 26.60 - manufacture of packing, wrapping and weighing machinery, see 28.29 - manufacture of cleaning, sorting or grading machinery for eggs, fruit or other crops (except seeds, grains and dried leguminous vegetables), see 28.30
#> 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - manufacture of paper or paperboard cards for use on jacquard machines, see 17.29 - manufacture of domestic washing and drying machines, see 27.51 - manufacture of calendaring machines, see 28.29 - manufacture of machines used in bookbinding, see 28.99
#> 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of household appliances, see 27.5 - manufacture of photocopy machines etc., see 28.23 - manufacture of machinery or equipment to work hard rubber, hard plastics or cold glass, see 28.49 - manufacture of ingot moulds, see 28.91
#> 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 381                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of electric motors (except starting motors), see 27.11 - manufacture of lighting equipment for motor vehicles, see 27.40 - manufacture of pistons, piston rings and carburettors, see 28.11 - manufacture of agricultural tractors, see 28.30 - manufacture of tractors used in construction or mining, see 28.92 - manufacture of off-road dumping trucks, see 28.92 - manufacture of bodies for motor vehicles, see 29.20 - manufacture of electrical parts for motor vehicles, see 29.31 - manufacture of parts and accessories for motor vehicles, see 29.32 - manufacture of tanks and other military fighting vehicles, see 30.40 - maintenance and repair of motor vehicles, see 45.20
#> 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of trailers and semi-trailers specially designed for use in agriculture, see 28.30 - manufacture of parts and accessories of bodies for motor vehicles, see 29.32 - manufacture of vehicles drawn by animals, see 30.99
#> 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - manufacture of batteries for vehicles, see 27.20 - manufacture of lighting equipment for motor vehicles, see 27.40 - manufacture of pumps for motor vehicles and engines, see 28.13
#> 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of tyres, see 22.11 - manufacture of rubber hoses and belts and other rubber products, see 22.19 - manufacture of pistons, piston rings and carburettors, see 28.11 - maintenance, repair and alteration of motor vehicles, see 45.20
#> 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 389                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of parts of vessels, other than major hull assemblies:   • manufacture of sails, see 13.92   • manufacture of ships' propellers, see 25.99   • manufacture of iron or steel anchors, see 25.99   • manufacture of marine engines, see 28.11 - manufacture of navigational instruments, see 26.51 - manufacture of lighting equipment for ships, see 27.40 - manufacture of amphibious motor vehicles, see 29.10 - manufacture of inflatable boats or rafts for recreation, see 30.12 - specialised repair and maintenance of ships and floating structures, see 33.15 - ship-breaking, see 38.31 - interior installation of boats, see 43.3
#> 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of parts of pleasure and sporting boats:   • manufacture of sails, see 13.92   • manufacture of iron or steel anchors, see 25.99   • manufacture of marine engines, see 28.11 - manufacture of sailboards and surfboards, see 32.30 - maintenance and repair of pleasure boats, see 33.15
#> 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of unassembled rails, see 24.10 - manufacture of assembled railway track fixtures, see 25.99 - manufacture of electric motors, see 27.11 - manufacture of electrical signalling, safety or traffic-control equipment, see 27.90 - manufacture of engines and turbines, see 28.11
#> 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 394                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - manufacture of parachutes, see 13.92 - manufacture of military ordinance and ammunition, see 25.40 - manufacture of telecommunication equipment for satellites, see 26.30 - manufacture of aircraft instrumentation and aeronautical instruments, see 26.51 - manufacture of air navigation systems, see 26.51 - manufacture of lighting equipment for aircraft, see 27.40 - manufacture of ignition parts and other electrical parts for internal combustion engines, see 27.90 - manufacture of pistons, piston rings and carburettors, see 28.11 - manufacture of aircraft launching gear, aircraft carrier catapults and related equipment, see 28.99
#> 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - manufacture of weapons and ammunitions, see 25.40
#> 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of bicycles, see 30.92 - manufacture of invalid carriages, see 30.92
#> 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - manufacture of bicycles with auxiliary motor, see 30.91 - manufacture of wheeled toys designed to be ridden, including plastic bicycles and tricycles, see 32.40
#> 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - works trucks, whether or not fitted with lifting or handling equipment, whether or not self-propelled, of the type used in factories (including hand trucks and wheelbarrows), see 28.22 - decorative restaurant carts, such as a desert cart, food wagons, see 31.01
#> 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - blackboards, see 28.23 - manufacture of car seats, see 29.32 - manufacture of railway car seats, see 30.20 - manufacture of aircraft seats, see 30.30 - manufacture of medical, surgical, dental or veterinary furniture, see 32.50 - modular furniture attachment and installation, partition installation, laboratory equipment furniture installation, see 43.32
#> 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of inflatable rubber mattresses, see 22.19 - manufacture of rubber waterbed mattresses, see 22.19
#> 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of pillows, pouffes, cushions, quilts and eiderdowns, see 13.92 - manufacture of furniture of ceramics, concrete and stone, see 23.42, 23.69, 23.70 - manufacture of lighting fittings or lamps, see 27.40 - manufacture of car seats, see 29.32 - manufacture of railway car seats, see 30.20 - manufacture of aircraft seats, see 30.30 - reupholstering and restoring of furniture, see 95.24
#> 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of non-metal watch bands (fabric, leather, plastic etc.), see 15.12 - manufacture of articles of base metal plated with precious metal (except imitation jewellery), see division 25 - manufacture of watchcases, see 26.52 - manufacture of (non-precious) metal watch bands, see 32.13 - manufacture of imitation jewellery, see 32.13 - repair of jewellery, see 95.25
#> 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - manufacture of jewellery made from precious metals or clad with precious metals, see 32.12 - manufacture of jewellery containing genuine gem stones, see 32.12 - manufacture of precious metal watch bands, see 32.12
#> 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - reproduction of pre-recorded sound and video tapes and discs, see 18.2 - manufacture of microphones, amplifiers, loudspeakers, headphones and similar components, see 26.40 - manufacture of record players, tape recorders and the like, see 26.40 - manufacture of toy musical instruments, see 32.40 - restoring of organs and other historic musical instruments, see 33.19 - publishing of pre-recorded sound and video tapes and discs, see 59.20 - piano tuning, see 95.29
#> 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 415                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - manufacture of boat sails, see 13.92 - manufacture of sports apparel, see 14.19 - manufacture of saddlery and harness, see 15.12 - manufacture of whips and riding crops, see 15.12 - manufacture of sports footwear, see 15.20 - manufacture of sporting weapons and ammunition, see 25.40 - manufacture of metal weights as used for weightlifting, see 25.99 - manufacture of sports vehicles other than toboggans and the like, see divisions 29 and 30 - manufacture of boats, see 30.12 - manufacture of billiard tables, see 32.40 - manufacture of ear and noise plugs (e.g. for swimming and noise protection), see 32.99 - repair of sporting goods, see 95.29
#> 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of video game consoles, see 26.40 - manufacture of bicycles, see 30.92 - manufacture of articles for jokes and novelties, see 32.99 - writing and publishing of software for video game consoles, see 58.21, 62.01
#> 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - manufacture of denture adhesives, see 20.42 - manufacture of medical impregnated wadding, dressings etc., see 21.20 - manufacture of electromedical and electrotherapeutic equipment, see 26.60 - manufacture of wheelchairs, see 30.92 - activities of opticians, see 47.78
#> 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - manufacture of lighter wicks, see 13.96 - manufacture of workwear and service apparel (e.g. laboratory coats, work overalls, uniforms), see 14.12 - manufacture of paper novelties, see 17.29
#> 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This division excludes: - cleaning of industrial machinery, see 81.22 - repair and maintenance of computers and communications equipment, see 95.1 - repair and maintenance of household goods, see 95.2
#> 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This group excludes: - rebuilding or remanufacture of machinery and equipment, see corresponding class in divisions 25-30 - cleaning of industrial machinery, see 81.22 - repair and maintenance of computers and communications equipment, see 95.1 - repair and maintenance of household goods, see 95.2
#> 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - sharpening of blades and saws, see 33.12 - repair of central heating systems etc., see 43.22 - repair of mechanical locking devices, safes etc., see 80.20
#> 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes:  - installation, repair and maintenance of furnaces and other heating equipment, see 43.22 - installation, repair and maintenance of elevators and escalators, see 43.29 - repair of computers, see 95.11
#> 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - repair and maintenance of photocopy machines, see 33.12 - repair and maintenance of computers and peripheral equipment, see 95.11 - repair and maintenance of computer projectors, see 95.11 - repair and maintenance of communication equipment, see 95.12 - repair and maintenance of commercial TV and video cameras, see 95.12 - repair of household-type video cameras, see 95.21 - repair of watches and clocks, see 95.25
#> 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - repair and maintenance of computers and peripheral computer equipment, see 95.11 - repair and maintenance of telecommunications equipment, see 95.12 - repair and maintenance of consumer electronics, see 95.21 - repair of watches and clocks, see 95.25
#> 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - factory conversion of ships, see 30.1 - repair of ship and boat engines, see 33.12 - ship scrapping, dismantling, see 38.31
#> 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - factory overhaul and rebuilding of aircraft, see 30.30 - factory overhaul of aircraft engines, see 30.30
#> 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - factory overhaul and rebuilding of locomotives and railroad cars, see 30.20 - repair and maintenance of military fighting vehicles, see 30.40 - repair and maintenance of shopping carts, see 33.11 - repair and maintenance of railway engines, see 33.12 - repair and maintenance of motorcycles, see 45.40 - repair of bicycles, see 95.29
#> 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - repair of household and office type furniture, furniture restoration, see 95.24 - repair of bicycles, see 95.29 - repair and alteration of clothing, see 95.29
#> 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - installation of elevators, escalators, automated doors, vacuum cleaning systems etc., see 43.29 - installation of doors, staircases, shop fittings, furniture etc., see 43.32 - installation (setting-up) of personal computers, see 62.09
#> 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - production of electricity through incineration of waste, see 38.21
#> 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - production of crude natural gas, see 06.20 - operation of coke ovens, see 19.10 - manufacture of refined petroleum products, see 19.20 - manufacture of industrial gases, see 20.11
#> 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - (long-distance) transportation of gases by pipelines, see 49.50
#> 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - wholesale of gaseous fuels, see 46.71 - retail sale of bottled gas, see 47.78 - direct selling of fuel, see 47.99
#> 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - operation of irrigation equipment for agricultural purposes, see 01.61 - treatment of wastewater in order to prevent pollution, see 37.00 - (long-distance) transport of water via pipelines, see 49.50
#> 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - decontamination of surface water and groundwater at the place of pollution, see 39.00 - cleaning and deblocking of drainpipes in buildings, see 43.22
#> 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - collection of hazardous waste, see 38.12 - operation of landfills for the disposal of non-hazardous waste, see 38.21 - operation of facilities where commingled recoverable materials such as paper, plastics, etc. are sorted into distinct categories, see 38.32
#> 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - remediation and clean up of contaminated buildings, mine sites, soil, ground water, e.g. asbestos removal, see 39.00
#> 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This group excludes: - treatment and disposal of wastewater, see 37.00 - materials recovery, see 38.3
#> 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - incineration and combustion of hazardous waste, see 38.22 - operation of facilities where commingled recoverable materials such as paper, plastics, used beverage cans and metals, are sorted into distinct categories, see 38.32 - decontamination, clean up of land, water; toxic material abatement, see 39.00
#> 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - reprocessing of nuclear fuels, see 20.13 - incineration of non-hazardous waste, see 38.21 - decontamination, clean up of land, water; toxic material abatement, see 39.00
#> 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - disposal of used goods such as refrigerators to eliminate harmful waste, see 38.22 - dismantling of automobiles, ships, computers, televisions and other equipment to obtain re-sell usable parts, see section G
#> 462                                                                                                                             This class excludes: - manufacture of new final products from (whether or not self-manufactured) secondary raw materials, such as spinning yarn from garnetted stock, making pulp from paper waste, retreading tyres or production of metal from metal scrap, see corresponding classes in section C (Manufacturing) - reprocessing of nuclear fuels, see 20.13 - remelting ferrous waste and scrap, see 24.10 - materials recovery during waste combustion or incineration process, see 38.2 - treatment and disposal of non-hazardous waste, see 38.21 - treatment of organic waste for disposal, including production of compost, see 38.21 - energy recovery during non-hazardous waste incineration process, see 38.21 - treatment and disposal of transition radioactive waste from hospitals etc., see 38.22 - treatment and disposal of toxic, contaminated waste, see 38.22 - wholesale of recoverable materials, see 46.77
#> 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - pest control in agriculture, see 01.61 - purification of water for water supply purposes, see 36.00 - treatment and disposal of non-hazardous waste, see 38.21 - treatment and disposal of hazardous waste, see 38.22 - outdoor sweeping and watering of streets etc., see 81.29
#> 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - construction of buildings, see 41.20 - architectural and engineering activities, see 71.1 - project management services related to building projects, see 71.1
#> 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - construction of industrial facilities, except buildings, see 42.99 - architectural and engineering activities, see 71.1 - project management for construction, see 71.1
#> 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - installation of street lighting and electrical signals, see 43.21 - architectural and engineering activities, see 71.1 - project management for construction, see 71.1
#> 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - installation of lighting and electrical signals, see 43.21 - architectural and engineering activities, see 71.1 - project management for construction, see 71.1
#> 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - installation of lighting and electrical signals, see 43.21 - architectural and engineering activities, see 71.1 - project management for construction, see 71.1
#> 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - project management activities related to civil engineering works, see 71.12
#> 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - project management activities related to civil engineering works, see 71.12
#> 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - project management activities related to civil engineering works, see 71.12
#> 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - installation of industrial machinery and equipment, see 33.20 - land subdivision without land improvement, see 68.10 - project management activities related to civil engineering works, see 71.12
#> 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - drilling of production oil or gas wells, see 06.10, 06.20 - decontamination of soil, see 39.00 - water well drilling, see 42.21 - shaft sinking, see 43.99
#> 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - drilling of production oil or gas wells, see 06.10, 06.20 - test drilling and boring support services during mining activities, see 09.90 - water well drilling, see 42.21 - shaft sinking, see 43.99 - oil and gas field exploration, geophysical, geological and seismic surveying, see 71.12
#> 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - construction of communications and power transmission lines, see 42.22 - monitoring and remote monitoring of electronic security systems, such as burglar alarms and fire alarms, including their installation and maintenance, see 80.20
#> 489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - installation of electric baseboard heating, see 43.21
#> 490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - installation of industrial machinery, see 33.20
#> 491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - installation of automated and revolving doors, see 43.29
#> 494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - installation of windows, see 43.32
#> 496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - activities of interior decoration designers, see 74.10 - general interior cleaning of buildings and other structures, see 81.21 - specialised interior and exterior cleaning of buildings, see 81.22
#> 497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental of construction machinery and equipment without operator, see 77.32
#> 499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental of construction machinery and equipment without operator, see 77.32
#> 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This division does not include the retail sale of automotive fuel and lubricating or cooling products or the rental of motor vehicles or motorcycles.
#> 501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - wholesale and retail sale of parts and accessories for motor vehicles, see 45.3 - rental of motor vehicles with driver, see 49.3 - rental of motor vehicles without driver, see 77.1
#> 503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - wholesale and retail sale of parts and accessories for motor vehicles, see 45.3 - rental of trucks with driver, see 49.41 - rental of trucks without driver, see 77.12
#> 504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - retreading and rebuilding of tyres, see 22.11
#> 506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - retail sale of automotive fuel, see 47.30
#> 509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - wholesale of bicycles and related parts and accessories, see 46.49 - retail sale of bicycles and related parts and accessories, see 47.64 - rental of motorcycles, see 77.39 - repair and maintenance of bicycles, see 95.29
#> 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes: - wholesale of motor vehicles, caravans and motorcycles, see 45.1, 45.4 - wholesale of motor vehicle accessories, see 45.31, 45.40 - rental and leasing of goods, see division 77 - packing of solid goods and bottling of liquid or gaseous goods, including blending and filtering for third parties, see 82.92
#> 512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - activities of commission agents for motor vehicles, see 45.1 - auctions of motor vehicles, see 45.1 - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99 - activities of insurance agents, see 66.22 - activities of real estate agents, see 68.31
#> 521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - wholesale trade in own name, see 46.2 to 46.9 - retail sale by non-store commission agents, see 47.99
#> 522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - wholesale of textile fibres, see 46.76
#> 524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - blending of wine or distilled spirits, see 11.01, 11.02
#> 532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - wholesale of textile fibres, see 46.76
#> 539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - wholesale of jewellery, see 46.48 - wholesale of leather goods, see 46.49 - wholesale of special sports equipment footwear such as ski boots, see 46.49
#> 540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - wholesale of blank audio and video tapes, CDs, DVDs, see 46.52 - wholesale of sewing machines, see 46.64
#> 541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - wholesale of office furniture, see 46.65
#> 545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - wholesale of electronic parts, see 46.52 - wholesale of office machinery and equipment, (except computers and peripheral equipment), see 46.66
#> 549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - wholesale of recorded audio and video tapes, CDs, DVDs, see 46.43 - wholesale of computers and computer peripheral equipment, see 46.51
#> 550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - wholesale of computers and peripheral equipment, see 46.51 - wholesale of electronic parts and telephone and communications equipment, see 46.52
#> 557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - wholesale of motor vehicles, trailers and caravans, see 45.1 - wholesale of motor vehicle parts, see 45.31 - wholesale of motorcycles, see 45.40 - wholesale of bicycles, see 46.49
#> 558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - wholesale of metal scrap, see 46.77
#> 561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 565                                                                                                                                                                                                                                                                                                                             This class excludes: - collection of household and industrial waste, see 38.1 - treatment of waste, not for a further use in an industrial manufacturing process, but with the aim of disposal, see 38.2 - processing of waste and scrap and other articles into secondary raw material when a real transformation process is required (the resulting secondary raw material is fit for direct use in an industrial manufacturing process, but is not a final product), see 38.3 - dismantling of automobiles, computers, televisions and other equipment for materials recovery, see 38.31 - ship-breaking, see 38.31 - shredding of cars by means of a mechanical process, see 38.32 - retail sale of second-hand goods, see 47.79
#> 566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 568                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This division excludes: - sale of farmers' products by farmers, see division 01 - manufacture and sale of goods, which is generally classified as manufacturing in divisions 10-32 - sale of motor vehicles, motorcycles and their parts, see division 45 - trade in cereal grains, ores, crude petroleum, industrial chemicals, iron and steel and industrial machinery and equipment, see division 46 - sale of food and drinks for consumption on the premises and sale of takeaway food, see division 56 - rental of personal and household goods to the general public, see group 77.2
#> 569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - wholesale of fuels, see 46.71 - retail sale of liquefied petroleum gas for cooking or heating, see 47.78
#> 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - retail sale of blank tapes and disks, see 47.63
#> 584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - retail sale of clothing, see 47.71
#> 588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - retail sale of cork floor tiles, see 47.52
#> 590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - retail sale of audio and video equipment, see 47.43
#> 591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - retail sale of antiques, see 47.79
#> 592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - retail sale of second-hand or antique books, see 47.79
#> 594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - retail sale of video game consoles, see 47.41 - retail sale of non-customised software, including video games, see 47.41
#> 598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - retail sale of textiles, see 47.51
#> 600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - retail sale of special sports equipment footwear such as ski boots, see 47.64
#> 601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - retail sale of second-hand motor vehicles, see 45.1 - activities of Internet auctions and other non-store auctions (retail), see 47.91, 47.99 - activities of pawn shops, see 64.92
#> 608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - retail sale of prepared food for immediate consumption (mobile food vendors), see 56.10
#> 610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - retail sale of motor vehicles and motor vehicles parts and accessories over the Internet, see groups 45.1, 45.3 - retail sale of motorcycles and motorcycles parts and accessories over the Internet, see 45.40
#> 614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - passenger transport by urban and suburban transit systems, see 49.31 - passenger terminal activities, see 52.21 - operation of railroad infrastructure; related activities such as switching and shunting, see 52.21 - operation of sleeping cars or dining cars when operated by separate units, see 55.90, 56.10
#> 618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - warehousing and storage, see 52.10 - freight terminal activities, see 52.21 - operation of railroad infrastructure; related activities such as switching and shunting, see 52.21 - cargo handling, see 52.24
#> 620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - passenger transport by interurban railways, see 49.10
#> 622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - ambulance transport, see 86.90
#> 624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - log hauling within the forest, as part of logging operations, see 02.40 - distribution of water by trucks, see 36.00 - operation of terminal facilities for handling freight, see 52.21 - crating and packing activities for transport, see 52.29 - post and courier activities, see 53.10, 53.20 - waste transport as integrated part of waste collection activities, see 38.11, 38.12
#> 626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - distribution of natural or manufactured gas, steam or water, see 35.22, 35.30, 36.00 - transport of liquids by trucks, see 49.41
#> 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes restaurant and bar activities on board ships (see 56.10, 56.30), if carried out by separate units.
#> 630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - restaurant and bar activities on board ships, when provided by separate units, see 56.10, 56.30 - rental of pleasure boats and yachts without crew, see 77.21 - rental of commercial ships or boats without crew, see 77.34 - operation of "floating casinos”, see 92.00
#> 632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - storage of freight, see 52.10 - harbour operation and other auxiliary activities such as docking, pilotage, lighterage, vessel salvage, see 52.22 - cargo handling, see 52.24 - rental of commercial ships or boats without crew, see 77.34
#> 634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - rental of pleasure boats and yachts without crew, see 77.21
#> 636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - cargo handling, see 52.24 - rental of commercial ships or boats without crew, see 77.34
#> 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This division excludes: - crop spraying, see 01.61 - repair and maintenance of aircraft or aircraft engines, see 33.16 - operation of airports, see 52.23 - aerial advertising (sky-writing), see 73.11 - aerial photography, see 74.20
#> 639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - rental of air transport equipment without operator, see 77.35
#> 641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - parking facilities for motor vehicles, see 52.21 - operation of self storage facilities, see 68.20 - rental of vacant space, see 68.20
#> 647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - cargo handling, see 52.24
#> 649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - cargo handling, see 52.24 - operation of marinas, see 93.29
#> 650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - cargo handling, see 52.24 - operation of flying schools, see 85.32, 85.53
#> 651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - operation of terminal facilities, see 52.21, 52.22 and 52.23
#> 652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - courier activities, see 53.20 - provision of motor, marine, aviation and transport insurance, see 65.12 - activities of travel agencies, see 79.11 - activities of tour operators, see 79.12 - tourist assistance activities, see 79.90
#> 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - postal giro, postal savings activities and money order activities, see 64.19
#> 656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - transport of freight, see (according to mode of transport) 49.20, 49.41, 50.20, 50.40, 51.21, 51.22
#> 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division excludes activities related to the provision of long-term primary residences in facilities such as apartments typically leased on a monthly or annual basis classified in real estate (section L).
#> 659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - provision of homes and furnished or unfurnished flats or apartments for more permanent use, typically on a monthly or annual basis, see division 68
#> 661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - provision of furnished short-stay accommodation with daily cleaning, bed-making, food and beverage services, see 55.10 - provision of homes and furnished or unfurnished flats or apartments for more permanent use, typically on a monthly or annual basis, see division 68
#> 663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - mountain refuge, cabins and hostels, see 55.20
#> 665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Excluded is the production of meals not fit for immediate consumption or not planned to be consumed immediately or of prepared food which is not considered to be a meal (see divisions 10: manufacture of food products and 11: manufacture of beverages). Also excluded is the sale of not self-manufactured food that is not considered to be a meal or of meals that are not fit for immediate consumption (see section G: wholesale and retail trade).
#> 668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - retail sale of food through vending machines, see 47.99 - concession operation of eating facilities, see 56.29
#> 670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of perishable food items for resale, see 10.89 - retail sale of perishable food items, see division 47
#> 672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - manufacture of perishable food items for resale, see 10.89 - retail sale of perishable food items, see division 47
#> 673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - reselling packaged/prepared beverages, see 47 - retail sale of beverages through vending machines, see 47.99 - operation of discotheques and dance floors without beverage serving, see 93.29
#> 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This division excludes the publishing of motion pictures, video tapes and movies on DVD or similar media (division 59) and the production of master copies for records or audio material (division 59). Also excluded is printing (see 18.11, 18.12) and the mass reproduction of recorded media (see 18.20).
#> 676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - production of globes, see 32.99 - publishing of advertising material, see 58.19 - publishing of music and sheet books, see 59.20 - activities of independent authors, see 90.03
#> 678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - news agency activities, see 63.91
#> 680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - publishing of advertising newspapers, see 58.13 - on-line provision of software (application hosting and application service provisioning), see 63.11
#> 682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - reproduction of software, see 18.20 - retail sale of non-customised software, see 47.41 - production of software not associated with publishing, including translation or adaptation of non-customised software for a particular market on a fee or contract basis, see 62.01 - on-line provision of software (application hosting and application service provisioning), see 63.11
#> 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 687                        This class excludes: - film duplicating (except reproduction of motion picture film for theatrical distribution) as well as audio and video tape, CD or DVD reproduction from master copies, see 18.20 - wholesale of recorded video tapes, CDs, DVDs, see 46.43 - wholesale of blank video tapes, CDs, see 46.52 - retail trade of video tapes, CDs, DVDs, see 47.63 - post-production activities, see 59.12 - sound recording and recording of books on tape, see 59.20 - television broadcasting, see 60.2 - creating a complete television channel programme, see 60.2 - film processing other than for the motion picture industry, see 74.20 - activities of personal theatrical or artistic agents or agencies, see 74.90 - rental of video tapes, DVDs to the general public, see 77.22 - real-time (i.e. simultaneous) closed captioning of live television performances, meetings, conferences, etc., see 82.99 - activities of own account actors, cartoonists, directors, stage designers and technical specialists, see 90.0
#> 688                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - film duplicating (except reproduction of motion picture film for theatrical distribution) as well as audio and video tape, CD or DVD reproduction from master copies, see 18.20 - wholesale of recorded video tapes, CDs, DVDs, see 46.43 - wholesale of blank video tapes, CDs, see 46.52 - retail trade of video tapes, CDs, DVDs, see 47.63 - film processing other than for the motion picture industry, see 74.20 - rental of video tapes, DVDs to the general public, see 77.22 - activities of own account actors, cartoonists, directors, stage designers and technical specialists, see 90.0
#> 689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - film duplicating as well as audio and video tape, CD or DVD reproduction from master copies, see 18.20 - wholesale of recorded video tapes and DVDs, see 46.43 - retail sale of recorded video tapes and DVDs, see 47.63
#> 690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This division excludes the distribution of cable and other subscription programming (see division 61).
#> 694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - the production of taped radio programming, see 59.20
#> 696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - the production of television programme elements (movies, documentaries, talk shows, commercials etc.) not associated with broadcasting, see 59.11 - the assembly of a package of channels and distribution of that package, without programming, see division 61
#> 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - telecommunications resellers, see 61.90
#> 701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - telecommunications resellers, see 61.90
#> 703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - telecommunications resellers, see 61.90
#> 705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - provision of Internet access by operators of telecommunications infrastructure, see 61.10, 61.20, 61.30
#> 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - publishing packaged software, see 58.29 - translation or adaptation of non-customised software for a particular market on own account, see 58.29 - planning and designing computer systems that integrate computer hardware, software and communication technologies, even though providing software might be an integral part, see 62.02
#> 710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - sale of computer hardware or software, see 46.51, 47.41 - installation of mainframe and similar computers, see 33.20 - installation (setting-up) of personal computers, see 62.09 - installation of software, computer disaster recovery, see 62.09
#> 711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - installation of mainframe and similar computers, see 33.20 - computer programming, see 62.01 - computer consultancy, see 62.02 - computer facilities management, see 62.03 - data processing and hosting, see 63.11
#> 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - activities where the supplier uses the computers only as a tool are classified according to the nature of the services rendered
#> 716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - publishing of books, newspapers, journals etc. via Internet, see division 58 - broadcasting via Internet, see division 60
#> 717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This group excludes: - activities of libraries and archives, see 91.01
#> 718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - activities of independent photojournalists, see 74.20 - activities of independent journalists, see 90.03
#> 719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - activities of call centres, see 82.20
#> 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - credit granting for house purchase by specialised non-depository institutions, see 64.92 - credit card transaction processing and settlement activities, see 66.19
#> 724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - active management of companies and enterprises, strategic planning and decision making of the company, see 70.10
#> 726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - funds and trusts that earn revenue from the sale of goods or services, see NACE class according to their principal activity - activities of holding companies, see 64.20 - pension funding, see 65.30 - management of funds, see 66.30
#> 728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This group excludes: - insurance and pension funding, see division 65
#> 729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - operational leasing, see division 77, according to type of goods leased
#> 730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - credit granting for house purchase by specialised institutions that also take deposits, see 64.19 - operational leasing, see division 77, according to type of goods leased - grant giving activities by membership organisations, see 94.99
#> 731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - financial leasing, see 64.91 - security dealing on behalf of others, see 66.12 - trade, leasing and rental of real estate property, see division 68 - bill collection without debt buying up, see 82.91 - grant-giving activities by membership organisations, see 94.99
#> 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - management of pension funds, see 66.30 - compulsory social security schemes, see 84.30
#> 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - dealing in markets on own account, see 64.99 - portfolio management, on a fee or contract basis, see 66.30
#> 744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - activities of insurance agents and brokers, see 66.22 - management of funds, see 66.30
#> 745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - appraisal of real estate, see 68.31 - appraisal for other purposes, see 74.90 - investigation activities, see 80.30
#> 747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - marine salvage activities, see 52.22
#> 749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - development of building projects for sale, see 41.10 - subdividing and improving of land, see 42.99
#> 754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - operation of hotels, suite hotels, holiday homes, rooming houses, campgrounds, trailer parks and other non-residential or short-stay accommodation places, see division 55
#> 756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - legal activities, see 69.10
#> 758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - legal activities, see 69.10 - facilities support services (combination of services such as general interior cleaning, maintenance and making minor repairs, trash disposal, guard and security), see 81.10 - management of facilities, such as military bases, prisons and other facilities (except computer facilities management), see 81.10
#> 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - law court activities, see 84.23
#> 762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - data-processing and tabulation activities, see 63.11 - management consultancy on accounting systems, budgetary control procedures, see 70.22 - bill collection, see 82.91
#> 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - activities of holding companies, not engaged in managing, see 64.20
#> 767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - advertising agencies and media representation services, see 73.1 - market research and public opinion polling, see 73.20
#> 769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - design of computer software for accounting systems, see 62.01 - legal advice and representation, see 69.10 - accounting, bookkeeping and auditing activities, tax consulting, see 69.20 - architectural and engineering advisory activities, see 71.11, 71.12 - environmental, agronomy, security and similar consulting activities, see 74.90 - executive placement or search consulting activities, see 78.10 - educational consulting activities, see 85.60
#> 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - activities of computer consultants, see 62.02, 62.09 - interior decorating, see 74.10
#> 773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - test drilling in connection with mining operations, see 09.10, 09.90 - development or publishing of associated software, see 58.29, 62.01 - activities of computer consultants, see 62.02, 62.09 - technical testing, see 71.20 - research and development activities related to engineering, see 72.19 - industrial design, see 74.10 - aerial photography, see 74.20
#> 774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - testing of animal specimens, see 75.00 - diagnostic imaging, testing and analysis of medical and dental specimens, see 86
#> 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This division excludes: - market research, see 73.20
#> 777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - market research, see 73.20
#> 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - publishing of advertising material, see 58.19 - production of commercial messages television and film, see 59.11 - production of commercial messages for radio, see 59.20 - market research, see 73.20 - advertising photography, see 74.20 - convention and trade show organisers, see 82.30 - mailing activities, see 82.19
#> 785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - sale of advertising time or space directly by owners of the time or space (publishers etc.), see the corresponding activity class  - public-relations activities, see 70.21
#> 786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - design and programming of web pages, see 62.01 - architectural design, see 71.11 - engineering design, i.e. applying physical laws and principles of engineering in the design of machines, materials, instruments, structures, processes and systems, see 71.12
#> 791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - processing motion picture film related to the motion picture and television industries, see 59.12 - cartographic and spatial information activities, see 71.12 - operation of coin-operated (self-service) photo machines, see 96.09
#> 793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 796                                                                                                                                                                    This class excludes: - wholesale of used motor vehicles by auctioning, see 45.1 - online auction activities (retail), see 47.91 - activities of auctioning houses (retail), see 47.79 - activities of real estate brokers, see 68.31 - bookkeeping activities, see 69.20 - activities of management consultants, see 70.22 - activities of architecture and engineering consultants, see 71.1 - industrial and machinery design, see 71.12, 74.10 - veterinary testing and control in relation to food production, see 71.20 - display of advertisement and other advertising design, see 73.11 - creation of stands and other display structures and sites, see 73.11 - activities of convention and trade show organisers, see 82.30 - activities of independent auctioneers, see 82.99 - administration of loyalty programmes, see 82.99 - consumer credit and debt counselling, see 88.99
#> 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - farm animal boarding activities without health care, see 01.62 - sheep shearing, see 01.62 - herd testing services, droving services, agistment services, poultry caponising, see 01.62 - activities related to artificial insemination, see 01.62 - pet animal boarding activities without health care, see 96.09
#> 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This division excludes: - financial leasing, see 64.91 - rental of real estate, see section L - rental of equipment with operator, see corresponding classes according to activities carried out with this equipment, e.g. construction (section F), transportation (section H)
#> 801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - rental or leasing of cars or light motor vehicles with driver, see 49.32, 49.39
#> 803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental or leasing of heavy goods vehicles or trucks with driver, see 49.41
#> 804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - rental of pleasure boats and sailing boats with crew, see 50.10, 50.30 - rental of video tapes and disks, see 77.22 - rental of other personal and household goods n.e.c., see 77.29 - rental of leisure and pleasure equipment as an integral part of recreational facilities, see 93.29
#> 806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental of cars, trucks, trailers and recreational vehicles without driver, see 77.1 - rental of recreational and sports goods, see 77.21 - rental of video tapes and disks, see 77.22 - rental of office furniture, see 77.33 - rental of motorcycles and caravans without driver, see 77.39 - provision of linen, work uniforms and related items by laundries, see 96.01
#> 808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental of agricultural and forestry machinery or equipment with operator, see 01.61, 02.40
#> 810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - rental of construction and civil engineering machinery or equipment with operator, see division 43
#> 811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - rental of water-transport equipment with operator, see division 50 - rental of pleasure boats, see 77.21
#> 813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - rental of air-transport equipment with operator, see division 51
#> 814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - rental of bicycles, see 77.21 - rental of agricultural and forestry machinery and equipment, see 77.31 - rental of construction and civil engineering machinery and equipment, see 77.32 - rental of office machinery and equipment, including computers, see 77.33
#> 815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - acquisition of rights and publishing, see divisions 58 and 59 - producing, reproducing and distributing copyrighted works (books, software, film), see divisions 58, 59 - leasing of real estate, see 68.20 - leasing of tangible products (assets), see groups 77.1, 77.2, 77.3
#> 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division excludes: - activities of agents for individual artists, see 74.90
#> 818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - activities of personal theatrical or artistic agents or agencies, see 74.90
#> 820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - provision of human resources functions together with supervision or running of the business, see the class in the respective economic activity of that business - provision of human resources to temporarily replace or supplement the workforce of the client, see 78.20
#> 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - the activities of travel agencies and tour operators, see 79.11, 79.12 - organisation and management of events such as meetings, conventions and conferences, see 82.30
#> 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - public order and safety activities, see 84.24
#> 833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - installation of security systems, such as burglar and fire alarms, without later monitoring, see 43.21 - retail sale of electrical security alarm systems, mechanical or electronic locking devices, safes and security vaults in specialised stores, without monitoring, installation or maintenance services, see 47.59 - security consultants, see 74.90 - public order and safety activities, see 84.24 - providing key duplication services, see 95.29
#> 835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 839                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - provision of only one of the support services (e.g. general interior cleaning services) or addressing only a single function (e.g. heating), see the appropriate class according to the service provided - provision of management and operating staff for the complete operation of a client's establishment, such as a hotel, restaurant, mine, or hospital, see the class of the unit operated - provision of on site management and operation of a client's computer systems and/or data processing facilities, see 62.03 - operation of correctional facilities on a contract or fee basis, see 84.23
#> 840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This group excludes: - agricultural pest control, see 01.61 - cleaning of new buildings immediately after construction, 43.39 - steam-cleaning, sand blasting and similar activities for building exteriors, see 43.99 - carpet and rug shampooing, drapery and curtain cleaning, see 96.01
#> 841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - specialised cleaning activities, such as window cleaning, chimney cleaning, cleaning of fireplaces, stoves, furnaces, incinerators, boilers, ventilation ducts, exhaust units, see 81.22
#> 842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - steam cleaning and blasting and similar activities for building exteriors, see 43.99
#> 843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - agriculture pest control, see 01.61 - automobile cleaning, car wash, see 45.20
#> 844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - commercial production and planting for commercial production of plants, trees, see divisions 01, 02 - tree nurseries and forest tree nurseries, see 01.30, 02.10 - keeping the land in good environmental condition for agricultural use, see 01.61 - construction activities for landscaping purposes, see section F - landscape design and architecture activities, see 71.11
#> 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Units classified in this division do not provide operating staff to carry out the complete operations of a business.
#> 847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Units classified in this group do not provide operating staff to carry out the complete operations of a business. Units engaged in one particular aspect of these activities are classified according to that particular activity.
#> 848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - provision of only one particular aspect of these activities, see class according to that particular activity - provision of the operating staff without supervision, see 78
#> 849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This class excludes: - printing of documents (offset printing, quick printing etc.), see 18.12 - pre-press services, see 18.13 - developing and organising mail advertising campaigns, see 73.11 - specialised stenotype services such as court reporting, see 82.99 - public stenography services, see 82.99
#> 850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - manufacture of soft drinks and production of mineral water, see 11.07 - packaging activities incidental to transport, see 52.29
#> 857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - provision of document transcription services, see 82.19 - providing film or tape captioning or subtitling services, see 59.12
#> 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - operation of government owned or occupied buildings, see 68.2, 68.3 - administration of research and development policies intended to increase personal well-being and of associated funds, see 84.12 - administration of research and development policies intended to improve economic performance and competitiveness, see 84.13 - administration of defence-related research and development policies and of associated funds, see 84.22 - operation of government archives, see 91.01
#> 861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes:  - sewage, refuse disposal and remediation activities, see divisions 37, 38, 39 - compulsory social security activities, see 84.30 - education activities, see section P - human health-related activities, see division 86 - museums and other cultural institutions, see division 91 - activities of government operated libraries and archives, see 91.01 - sporting or other recreational activities, see division 93
#> 862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - research and experimental development activities, see division 72
#> 863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - international disaster or conflict refugee services, see 88.99
#> 865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - research and experimental development activities, see division 72 - provision of military aid to foreign countries, see 84.21 - activities of military tribunals, see 84.23  - provision of supplies for domestic emergency use in case of peacetime disasters, see 84.24  - educational activities of military schools, colleges and academies, see 85.4 - activities of military hospitals, see 86.10
#> 866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - advice and representation in civil, criminal and other cases, see 69.10 - activities of prison schools, see division 85 - activities of prison hospitals, see 86.10
#> 867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - operation of police laboratories, see 71.20 - administration and operation of military armed forces, see 84.22
#> 868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - forestry fire protection and fire fighting services, see 02.40 - oil and gas field fire fighting, see 09.10 - fire fighting and fire prevention services at airports provided by non-specialised units, see 52.23
#> 869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - non-compulsory social security, see 65.30 - provision of welfare services and social work (without accommodation), see 88.10, 88.99
#> 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This class excludes: - child day-care activities, see 88.91
#> 874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - adult education as defined in 85.5 - child day-care activities, including day nurseries for pupils, see 88.91
#> 876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This group excludes: - adult education as defined in 85.5
#> 877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - technical and vocational higher education, see 85.4 - performing art instruction for recreation, hobby and self-development purposes, see 85.52 - automobile driving schools not intended for occupational drivers, see 85.53 - job training forming part of social work activities without accommodation, see 88.10, 88.99
#> 879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This group excludes: - adult education as defined in 85.5
#> 880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It excludes educational activities as outlined in groups 85.1-85.4, i.e. pre-primary education, primary education, secondary education or higher education.
#> 883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - cultural education, see 85.52
#> 884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - foreign language instruction, see 85.59
#> 885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - driving schools for occupational drivers, see 85.32
#> 886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - adult literacy programmes see 85.20 - general secondary education, see 85.31 - technical and vocational secondary education, see 85.32 - higher education, see 85.4
#> 887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - research and experimental development on social sciences and humanities, see 72.20
#> 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - laboratory testing and inspection of all types of materials and products, except medical, see 71.20 - veterinary activities, see 75.00 - health activities for military personnel in the field, see 84.22 - dental practice activities of a general or specialised nature, e.g. dentistry, endodontic and pediatric dentistry; oral pathology, orthodontic activities, see 86.23 - private consultants' services to inpatients, see 86.2 - medical laboratory testing, see 86.90 - ambulance transport activities, see 86.90
#> 892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - inpatient hospital activities, see 86.10 - paramedical activities such as those of midwives, nurses and physiotherapists, see 86.90
#> 894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - inpatient hospital activities, see 86.10 - activities of midwives, physiotherapists and other paramedical practitioners, see 86.90
#> 895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - production of artificial teeth, denture and prosthetic appliances by dental laboratories, see 32.50 - inpatient hospital activities, see 86.10 - activities of dental paramedical personnel such as dental hygienists, see 86.90
#> 896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - production of artificial teeth, denture and prosthetic appliances by dental laboratories, see 32.50 - transfer of patients, with neither equipment for lifesaving nor medical personnel, see divisions 49, 50, 51 - non-medical laboratory testing, see 71.20 - testing activities in the field of food hygiene, see 71.20 - hospital activities, see 86.10 - medical and dental practice activities, see 86.2 - residential nursing care facilities, see 87.10
#> 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This class excludes: - in-home services provided by health care professionals, see division 86 - activities of the homes for the elderly without or with minimal nursing care, see 87.30 - social work activities with accommodation, such as orphanages, children's boarding homes and hostels, temporary homeless shelters, see 87.90
#> 901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - mental hospitals, see 86.10 - social work activities with accommodation, such as temporary homeless shelters, see 87.90
#> 903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - activities of homes for the elderly with nursing care, see 87.10 - social work activities with accommodation where medical treatment or education are not important elements, see 87.90
#> 905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - funding and administration of compulsory social security programmes, see 84.30 - activities of nursing care facilities, see 87.10 - residential care activities for the elderly or disabled, see 87.30 - adoption activities, see 88.99 - short-term shelter activities for disaster victims, see 88.99
#> 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - funding and administration of compulsory social security programmes, see 84.30 - activities similar to those described in this class, but including accommodation, see 87.30 - day-care activities for disabled children, see 88.91
#> 910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - funding and administration of compulsory social security programmes, see 84.30 - activities similar to those described in this class, but including accommodation, see 87.90
#> 913                                                                                                                                                                                                                                                                                                                                                                                                                                 This division excludes: - the operation of museums of all kinds, botanical and zoological gardens; the preservation of historical sites; and nature reserves activities, see division 91  - gambling and betting activities, see division 92  - sports and amusement and recreation activities, see division 93.  Some units that provide cultural, entertainment or recreational facilities and services are classified in other divisions, such as: - motion picture and video production and distribution, see 59.11, 59.12, 59.13 - motion picture projection, see 59.14 - radio and television broadcasting, see 60.1, 60.2
#> 914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - activities of personal theatrical or artistic agents or agencies, see 74.90 - casting activities, see 78.10
#> 916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - activities of personal theatrical or artistic agents or agencies, see 74.90 - casting activities, see 78.10
#> 917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This class excludes: - manufacture of statues, other than artistic originals, see 23.70 - restoring of organs and other historical musical instruments, see 33.19 - motion picture and video production, see 59.11, 59.12 - restoring of furniture (except museum type restoration), see 95.24
#> 918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - operation of cinemas, see 59.14 - activities of ticket agencies, see 79.90 - operation of museums of all kinds, see 91.02
#> 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This division excludes: - sports and amusement and recreation activities such as the operation of bathing beaches and recreation parks, see division 93
#> 920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - activities of commercial art galleries, see 47.78 - restoration of works of art and museum collection objects, see 90.03 - activities of libraries and archives, see 91.01
#> 923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - renovation and restoration of historical sites and buildings, see section F
#> 924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - landscape and gardening activities, see 81.30 - operation of sport fishing and hunting preserves, see 93.19
#> 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Excluded from this division are dramatic arts, music and other arts and entertainment such as the production of live theatrical presentations, concerts and opera or dance productions and other stage productions, see division 90.
#> 929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - operation of ski lifts, see 49.39 - rental of recreation and sports equipment, see 77.21 - activities of fitness facilities, see 93.13 - park and beach activities, see 93.29
#> 931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This class excludes: - sports instruction by individual teachers, trainers, see 85.51 - operation of sports facilities, see 93.11 - organisation and operation of outdoor or indoor sports events for professionals or amateurs by sports clubs with their own facilities, see 93.11
#> 932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - sports instruction by individual teachers, trainers, see 85.51
#> 933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This class excludes: - rental of sports equipment, see 77.21 - activities of sport and game schools, see 85.51 - activities of sports instructors, teachers, coaches, see 85.51 - organisation and operation of outdoor or indoor sports events for professionals or amateurs by sports clubs with/without own facilities, see 93.11, 93.12 - park and beach activities, see 93.29
#> 934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This group excludes sports activities and dramatic arts, music and other arts and entertainment.
#> 935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - operation of teleferics, funiculars, ski and cable lifts, see 49.39 - fishing cruises, see 50.10, 50.30 - provision of space and facilities for short stay by visitors in recreational parks and forests and campgrounds, see 55.30 - trailer parks, recreational camps, hunting and fishing camps, campsites and campgrounds, see 55.30 - discotheques, see 56.30 - theatrical and circus groups, see 90.01
#> 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This class excludes: - activities of trade unions, see 94.20
#> 940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - education provided by these organisations, see division 85
#> 941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - education provided by such organisations, see division 85
#> 943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - education provided by such organisations, see division 85 - health activities by such organisations, see division 86 - social work activities by such organisations, see divisions 87, 88
#> 945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class excludes: - charitable activities like fund-raising aimed at social work, see 88.99 - activities of professional artistic groups or organisations, see 90.0 - activities of sports clubs, see 93.12 - activities of professional associations, see 94.12
#> 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Excluded from this division is the repair of medical and diagnostic imaging equipment, measuring and surveying instruments, laboratory instruments, radar and sonar equipment, see 33.13.
#> 948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - the repair and maintenance of carrier equipment modems, see 95.12
#> 950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - repair of hand held power tools, see 33.12 - repair of central air conditioning systems, see 43.22
#> 954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This class excludes: - repair of time clocks, time/date stamps, time locks and similar time recording devices, see 33.13
#> 957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This class excludes: - industrial engraving of metals, see 25.61 - repair of sporting and recreational guns, 33.11 - repair of hand held power tools, see 33.12 - restoring of organs and other historical musical instruments, see 33.19
#> 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This class excludes: - rental of clothing other than work uniforms, even if cleaning of these goods is an integral part of the activity, see 77.29 - repair and alteration of clothing, see 95.29
#> 961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This class excludes: - manufacture of wigs, see 32.99
#> 962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This class excludes: - cemetery gardening, see 81.30 - religious funeral service activities, see 94.91
#> 963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This class excludes: - medical massage and therapy, see 86.90 - activities of health, fitness and body-building clubs and facilities, see 93.13
#> 964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This class excludes: - veterinary activities, see 75.00 - coin-operated gambling machines, see 92.00 - coin-operated washing machines, see 96.01
#> 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This class excludes: - provision of services such as cooking, gardening etc. by independent service providers (companies or individuals), see according to type of service
#> 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This section excludes: - processing of the extracted materials, see section C (Manufacturing) - usage of the extracted materials without a further transformation for construction purposes, see section F (Construction) - bottling of natural spring and mineral waters at springs and wells, see 11.07 - crushing, grinding or otherwise treating certain earths, rocks and minerals not carried on in conjunction with mining and quarrying, see 23.9
#> 978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This section excludes the operation of water and sewerage utilities, see 36, 37. This section also excludes the (typically long-distance) transport of gas through pipelines.
#> 980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If these activities are carried out not for later sale of the construction projects, but for their operation (e.g. rental of space in these buildings, manufacturing activities in these plants), the unit would not be classified here, but according to its operational activity, i.e. real estate, manufacturing etc.
#> 982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This section excludes: - major repair or alteration of transport equipment, except motor vehicles, see group 33.1 - construction, maintenance and repair of roads, railways, harbours, airfields, see division 42 - maintenance and repair of motor vehicles, see 45.20 - rental of transport equipment without driver or operator, see 77.1, 77.3
#> 984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This section excludes the provision of long-term accommodation as primary residences, which is classified in real estate activities (section L). Also excluded is the preparation of food or drinks that are either not fit for immediate consumption or that are sold through independent distribution channels, i.e. through wholesale or retail trade activities. The preparation of these foods is classified in manufacturing (section C).
#> 985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#> 996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
#>     level segment1 Code1 segment2 Code2 segment3 Code3 segment4 Code4
#> 1       2        0     0        1    01     <NA>  <NA>     <NA>  <NA>
#> 2       3        0     0        1    01       .1  01.1     <NA>  <NA>
#> 3       4        0     0        1    01       .1  01.1        1 01.11
#> 4       4        0     0        1    01       .1  01.1        2 01.12
#> 5       4        0     0        1    01       .1  01.1        3 01.13
#> 6       4        0     0        1    01       .1  01.1        4 01.14
#> 7       4        0     0        1    01       .1  01.1        5 01.15
#> 8       4        0     0        1    01       .1  01.1        6 01.16
#> 9       4        0     0        1    01       .1  01.1        9 01.19
#> 10      3        0     0        1    01       .2  01.2     <NA>  <NA>
#> 11      4        0     0        1    01       .2  01.2        1 01.21
#> 12      4        0     0        1    01       .2  01.2        2 01.22
#> 13      4        0     0        1    01       .2  01.2        3 01.23
#> 14      4        0     0        1    01       .2  01.2        4 01.24
#> 15      4        0     0        1    01       .2  01.2        5 01.25
#> 16      4        0     0        1    01       .2  01.2        6 01.26
#> 17      4        0     0        1    01       .2  01.2        7 01.27
#> 18      4        0     0        1    01       .2  01.2        8 01.28
#> 19      4        0     0        1    01       .2  01.2        9 01.29
#> 20      3        0     0        1    01       .3  01.3     <NA>  <NA>
#> 21      4        0     0        1    01       .3  01.3        0 01.30
#> 22      3        0     0        1    01       .4  01.4     <NA>  <NA>
#> 23      4        0     0        1    01       .4  01.4        1 01.41
#> 24      4        0     0        1    01       .4  01.4        2 01.42
#> 25      4        0     0        1    01       .4  01.4        3 01.43
#> 26      4        0     0        1    01       .4  01.4        4 01.44
#> 27      4        0     0        1    01       .4  01.4        5 01.45
#> 28      4        0     0        1    01       .4  01.4        6 01.46
#> 29      4        0     0        1    01       .4  01.4        7 01.47
#> 30      4        0     0        1    01       .4  01.4        9 01.49
#> 31      3        0     0        1    01       .5  01.5     <NA>  <NA>
#> 32      4        0     0        1    01       .5  01.5        0 01.50
#> 33      3        0     0        1    01       .6  01.6     <NA>  <NA>
#> 34      4        0     0        1    01       .6  01.6        1 01.61
#> 35      4        0     0        1    01       .6  01.6        2 01.62
#> 36      4        0     0        1    01       .6  01.6        3 01.63
#> 37      4        0     0        1    01       .6  01.6        4 01.64
#> 38      3        0     0        1    01       .7  01.7     <NA>  <NA>
#> 39      4        0     0        1    01       .7  01.7        0 01.70
#> 40      2        0     0        2    02     <NA>  <NA>     <NA>  <NA>
#> 41      3        0     0        2    02       .1  02.1     <NA>  <NA>
#> 42      4        0     0        2    02       .1  02.1        0 02.10
#> 43      3        0     0        2    02       .2  02.2     <NA>  <NA>
#> 44      4        0     0        2    02       .2  02.2        0 02.20
#> 45      3        0     0        2    02       .3  02.3     <NA>  <NA>
#> 46      4        0     0        2    02       .3  02.3        0 02.30
#> 47      3        0     0        2    02       .4  02.4     <NA>  <NA>
#> 48      4        0     0        2    02       .4  02.4        0 02.40
#> 49      2        0     0        3    03     <NA>  <NA>     <NA>  <NA>
#> 50      3        0     0        3    03       .1  03.1     <NA>  <NA>
#> 51      4        0     0        3    03       .1  03.1        1 03.11
#> 52      4        0     0        3    03       .1  03.1        2 03.12
#> 53      3        0     0        3    03       .2  03.2     <NA>  <NA>
#> 54      4        0     0        3    03       .2  03.2        1 03.21
#> 55      4        0     0        3    03       .2  03.2        2 03.22
#> 56      2        0     0        5    05     <NA>  <NA>     <NA>  <NA>
#> 57      3        0     0        5    05       .1  05.1     <NA>  <NA>
#> 58      4        0     0        5    05       .1  05.1        0 05.10
#> 59      3        0     0        5    05       .2  05.2     <NA>  <NA>
#> 60      4        0     0        5    05       .2  05.2        0 05.20
#> 61      2        0     0        6    06     <NA>  <NA>     <NA>  <NA>
#> 62      3        0     0        6    06       .1  06.1     <NA>  <NA>
#> 63      4        0     0        6    06       .1  06.1        0 06.10
#> 64      3        0     0        6    06       .2  06.2     <NA>  <NA>
#> 65      4        0     0        6    06       .2  06.2        0 06.20
#> 66      2        0     0        7    07     <NA>  <NA>     <NA>  <NA>
#> 67      3        0     0        7    07       .1  07.1     <NA>  <NA>
#> 68      4        0     0        7    07       .1  07.1        0 07.10
#> 69      3        0     0        7    07       .2  07.2     <NA>  <NA>
#> 70      4        0     0        7    07       .2  07.2        1 07.21
#> 71      4        0     0        7    07       .2  07.2        9 07.29
#> 72      2        0     0        8    08     <NA>  <NA>     <NA>  <NA>
#> 73      3        0     0        8    08       .1  08.1     <NA>  <NA>
#> 74      4        0     0        8    08       .1  08.1        1 08.11
#> 75      4        0     0        8    08       .1  08.1        2 08.12
#> 76      3        0     0        8    08       .9  08.9     <NA>  <NA>
#> 77      4        0     0        8    08       .9  08.9        1 08.91
#> 78      4        0     0        8    08       .9  08.9        2 08.92
#> 79      4        0     0        8    08       .9  08.9        3 08.93
#> 80      4        0     0        8    08       .9  08.9        9 08.99
#> 81      2        0     0        9    09     <NA>  <NA>     <NA>  <NA>
#> 82      3        0     0        9    09       .1  09.1     <NA>  <NA>
#> 83      4        0     0        9    09       .1  09.1        0 09.10
#> 84      3        0     0        9    09       .9  09.9     <NA>  <NA>
#> 85      4        0     0        9    09       .9  09.9        0 09.90
#> 86      2        1     1        0    10     <NA>  <NA>     <NA>  <NA>
#> 87      3        1     1        0    10       .1  10.1     <NA>  <NA>
#> 88      4        1     1        0    10       .1  10.1        1 10.11
#> 89      4        1     1        0    10       .1  10.1        2 10.12
#> 90      4        1     1        0    10       .1  10.1        3 10.13
#> 91      3        1     1        0    10       .2  10.2     <NA>  <NA>
#> 92      4        1     1        0    10       .2  10.2        0 10.20
#> 93      3        1     1        0    10       .3  10.3     <NA>  <NA>
#> 94      4        1     1        0    10       .3  10.3        1 10.31
#> 95      4        1     1        0    10       .3  10.3        2 10.32
#> 96      4        1     1        0    10       .3  10.3        9 10.39
#> 97      3        1     1        0    10       .4  10.4     <NA>  <NA>
#> 98      4        1     1        0    10       .4  10.4        1 10.41
#> 99      4        1     1        0    10       .4  10.4        2 10.42
#> 100     3        1     1        0    10       .5  10.5     <NA>  <NA>
#> 101     4        1     1        0    10       .5  10.5        1 10.51
#> 102     4        1     1        0    10       .5  10.5        2 10.52
#> 103     3        1     1        0    10       .6  10.6     <NA>  <NA>
#> 104     4        1     1        0    10       .6  10.6        1 10.61
#> 105     4        1     1        0    10       .6  10.6        2 10.62
#> 106     3        1     1        0    10       .7  10.7     <NA>  <NA>
#> 107     4        1     1        0    10       .7  10.7        1 10.71
#> 108     4        1     1        0    10       .7  10.7        2 10.72
#> 109     4        1     1        0    10       .7  10.7        3 10.73
#> 110     3        1     1        0    10       .8  10.8     <NA>  <NA>
#> 111     4        1     1        0    10       .8  10.8        1 10.81
#> 112     4        1     1        0    10       .8  10.8        2 10.82
#> 113     4        1     1        0    10       .8  10.8        3 10.83
#> 114     4        1     1        0    10       .8  10.8        4 10.84
#> 115     4        1     1        0    10       .8  10.8        5 10.85
#> 116     4        1     1        0    10       .8  10.8        6 10.86
#> 117     4        1     1        0    10       .8  10.8        9 10.89
#> 118     3        1     1        0    10       .9  10.9     <NA>  <NA>
#> 119     4        1     1        0    10       .9  10.9        1 10.91
#> 120     4        1     1        0    10       .9  10.9        2 10.92
#> 121     2        1     1        1    11     <NA>  <NA>     <NA>  <NA>
#> 122     3        1     1        1    11       .0  11.0     <NA>  <NA>
#> 123     4        1     1        1    11       .0  11.0        1 11.01
#> 124     4        1     1        1    11       .0  11.0        2 11.02
#> 125     4        1     1        1    11       .0  11.0        3 11.03
#> 126     4        1     1        1    11       .0  11.0        4 11.04
#> 127     4        1     1        1    11       .0  11.0        5 11.05
#> 128     4        1     1        1    11       .0  11.0        6 11.06
#> 129     4        1     1        1    11       .0  11.0        7 11.07
#> 130     2        1     1        2    12     <NA>  <NA>     <NA>  <NA>
#> 131     3        1     1        2    12       .0  12.0     <NA>  <NA>
#> 132     4        1     1        2    12       .0  12.0        0 12.00
#> 133     2        1     1        3    13     <NA>  <NA>     <NA>  <NA>
#> 134     3        1     1        3    13       .1  13.1     <NA>  <NA>
#> 135     4        1     1        3    13       .1  13.1        0 13.10
#> 136     3        1     1        3    13       .2  13.2     <NA>  <NA>
#> 137     4        1     1        3    13       .2  13.2        0 13.20
#> 138     3        1     1        3    13       .3  13.3     <NA>  <NA>
#> 139     4        1     1        3    13       .3  13.3        0 13.30
#> 140     3        1     1        3    13       .9  13.9     <NA>  <NA>
#> 141     4        1     1        3    13       .9  13.9        1 13.91
#> 142     4        1     1        3    13       .9  13.9        2 13.92
#> 143     4        1     1        3    13       .9  13.9        3 13.93
#> 144     4        1     1        3    13       .9  13.9        4 13.94
#> 145     4        1     1        3    13       .9  13.9        5 13.95
#> 146     4        1     1        3    13       .9  13.9        6 13.96
#> 147     4        1     1        3    13       .9  13.9        9 13.99
#> 148     2        1     1        4    14     <NA>  <NA>     <NA>  <NA>
#> 149     3        1     1        4    14       .1  14.1     <NA>  <NA>
#> 150     4        1     1        4    14       .1  14.1        1 14.11
#> 151     4        1     1        4    14       .1  14.1        2 14.12
#> 152     4        1     1        4    14       .1  14.1        3 14.13
#> 153     4        1     1        4    14       .1  14.1        4 14.14
#> 154     4        1     1        4    14       .1  14.1        9 14.19
#> 155     3        1     1        4    14       .2  14.2     <NA>  <NA>
#> 156     4        1     1        4    14       .2  14.2        0 14.20
#> 157     3        1     1        4    14       .3  14.3     <NA>  <NA>
#> 158     4        1     1        4    14       .3  14.3        1 14.31
#> 159     4        1     1        4    14       .3  14.3        9 14.39
#> 160     2        1     1        5    15     <NA>  <NA>     <NA>  <NA>
#> 161     3        1     1        5    15       .1  15.1     <NA>  <NA>
#> 162     4        1     1        5    15       .1  15.1        1 15.11
#> 163     4        1     1        5    15       .1  15.1        2 15.12
#> 164     3        1     1        5    15       .2  15.2     <NA>  <NA>
#> 165     4        1     1        5    15       .2  15.2        0 15.20
#> 166     2        1     1        6    16     <NA>  <NA>     <NA>  <NA>
#> 167     3        1     1        6    16       .1  16.1     <NA>  <NA>
#> 168     4        1     1        6    16       .1  16.1        0 16.10
#> 169     3        1     1        6    16       .2  16.2     <NA>  <NA>
#> 170     4        1     1        6    16       .2  16.2        1 16.21
#> 171     4        1     1        6    16       .2  16.2        2 16.22
#> 172     4        1     1        6    16       .2  16.2        3 16.23
#> 173     4        1     1        6    16       .2  16.2        4 16.24
#> 174     4        1     1        6    16       .2  16.2        9 16.29
#> 175     2        1     1        7    17     <NA>  <NA>     <NA>  <NA>
#> 176     3        1     1        7    17       .1  17.1     <NA>  <NA>
#> 177     4        1     1        7    17       .1  17.1        1 17.11
#> 178     4        1     1        7    17       .1  17.1        2 17.12
#> 179     3        1     1        7    17       .2  17.2     <NA>  <NA>
#> 180     4        1     1        7    17       .2  17.2        1 17.21
#> 181     4        1     1        7    17       .2  17.2        2 17.22
#> 182     4        1     1        7    17       .2  17.2        3 17.23
#> 183     4        1     1        7    17       .2  17.2        4 17.24
#> 184     4        1     1        7    17       .2  17.2        9 17.29
#> 185     2        1     1        8    18     <NA>  <NA>     <NA>  <NA>
#> 186     3        1     1        8    18       .1  18.1     <NA>  <NA>
#> 187     4        1     1        8    18       .1  18.1        1 18.11
#> 188     4        1     1        8    18       .1  18.1        2 18.12
#> 189     4        1     1        8    18       .1  18.1        3 18.13
#> 190     4        1     1        8    18       .1  18.1        4 18.14
#> 191     3        1     1        8    18       .2  18.2     <NA>  <NA>
#> 192     4        1     1        8    18       .2  18.2        0 18.20
#> 193     2        1     1        9    19     <NA>  <NA>     <NA>  <NA>
#> 194     3        1     1        9    19       .1  19.1     <NA>  <NA>
#> 195     4        1     1        9    19       .1  19.1        0 19.10
#> 196     3        1     1        9    19       .2  19.2     <NA>  <NA>
#> 197     4        1     1        9    19       .2  19.2        0 19.20
#> 198     2        2     2        0    20     <NA>  <NA>     <NA>  <NA>
#> 199     3        2     2        0    20       .1  20.1     <NA>  <NA>
#> 200     4        2     2        0    20       .1  20.1        1 20.11
#> 201     4        2     2        0    20       .1  20.1        2 20.12
#> 202     4        2     2        0    20       .1  20.1        3 20.13
#> 203     4        2     2        0    20       .1  20.1        4 20.14
#> 204     4        2     2        0    20       .1  20.1        5 20.15
#> 205     4        2     2        0    20       .1  20.1        6 20.16
#> 206     4        2     2        0    20       .1  20.1        7 20.17
#> 207     3        2     2        0    20       .2  20.2     <NA>  <NA>
#> 208     4        2     2        0    20       .2  20.2        0 20.20
#> 209     3        2     2        0    20       .3  20.3     <NA>  <NA>
#> 210     4        2     2        0    20       .3  20.3        0 20.30
#> 211     3        2     2        0    20       .4  20.4     <NA>  <NA>
#> 212     4        2     2        0    20       .4  20.4        1 20.41
#> 213     4        2     2        0    20       .4  20.4        2 20.42
#> 214     3        2     2        0    20       .5  20.5     <NA>  <NA>
#> 215     4        2     2        0    20       .5  20.5        1 20.51
#> 216     4        2     2        0    20       .5  20.5        2 20.52
#> 217     4        2     2        0    20       .5  20.5        3 20.53
#> 218     4        2     2        0    20       .5  20.5        9 20.59
#> 219     3        2     2        0    20       .6  20.6     <NA>  <NA>
#> 220     4        2     2        0    20       .6  20.6        0 20.60
#> 221     2        2     2        1    21     <NA>  <NA>     <NA>  <NA>
#> 222     3        2     2        1    21       .1  21.1     <NA>  <NA>
#> 223     4        2     2        1    21       .1  21.1        0 21.10
#> 224     3        2     2        1    21       .2  21.2     <NA>  <NA>
#> 225     4        2     2        1    21       .2  21.2        0 21.20
#> 226     2        2     2        2    22     <NA>  <NA>     <NA>  <NA>
#> 227     3        2     2        2    22       .1  22.1     <NA>  <NA>
#> 228     4        2     2        2    22       .1  22.1        1 22.11
#> 229     4        2     2        2    22       .1  22.1        9 22.19
#> 230     3        2     2        2    22       .2  22.2     <NA>  <NA>
#> 231     4        2     2        2    22       .2  22.2        1 22.21
#> 232     4        2     2        2    22       .2  22.2        2 22.22
#> 233     4        2     2        2    22       .2  22.2        3 22.23
#> 234     4        2     2        2    22       .2  22.2        9 22.29
#> 235     2        2     2        3    23     <NA>  <NA>     <NA>  <NA>
#> 236     3        2     2        3    23       .1  23.1     <NA>  <NA>
#> 237     4        2     2        3    23       .1  23.1        1 23.11
#> 238     4        2     2        3    23       .1  23.1        2 23.12
#> 239     4        2     2        3    23       .1  23.1        3 23.13
#> 240     4        2     2        3    23       .1  23.1        4 23.14
#> 241     4        2     2        3    23       .1  23.1        9 23.19
#> 242     3        2     2        3    23       .2  23.2     <NA>  <NA>
#> 243     4        2     2        3    23       .2  23.2        0 23.20
#> 244     3        2     2        3    23       .3  23.3     <NA>  <NA>
#> 245     4        2     2        3    23       .3  23.3        1 23.31
#> 246     4        2     2        3    23       .3  23.3        2 23.32
#> 247     3        2     2        3    23       .4  23.4     <NA>  <NA>
#> 248     4        2     2        3    23       .4  23.4        1 23.41
#> 249     4        2     2        3    23       .4  23.4        2 23.42
#> 250     4        2     2        3    23       .4  23.4        3 23.43
#> 251     4        2     2        3    23       .4  23.4        4 23.44
#> 252     4        2     2        3    23       .4  23.4        9 23.49
#> 253     3        2     2        3    23       .5  23.5     <NA>  <NA>
#> 254     4        2     2        3    23       .5  23.5        1 23.51
#> 255     4        2     2        3    23       .5  23.5        2 23.52
#> 256     3        2     2        3    23       .6  23.6     <NA>  <NA>
#> 257     4        2     2        3    23       .6  23.6        1 23.61
#> 258     4        2     2        3    23       .6  23.6        2 23.62
#> 259     4        2     2        3    23       .6  23.6        3 23.63
#> 260     4        2     2        3    23       .6  23.6        4 23.64
#> 261     4        2     2        3    23       .6  23.6        5 23.65
#> 262     4        2     2        3    23       .6  23.6        9 23.69
#> 263     3        2     2        3    23       .7  23.7     <NA>  <NA>
#> 264     4        2     2        3    23       .7  23.7        0 23.70
#> 265     3        2     2        3    23       .9  23.9     <NA>  <NA>
#> 266     4        2     2        3    23       .9  23.9        1 23.91
#> 267     4        2     2        3    23       .9  23.9        9 23.99
#> 268     2        2     2        4    24     <NA>  <NA>     <NA>  <NA>
#> 269     3        2     2        4    24       .1  24.1     <NA>  <NA>
#> 270     4        2     2        4    24       .1  24.1        0 24.10
#> 271     3        2     2        4    24       .2  24.2     <NA>  <NA>
#> 272     4        2     2        4    24       .2  24.2        0 24.20
#> 273     3        2     2        4    24       .3  24.3     <NA>  <NA>
#> 274     4        2     2        4    24       .3  24.3        1 24.31
#> 275     4        2     2        4    24       .3  24.3        2 24.32
#> 276     4        2     2        4    24       .3  24.3        3 24.33
#> 277     4        2     2        4    24       .3  24.3        4 24.34
#> 278     3        2     2        4    24       .4  24.4     <NA>  <NA>
#> 279     4        2     2        4    24       .4  24.4        1 24.41
#> 280     4        2     2        4    24       .4  24.4        2 24.42
#> 281     4        2     2        4    24       .4  24.4        3 24.43
#> 282     4        2     2        4    24       .4  24.4        4 24.44
#> 283     4        2     2        4    24       .4  24.4        5 24.45
#> 284     4        2     2        4    24       .4  24.4        6 24.46
#> 285     3        2     2        4    24       .5  24.5     <NA>  <NA>
#> 286     4        2     2        4    24       .5  24.5        1 24.51
#> 287     4        2     2        4    24       .5  24.5        2 24.52
#> 288     4        2     2        4    24       .5  24.5        3 24.53
#> 289     4        2     2        4    24       .5  24.5        4 24.54
#> 290     2        2     2        5    25     <NA>  <NA>     <NA>  <NA>
#> 291     3        2     2        5    25       .1  25.1     <NA>  <NA>
#> 292     4        2     2        5    25       .1  25.1        1 25.11
#> 293     4        2     2        5    25       .1  25.1        2 25.12
#> 294     3        2     2        5    25       .2  25.2     <NA>  <NA>
#> 295     4        2     2        5    25       .2  25.2        1 25.21
#> 296     4        2     2        5    25       .2  25.2        9 25.29
#> 297     3        2     2        5    25       .3  25.3     <NA>  <NA>
#> 298     4        2     2        5    25       .3  25.3        0 25.30
#> 299     3        2     2        5    25       .4  25.4     <NA>  <NA>
#> 300     4        2     2        5    25       .4  25.4        0 25.40
#> 301     3        2     2        5    25       .5  25.5     <NA>  <NA>
#> 302     4        2     2        5    25       .5  25.5        0 25.50
#> 303     3        2     2        5    25       .6  25.6     <NA>  <NA>
#> 304     4        2     2        5    25       .6  25.6        1 25.61
#> 305     4        2     2        5    25       .6  25.6        2 25.62
#> 306     3        2     2        5    25       .7  25.7     <NA>  <NA>
#> 307     4        2     2        5    25       .7  25.7        1 25.71
#> 308     4        2     2        5    25       .7  25.7        2 25.72
#> 309     4        2     2        5    25       .7  25.7        3 25.73
#> 310     3        2     2        5    25       .9  25.9     <NA>  <NA>
#> 311     4        2     2        5    25       .9  25.9        1 25.91
#> 312     4        2     2        5    25       .9  25.9        2 25.92
#> 313     4        2     2        5    25       .9  25.9        3 25.93
#> 314     4        2     2        5    25       .9  25.9        4 25.94
#> 315     4        2     2        5    25       .9  25.9        9 25.99
#> 316     2        2     2        6    26     <NA>  <NA>     <NA>  <NA>
#> 317     3        2     2        6    26       .1  26.1     <NA>  <NA>
#> 318     4        2     2        6    26       .1  26.1        1 26.11
#> 319     4        2     2        6    26       .1  26.1        2 26.12
#> 320     3        2     2        6    26       .2  26.2     <NA>  <NA>
#> 321     4        2     2        6    26       .2  26.2        0 26.20
#> 322     3        2     2        6    26       .3  26.3     <NA>  <NA>
#> 323     4        2     2        6    26       .3  26.3        0 26.30
#> 324     3        2     2        6    26       .4  26.4     <NA>  <NA>
#> 325     4        2     2        6    26       .4  26.4        0 26.40
#> 326     3        2     2        6    26       .5  26.5     <NA>  <NA>
#> 327     4        2     2        6    26       .5  26.5        1 26.51
#> 328     4        2     2        6    26       .5  26.5        2 26.52
#> 329     3        2     2        6    26       .6  26.6     <NA>  <NA>
#> 330     4        2     2        6    26       .6  26.6        0 26.60
#> 331     3        2     2        6    26       .7  26.7     <NA>  <NA>
#> 332     4        2     2        6    26       .7  26.7        0 26.70
#> 333     3        2     2        6    26       .8  26.8     <NA>  <NA>
#> 334     4        2     2        6    26       .8  26.8        0 26.80
#> 335     2        2     2        7    27     <NA>  <NA>     <NA>  <NA>
#> 336     3        2     2        7    27       .1  27.1     <NA>  <NA>
#> 337     4        2     2        7    27       .1  27.1        1 27.11
#> 338     4        2     2        7    27       .1  27.1        2 27.12
#> 339     3        2     2        7    27       .2  27.2     <NA>  <NA>
#> 340     4        2     2        7    27       .2  27.2        0 27.20
#> 341     3        2     2        7    27       .3  27.3     <NA>  <NA>
#> 342     4        2     2        7    27       .3  27.3        1 27.31
#> 343     4        2     2        7    27       .3  27.3        2 27.32
#> 344     4        2     2        7    27       .3  27.3        3 27.33
#> 345     3        2     2        7    27       .4  27.4     <NA>  <NA>
#> 346     4        2     2        7    27       .4  27.4        0 27.40
#> 347     3        2     2        7    27       .5  27.5     <NA>  <NA>
#> 348     4        2     2        7    27       .5  27.5        1 27.51
#> 349     4        2     2        7    27       .5  27.5        2 27.52
#> 350     3        2     2        7    27       .9  27.9     <NA>  <NA>
#> 351     4        2     2        7    27       .9  27.9        0 27.90
#> 352     2        2     2        8    28     <NA>  <NA>     <NA>  <NA>
#> 353     3        2     2        8    28       .1  28.1     <NA>  <NA>
#> 354     4        2     2        8    28       .1  28.1        1 28.11
#> 355     4        2     2        8    28       .1  28.1        2 28.12
#> 356     4        2     2        8    28       .1  28.1        3 28.13
#> 357     4        2     2        8    28       .1  28.1        4 28.14
#> 358     4        2     2        8    28       .1  28.1        5 28.15
#> 359     3        2     2        8    28       .2  28.2     <NA>  <NA>
#> 360     4        2     2        8    28       .2  28.2        1 28.21
#> 361     4        2     2        8    28       .2  28.2        2 28.22
#> 362     4        2     2        8    28       .2  28.2        3 28.23
#> 363     4        2     2        8    28       .2  28.2        4 28.24
#> 364     4        2     2        8    28       .2  28.2        5 28.25
#> 365     4        2     2        8    28       .2  28.2        9 28.29
#> 366     3        2     2        8    28       .3  28.3     <NA>  <NA>
#> 367     4        2     2        8    28       .3  28.3        0 28.30
#> 368     3        2     2        8    28       .4  28.4     <NA>  <NA>
#> 369     4        2     2        8    28       .4  28.4        1 28.41
#> 370     4        2     2        8    28       .4  28.4        9 28.49
#> 371     3        2     2        8    28       .9  28.9     <NA>  <NA>
#> 372     4        2     2        8    28       .9  28.9        1 28.91
#> 373     4        2     2        8    28       .9  28.9        2 28.92
#> 374     4        2     2        8    28       .9  28.9        3 28.93
#> 375     4        2     2        8    28       .9  28.9        4 28.94
#> 376     4        2     2        8    28       .9  28.9        5 28.95
#> 377     4        2     2        8    28       .9  28.9        6 28.96
#> 378     4        2     2        8    28       .9  28.9        9 28.99
#> 379     2        2     2        9    29     <NA>  <NA>     <NA>  <NA>
#> 380     3        2     2        9    29       .1  29.1     <NA>  <NA>
#> 381     4        2     2        9    29       .1  29.1        0 29.10
#> 382     3        2     2        9    29       .2  29.2     <NA>  <NA>
#> 383     4        2     2        9    29       .2  29.2        0 29.20
#> 384     3        2     2        9    29       .3  29.3     <NA>  <NA>
#> 385     4        2     2        9    29       .3  29.3        1 29.31
#> 386     4        2     2        9    29       .3  29.3        2 29.32
#> 387     2        3     3        0    30     <NA>  <NA>     <NA>  <NA>
#> 388     3        3     3        0    30       .1  30.1     <NA>  <NA>
#> 389     4        3     3        0    30       .1  30.1        1 30.11
#> 390     4        3     3        0    30       .1  30.1        2 30.12
#> 391     3        3     3        0    30       .2  30.2     <NA>  <NA>
#> 392     4        3     3        0    30       .2  30.2        0 30.20
#> 393     3        3     3        0    30       .3  30.3     <NA>  <NA>
#> 394     4        3     3        0    30       .3  30.3        0 30.30
#> 395     3        3     3        0    30       .4  30.4     <NA>  <NA>
#> 396     4        3     3        0    30       .4  30.4        0 30.40
#> 397     3        3     3        0    30       .9  30.9     <NA>  <NA>
#> 398     4        3     3        0    30       .9  30.9        1 30.91
#> 399     4        3     3        0    30       .9  30.9        2 30.92
#> 400     4        3     3        0    30       .9  30.9        9 30.99
#> 401     2        3     3        1    31     <NA>  <NA>     <NA>  <NA>
#> 402     3        3     3        1    31       .0  31.0     <NA>  <NA>
#> 403     4        3     3        1    31       .0  31.0        1 31.01
#> 404     4        3     3        1    31       .0  31.0        2 31.02
#> 405     4        3     3        1    31       .0  31.0        3 31.03
#> 406     4        3     3        1    31       .0  31.0        9 31.09
#> 407     2        3     3        2    32     <NA>  <NA>     <NA>  <NA>
#> 408     3        3     3        2    32       .1  32.1     <NA>  <NA>
#> 409     4        3     3        2    32       .1  32.1        1 32.11
#> 410     4        3     3        2    32       .1  32.1        2 32.12
#> 411     4        3     3        2    32       .1  32.1        3 32.13
#> 412     3        3     3        2    32       .2  32.2     <NA>  <NA>
#> 413     4        3     3        2    32       .2  32.2        0 32.20
#> 414     3        3     3        2    32       .3  32.3     <NA>  <NA>
#> 415     4        3     3        2    32       .3  32.3        0 32.30
#> 416     3        3     3        2    32       .4  32.4     <NA>  <NA>
#> 417     4        3     3        2    32       .4  32.4        0 32.40
#> 418     3        3     3        2    32       .5  32.5     <NA>  <NA>
#> 419     4        3     3        2    32       .5  32.5        0 32.50
#> 420     3        3     3        2    32       .9  32.9     <NA>  <NA>
#> 421     4        3     3        2    32       .9  32.9        1 32.91
#> 422     4        3     3        2    32       .9  32.9        9 32.99
#> 423     2        3     3        3    33     <NA>  <NA>     <NA>  <NA>
#> 424     3        3     3        3    33       .1  33.1     <NA>  <NA>
#> 425     4        3     3        3    33       .1  33.1        1 33.11
#> 426     4        3     3        3    33       .1  33.1        2 33.12
#> 427     4        3     3        3    33       .1  33.1        3 33.13
#> 428     4        3     3        3    33       .1  33.1        4 33.14
#> 429     4        3     3        3    33       .1  33.1        5 33.15
#> 430     4        3     3        3    33       .1  33.1        6 33.16
#> 431     4        3     3        3    33       .1  33.1        7 33.17
#> 432     4        3     3        3    33       .1  33.1        9 33.19
#> 433     3        3     3        3    33       .2  33.2     <NA>  <NA>
#> 434     4        3     3        3    33       .2  33.2        0 33.20
#> 435     2        3     3        5    35     <NA>  <NA>     <NA>  <NA>
#> 436     3        3     3        5    35       .1  35.1     <NA>  <NA>
#> 437     4        3     3        5    35       .1  35.1        1 35.11
#> 438     4        3     3        5    35       .1  35.1        2 35.12
#> 439     4        3     3        5    35       .1  35.1        3 35.13
#> 440     4        3     3        5    35       .1  35.1        4 35.14
#> 441     3        3     3        5    35       .2  35.2     <NA>  <NA>
#> 442     4        3     3        5    35       .2  35.2        1 35.21
#> 443     4        3     3        5    35       .2  35.2        2 35.22
#> 444     4        3     3        5    35       .2  35.2        3 35.23
#> 445     3        3     3        5    35       .3  35.3     <NA>  <NA>
#> 446     4        3     3        5    35       .3  35.3        0 35.30
#> 447     2        3     3        6    36     <NA>  <NA>     <NA>  <NA>
#> 448     3        3     3        6    36       .0  36.0     <NA>  <NA>
#> 449     4        3     3        6    36       .0  36.0        0 36.00
#> 450     2        3     3        7    37     <NA>  <NA>     <NA>  <NA>
#> 451     3        3     3        7    37       .0  37.0     <NA>  <NA>
#> 452     4        3     3        7    37       .0  37.0        0 37.00
#> 453     2        3     3        8    38     <NA>  <NA>     <NA>  <NA>
#> 454     3        3     3        8    38       .1  38.1     <NA>  <NA>
#> 455     4        3     3        8    38       .1  38.1        1 38.11
#> 456     4        3     3        8    38       .1  38.1        2 38.12
#> 457     3        3     3        8    38       .2  38.2     <NA>  <NA>
#> 458     4        3     3        8    38       .2  38.2        1 38.21
#> 459     4        3     3        8    38       .2  38.2        2 38.22
#> 460     3        3     3        8    38       .3  38.3     <NA>  <NA>
#> 461     4        3     3        8    38       .3  38.3        1 38.31
#> 462     4        3     3        8    38       .3  38.3        2 38.32
#> 463     2        3     3        9    39     <NA>  <NA>     <NA>  <NA>
#> 464     3        3     3        9    39       .0  39.0     <NA>  <NA>
#> 465     4        3     3        9    39       .0  39.0        0 39.00
#> 466     2        4     4        1    41     <NA>  <NA>     <NA>  <NA>
#> 467     3        4     4        1    41       .1  41.1     <NA>  <NA>
#> 468     4        4     4        1    41       .1  41.1        0 41.10
#> 469     3        4     4        1    41       .2  41.2     <NA>  <NA>
#> 470     4        4     4        1    41       .2  41.2        0 41.20
#> 471     2        4     4        2    42     <NA>  <NA>     <NA>  <NA>
#> 472     3        4     4        2    42       .1  42.1     <NA>  <NA>
#> 473     4        4     4        2    42       .1  42.1        1 42.11
#> 474     4        4     4        2    42       .1  42.1        2 42.12
#> 475     4        4     4        2    42       .1  42.1        3 42.13
#> 476     3        4     4        2    42       .2  42.2     <NA>  <NA>
#> 477     4        4     4        2    42       .2  42.2        1 42.21
#> 478     4        4     4        2    42       .2  42.2        2 42.22
#> 479     3        4     4        2    42       .9  42.9     <NA>  <NA>
#> 480     4        4     4        2    42       .9  42.9        1 42.91
#> 481     4        4     4        2    42       .9  42.9        9 42.99
#> 482     2        4     4        3    43     <NA>  <NA>     <NA>  <NA>
#> 483     3        4     4        3    43       .1  43.1     <NA>  <NA>
#> 484     4        4     4        3    43       .1  43.1        1 43.11
#> 485     4        4     4        3    43       .1  43.1        2 43.12
#> 486     4        4     4        3    43       .1  43.1        3 43.13
#> 487     3        4     4        3    43       .2  43.2     <NA>  <NA>
#> 488     4        4     4        3    43       .2  43.2        1 43.21
#> 489     4        4     4        3    43       .2  43.2        2 43.22
#> 490     4        4     4        3    43       .2  43.2        9 43.29
#> 491     3        4     4        3    43       .3  43.3     <NA>  <NA>
#> 492     4        4     4        3    43       .3  43.3        1 43.31
#> 493     4        4     4        3    43       .3  43.3        2 43.32
#> 494     4        4     4        3    43       .3  43.3        3 43.33
#> 495     4        4     4        3    43       .3  43.3        4 43.34
#> 496     4        4     4        3    43       .3  43.3        9 43.39
#> 497     3        4     4        3    43       .9  43.9     <NA>  <NA>
#> 498     4        4     4        3    43       .9  43.9        1 43.91
#> 499     4        4     4        3    43       .9  43.9        9 43.99
#> 500     2        4     4        5    45     <NA>  <NA>     <NA>  <NA>
#> 501     3        4     4        5    45       .1  45.1     <NA>  <NA>
#> 502     4        4     4        5    45       .1  45.1        1 45.11
#> 503     4        4     4        5    45       .1  45.1        9 45.19
#> 504     3        4     4        5    45       .2  45.2     <NA>  <NA>
#> 505     4        4     4        5    45       .2  45.2        0 45.20
#> 506     3        4     4        5    45       .3  45.3     <NA>  <NA>
#> 507     4        4     4        5    45       .3  45.3        1 45.31
#> 508     4        4     4        5    45       .3  45.3        2 45.32
#> 509     3        4     4        5    45       .4  45.4     <NA>  <NA>
#> 510     4        4     4        5    45       .4  45.4        0 45.40
#> 511     2        4     4        6    46     <NA>  <NA>     <NA>  <NA>
#> 512     3        4     4        6    46       .1  46.1     <NA>  <NA>
#> 513     4        4     4        6    46       .1  46.1        1 46.11
#> 514     4        4     4        6    46       .1  46.1        2 46.12
#> 515     4        4     4        6    46       .1  46.1        3 46.13
#> 516     4        4     4        6    46       .1  46.1        4 46.14
#> 517     4        4     4        6    46       .1  46.1        5 46.15
#> 518     4        4     4        6    46       .1  46.1        6 46.16
#> 519     4        4     4        6    46       .1  46.1        7 46.17
#> 520     4        4     4        6    46       .1  46.1        8 46.18
#> 521     4        4     4        6    46       .1  46.1        9 46.19
#> 522     3        4     4        6    46       .2  46.2     <NA>  <NA>
#> 523     4        4     4        6    46       .2  46.2        1 46.21
#> 524     4        4     4        6    46       .2  46.2        2 46.22
#> 525     4        4     4        6    46       .2  46.2        3 46.23
#> 526     4        4     4        6    46       .2  46.2        4 46.24
#> 527     3        4     4        6    46       .3  46.3     <NA>  <NA>
#> 528     4        4     4        6    46       .3  46.3        1 46.31
#> 529     4        4     4        6    46       .3  46.3        2 46.32
#> 530     4        4     4        6    46       .3  46.3        3 46.33
#> 531     4        4     4        6    46       .3  46.3        4 46.34
#> 532     4        4     4        6    46       .3  46.3        5 46.35
#> 533     4        4     4        6    46       .3  46.3        6 46.36
#> 534     4        4     4        6    46       .3  46.3        7 46.37
#> 535     4        4     4        6    46       .3  46.3        8 46.38
#> 536     4        4     4        6    46       .3  46.3        9 46.39
#> 537     3        4     4        6    46       .4  46.4     <NA>  <NA>
#> 538     4        4     4        6    46       .4  46.4        1 46.41
#> 539     4        4     4        6    46       .4  46.4        2 46.42
#> 540     4        4     4        6    46       .4  46.4        3 46.43
#> 541     4        4     4        6    46       .4  46.4        4 46.44
#> 542     4        4     4        6    46       .4  46.4        5 46.45
#> 543     4        4     4        6    46       .4  46.4        6 46.46
#> 544     4        4     4        6    46       .4  46.4        7 46.47
#> 545     4        4     4        6    46       .4  46.4        8 46.48
#> 546     4        4     4        6    46       .4  46.4        9 46.49
#> 547     3        4     4        6    46       .5  46.5     <NA>  <NA>
#> 548     4        4     4        6    46       .5  46.5        1 46.51
#> 549     4        4     4        6    46       .5  46.5        2 46.52
#> 550     3        4     4        6    46       .6  46.6     <NA>  <NA>
#> 551     4        4     4        6    46       .6  46.6        1 46.61
#> 552     4        4     4        6    46       .6  46.6        2 46.62
#> 553     4        4     4        6    46       .6  46.6        3 46.63
#> 554     4        4     4        6    46       .6  46.6        4 46.64
#> 555     4        4     4        6    46       .6  46.6        5 46.65
#> 556     4        4     4        6    46       .6  46.6        6 46.66
#> 557     4        4     4        6    46       .6  46.6        9 46.69
#> 558     3        4     4        6    46       .7  46.7     <NA>  <NA>
#> 559     4        4     4        6    46       .7  46.7        1 46.71
#> 560     4        4     4        6    46       .7  46.7        2 46.72
#> 561     4        4     4        6    46       .7  46.7        3 46.73
#> 562     4        4     4        6    46       .7  46.7        4 46.74
#> 563     4        4     4        6    46       .7  46.7        5 46.75
#> 564     4        4     4        6    46       .7  46.7        6 46.76
#> 565     4        4     4        6    46       .7  46.7        7 46.77
#> 566     3        4     4        6    46       .9  46.9     <NA>  <NA>
#> 567     4        4     4        6    46       .9  46.9        0 46.90
#> 568     2        4     4        7    47     <NA>  <NA>     <NA>  <NA>
#> 569     3        4     4        7    47       .1  47.1     <NA>  <NA>
#> 570     4        4     4        7    47       .1  47.1        1 47.11
#> 571     4        4     4        7    47       .1  47.1        9 47.19
#> 572     3        4     4        7    47       .2  47.2     <NA>  <NA>
#> 573     4        4     4        7    47       .2  47.2        1 47.21
#> 574     4        4     4        7    47       .2  47.2        2 47.22
#> 575     4        4     4        7    47       .2  47.2        3 47.23
#> 576     4        4     4        7    47       .2  47.2        4 47.24
#> 577     4        4     4        7    47       .2  47.2        5 47.25
#> 578     4        4     4        7    47       .2  47.2        6 47.26
#> 579     4        4     4        7    47       .2  47.2        9 47.29
#> 580     3        4     4        7    47       .3  47.3     <NA>  <NA>
#> 581     4        4     4        7    47       .3  47.3        0 47.30
#> 582     3        4     4        7    47       .4  47.4     <NA>  <NA>
#> 583     4        4     4        7    47       .4  47.4        1 47.41
#> 584     4        4     4        7    47       .4  47.4        2 47.42
#> 585     4        4     4        7    47       .4  47.4        3 47.43
#> 586     3        4     4        7    47       .5  47.5     <NA>  <NA>
#> 587     4        4     4        7    47       .5  47.5        1 47.51
#> 588     4        4     4        7    47       .5  47.5        2 47.52
#> 589     4        4     4        7    47       .5  47.5        3 47.53
#> 590     4        4     4        7    47       .5  47.5        4 47.54
#> 591     4        4     4        7    47       .5  47.5        9 47.59
#> 592     3        4     4        7    47       .6  47.6     <NA>  <NA>
#> 593     4        4     4        7    47       .6  47.6        1 47.61
#> 594     4        4     4        7    47       .6  47.6        2 47.62
#> 595     4        4     4        7    47       .6  47.6        3 47.63
#> 596     4        4     4        7    47       .6  47.6        4 47.64
#> 597     4        4     4        7    47       .6  47.6        5 47.65
#> 598     3        4     4        7    47       .7  47.7     <NA>  <NA>
#> 599     4        4     4        7    47       .7  47.7        1 47.71
#> 600     4        4     4        7    47       .7  47.7        2 47.72
#> 601     4        4     4        7    47       .7  47.7        3 47.73
#> 602     4        4     4        7    47       .7  47.7        4 47.74
#> 603     4        4     4        7    47       .7  47.7        5 47.75
#> 604     4        4     4        7    47       .7  47.7        6 47.76
#> 605     4        4     4        7    47       .7  47.7        7 47.77
#> 606     4        4     4        7    47       .7  47.7        8 47.78
#> 607     4        4     4        7    47       .7  47.7        9 47.79
#> 608     3        4     4        7    47       .8  47.8     <NA>  <NA>
#> 609     4        4     4        7    47       .8  47.8        1 47.81
#> 610     4        4     4        7    47       .8  47.8        2 47.82
#> 611     4        4     4        7    47       .8  47.8        9 47.89
#> 612     3        4     4        7    47       .9  47.9     <NA>  <NA>
#> 613     4        4     4        7    47       .9  47.9        1 47.91
#> 614     4        4     4        7    47       .9  47.9        9 47.99
#> 615     2        4     4        9    49     <NA>  <NA>     <NA>  <NA>
#> 616     3        4     4        9    49       .1  49.1     <NA>  <NA>
#> 617     4        4     4        9    49       .1  49.1        0 49.10
#> 618     3        4     4        9    49       .2  49.2     <NA>  <NA>
#> 619     4        4     4        9    49       .2  49.2        0 49.20
#> 620     3        4     4        9    49       .3  49.3     <NA>  <NA>
#> 621     4        4     4        9    49       .3  49.3        1 49.31
#> 622     4        4     4        9    49       .3  49.3        2 49.32
#> 623     4        4     4        9    49       .3  49.3        9 49.39
#> 624     3        4     4        9    49       .4  49.4     <NA>  <NA>
#> 625     4        4     4        9    49       .4  49.4        1 49.41
#> 626     4        4     4        9    49       .4  49.4        2 49.42
#> 627     3        4     4        9    49       .5  49.5     <NA>  <NA>
#> 628     4        4     4        9    49       .5  49.5        0 49.50
#> 629     2        5     5        0    50     <NA>  <NA>     <NA>  <NA>
#> 630     3        5     5        0    50       .1  50.1     <NA>  <NA>
#> 631     4        5     5        0    50       .1  50.1        0 50.10
#> 632     3        5     5        0    50       .2  50.2     <NA>  <NA>
#> 633     4        5     5        0    50       .2  50.2        0 50.20
#> 634     3        5     5        0    50       .3  50.3     <NA>  <NA>
#> 635     4        5     5        0    50       .3  50.3        0 50.30
#> 636     3        5     5        0    50       .4  50.4     <NA>  <NA>
#> 637     4        5     5        0    50       .4  50.4        0 50.40
#> 638     2        5     5        1    51     <NA>  <NA>     <NA>  <NA>
#> 639     3        5     5        1    51       .1  51.1     <NA>  <NA>
#> 640     4        5     5        1    51       .1  51.1        0 51.10
#> 641     3        5     5        1    51       .2  51.2     <NA>  <NA>
#> 642     4        5     5        1    51       .2  51.2        1 51.21
#> 643     4        5     5        1    51       .2  51.2        2 51.22
#> 644     2        5     5        2    52     <NA>  <NA>     <NA>  <NA>
#> 645     3        5     5        2    52       .1  52.1     <NA>  <NA>
#> 646     4        5     5        2    52       .1  52.1        0 52.10
#> 647     3        5     5        2    52       .2  52.2     <NA>  <NA>
#> 648     4        5     5        2    52       .2  52.2        1 52.21
#> 649     4        5     5        2    52       .2  52.2        2 52.22
#> 650     4        5     5        2    52       .2  52.2        3 52.23
#> 651     4        5     5        2    52       .2  52.2        4 52.24
#> 652     4        5     5        2    52       .2  52.2        9 52.29
#> 653     2        5     5        3    53     <NA>  <NA>     <NA>  <NA>
#> 654     3        5     5        3    53       .1  53.1     <NA>  <NA>
#> 655     4        5     5        3    53       .1  53.1        0 53.10
#> 656     3        5     5        3    53       .2  53.2     <NA>  <NA>
#> 657     4        5     5        3    53       .2  53.2        0 53.20
#> 658     2        5     5        5    55     <NA>  <NA>     <NA>  <NA>
#> 659     3        5     5        5    55       .1  55.1     <NA>  <NA>
#> 660     4        5     5        5    55       .1  55.1        0 55.10
#> 661     3        5     5        5    55       .2  55.2     <NA>  <NA>
#> 662     4        5     5        5    55       .2  55.2        0 55.20
#> 663     3        5     5        5    55       .3  55.3     <NA>  <NA>
#> 664     4        5     5        5    55       .3  55.3        0 55.30
#> 665     3        5     5        5    55       .9  55.9     <NA>  <NA>
#> 666     4        5     5        5    55       .9  55.9        0 55.90
#> 667     2        5     5        6    56     <NA>  <NA>     <NA>  <NA>
#> 668     3        5     5        6    56       .1  56.1     <NA>  <NA>
#> 669     4        5     5        6    56       .1  56.1        0 56.10
#> 670     3        5     5        6    56       .2  56.2     <NA>  <NA>
#> 671     4        5     5        6    56       .2  56.2        1 56.21
#> 672     4        5     5        6    56       .2  56.2        9 56.29
#> 673     3        5     5        6    56       .3  56.3     <NA>  <NA>
#> 674     4        5     5        6    56       .3  56.3        0 56.30
#> 675     2        5     5        8    58     <NA>  <NA>     <NA>  <NA>
#> 676     3        5     5        8    58       .1  58.1     <NA>  <NA>
#> 677     4        5     5        8    58       .1  58.1        1 58.11
#> 678     4        5     5        8    58       .1  58.1        2 58.12
#> 679     4        5     5        8    58       .1  58.1        3 58.13
#> 680     4        5     5        8    58       .1  58.1        4 58.14
#> 681     4        5     5        8    58       .1  58.1        9 58.19
#> 682     3        5     5        8    58       .2  58.2     <NA>  <NA>
#> 683     4        5     5        8    58       .2  58.2        1 58.21
#> 684     4        5     5        8    58       .2  58.2        9 58.29
#> 685     2        5     5        9    59     <NA>  <NA>     <NA>  <NA>
#> 686     3        5     5        9    59       .1  59.1     <NA>  <NA>
#> 687     4        5     5        9    59       .1  59.1        1 59.11
#> 688     4        5     5        9    59       .1  59.1        2 59.12
#> 689     4        5     5        9    59       .1  59.1        3 59.13
#> 690     4        5     5        9    59       .1  59.1        4 59.14
#> 691     3        5     5        9    59       .2  59.2     <NA>  <NA>
#> 692     4        5     5        9    59       .2  59.2        0 59.20
#> 693     2        6     6        0    60     <NA>  <NA>     <NA>  <NA>
#> 694     3        6     6        0    60       .1  60.1     <NA>  <NA>
#> 695     4        6     6        0    60       .1  60.1        0 60.10
#> 696     3        6     6        0    60       .2  60.2     <NA>  <NA>
#> 697     4        6     6        0    60       .2  60.2        0 60.20
#> 698     2        6     6        1    61     <NA>  <NA>     <NA>  <NA>
#> 699     3        6     6        1    61       .1  61.1     <NA>  <NA>
#> 700     4        6     6        1    61       .1  61.1        0 61.10
#> 701     3        6     6        1    61       .2  61.2     <NA>  <NA>
#> 702     4        6     6        1    61       .2  61.2        0 61.20
#> 703     3        6     6        1    61       .3  61.3     <NA>  <NA>
#> 704     4        6     6        1    61       .3  61.3        0 61.30
#> 705     3        6     6        1    61       .9  61.9     <NA>  <NA>
#> 706     4        6     6        1    61       .9  61.9        0 61.90
#> 707     2        6     6        2    62     <NA>  <NA>     <NA>  <NA>
#> 708     3        6     6        2    62       .0  62.0     <NA>  <NA>
#> 709     4        6     6        2    62       .0  62.0        1 62.01
#> 710     4        6     6        2    62       .0  62.0        2 62.02
#> 711     4        6     6        2    62       .0  62.0        3 62.03
#> 712     4        6     6        2    62       .0  62.0        9 62.09
#> 713     2        6     6        3    63     <NA>  <NA>     <NA>  <NA>
#> 714     3        6     6        3    63       .1  63.1     <NA>  <NA>
#> 715     4        6     6        3    63       .1  63.1        1 63.11
#> 716     4        6     6        3    63       .1  63.1        2 63.12
#> 717     3        6     6        3    63       .9  63.9     <NA>  <NA>
#> 718     4        6     6        3    63       .9  63.9        1 63.91
#> 719     4        6     6        3    63       .9  63.9        9 63.99
#> 720     2        6     6        4    64     <NA>  <NA>     <NA>  <NA>
#> 721     3        6     6        4    64       .1  64.1     <NA>  <NA>
#> 722     4        6     6        4    64       .1  64.1        1 64.11
#> 723     4        6     6        4    64       .1  64.1        9 64.19
#> 724     3        6     6        4    64       .2  64.2     <NA>  <NA>
#> 725     4        6     6        4    64       .2  64.2        0 64.20
#> 726     3        6     6        4    64       .3  64.3     <NA>  <NA>
#> 727     4        6     6        4    64       .3  64.3        0 64.30
#> 728     3        6     6        4    64       .9  64.9     <NA>  <NA>
#> 729     4        6     6        4    64       .9  64.9        1 64.91
#> 730     4        6     6        4    64       .9  64.9        2 64.92
#> 731     4        6     6        4    64       .9  64.9        9 64.99
#> 732     2        6     6        5    65     <NA>  <NA>     <NA>  <NA>
#> 733     3        6     6        5    65       .1  65.1     <NA>  <NA>
#> 734     4        6     6        5    65       .1  65.1        1 65.11
#> 735     4        6     6        5    65       .1  65.1        2 65.12
#> 736     3        6     6        5    65       .2  65.2     <NA>  <NA>
#> 737     4        6     6        5    65       .2  65.2        0 65.20
#> 738     3        6     6        5    65       .3  65.3     <NA>  <NA>
#> 739     4        6     6        5    65       .3  65.3        0 65.30
#> 740     2        6     6        6    66     <NA>  <NA>     <NA>  <NA>
#> 741     3        6     6        6    66       .1  66.1     <NA>  <NA>
#> 742     4        6     6        6    66       .1  66.1        1 66.11
#> 743     4        6     6        6    66       .1  66.1        2 66.12
#> 744     4        6     6        6    66       .1  66.1        9 66.19
#> 745     3        6     6        6    66       .2  66.2     <NA>  <NA>
#> 746     4        6     6        6    66       .2  66.2        1 66.21
#> 747     4        6     6        6    66       .2  66.2        2 66.22
#> 748     4        6     6        6    66       .2  66.2        9 66.29
#> 749     3        6     6        6    66       .3  66.3     <NA>  <NA>
#> 750     4        6     6        6    66       .3  66.3        0 66.30
#> 751     2        6     6        8    68     <NA>  <NA>     <NA>  <NA>
#> 752     3        6     6        8    68       .1  68.1     <NA>  <NA>
#> 753     4        6     6        8    68       .1  68.1        0 68.10
#> 754     3        6     6        8    68       .2  68.2     <NA>  <NA>
#> 755     4        6     6        8    68       .2  68.2        0 68.20
#> 756     3        6     6        8    68       .3  68.3     <NA>  <NA>
#> 757     4        6     6        8    68       .3  68.3        1 68.31
#> 758     4        6     6        8    68       .3  68.3        2 68.32
#> 759     2        6     6        9    69     <NA>  <NA>     <NA>  <NA>
#> 760     3        6     6        9    69       .1  69.1     <NA>  <NA>
#> 761     4        6     6        9    69       .1  69.1        0 69.10
#> 762     3        6     6        9    69       .2  69.2     <NA>  <NA>
#> 763     4        6     6        9    69       .2  69.2        0 69.20
#> 764     2        7     7        0    70     <NA>  <NA>     <NA>  <NA>
#> 765     3        7     7        0    70       .1  70.1     <NA>  <NA>
#> 766     4        7     7        0    70       .1  70.1        0 70.10
#> 767     3        7     7        0    70       .2  70.2     <NA>  <NA>
#> 768     4        7     7        0    70       .2  70.2        1 70.21
#> 769     4        7     7        0    70       .2  70.2        2 70.22
#> 770     2        7     7        1    71     <NA>  <NA>     <NA>  <NA>
#> 771     3        7     7        1    71       .1  71.1     <NA>  <NA>
#> 772     4        7     7        1    71       .1  71.1        1 71.11
#> 773     4        7     7        1    71       .1  71.1        2 71.12
#> 774     3        7     7        1    71       .2  71.2     <NA>  <NA>
#> 775     4        7     7        1    71       .2  71.2        0 71.20
#> 776     2        7     7        2    72     <NA>  <NA>     <NA>  <NA>
#> 777     3        7     7        2    72       .1  72.1     <NA>  <NA>
#> 778     4        7     7        2    72       .1  72.1        1 72.11
#> 779     4        7     7        2    72       .1  72.1        9 72.19
#> 780     3        7     7        2    72       .2  72.2     <NA>  <NA>
#> 781     4        7     7        2    72       .2  72.2        0 72.20
#> 782     2        7     7        3    73     <NA>  <NA>     <NA>  <NA>
#> 783     3        7     7        3    73       .1  73.1     <NA>  <NA>
#> 784     4        7     7        3    73       .1  73.1        1 73.11
#> 785     4        7     7        3    73       .1  73.1        2 73.12
#> 786     3        7     7        3    73       .2  73.2     <NA>  <NA>
#> 787     4        7     7        3    73       .2  73.2        0 73.20
#> 788     2        7     7        4    74     <NA>  <NA>     <NA>  <NA>
#> 789     3        7     7        4    74       .1  74.1     <NA>  <NA>
#> 790     4        7     7        4    74       .1  74.1        0 74.10
#> 791     3        7     7        4    74       .2  74.2     <NA>  <NA>
#> 792     4        7     7        4    74       .2  74.2        0 74.20
#> 793     3        7     7        4    74       .3  74.3     <NA>  <NA>
#> 794     4        7     7        4    74       .3  74.3        0 74.30
#> 795     3        7     7        4    74       .9  74.9     <NA>  <NA>
#> 796     4        7     7        4    74       .9  74.9        0 74.90
#> 797     2        7     7        5    75     <NA>  <NA>     <NA>  <NA>
#> 798     3        7     7        5    75       .0  75.0     <NA>  <NA>
#> 799     4        7     7        5    75       .0  75.0        0 75.00
#> 800     2        7     7        7    77     <NA>  <NA>     <NA>  <NA>
#> 801     3        7     7        7    77       .1  77.1     <NA>  <NA>
#> 802     4        7     7        7    77       .1  77.1        1 77.11
#> 803     4        7     7        7    77       .1  77.1        2 77.12
#> 804     3        7     7        7    77       .2  77.2     <NA>  <NA>
#> 805     4        7     7        7    77       .2  77.2        1 77.21
#> 806     4        7     7        7    77       .2  77.2        2 77.22
#> 807     4        7     7        7    77       .2  77.2        9 77.29
#> 808     3        7     7        7    77       .3  77.3     <NA>  <NA>
#> 809     4        7     7        7    77       .3  77.3        1 77.31
#> 810     4        7     7        7    77       .3  77.3        2 77.32
#> 811     4        7     7        7    77       .3  77.3        3 77.33
#> 812     4        7     7        7    77       .3  77.3        4 77.34
#> 813     4        7     7        7    77       .3  77.3        5 77.35
#> 814     4        7     7        7    77       .3  77.3        9 77.39
#> 815     3        7     7        7    77       .4  77.4     <NA>  <NA>
#> 816     4        7     7        7    77       .4  77.4        0 77.40
#> 817     2        7     7        8    78     <NA>  <NA>     <NA>  <NA>
#> 818     3        7     7        8    78       .1  78.1     <NA>  <NA>
#> 819     4        7     7        8    78       .1  78.1        0 78.10
#> 820     3        7     7        8    78       .2  78.2     <NA>  <NA>
#> 821     4        7     7        8    78       .2  78.2        0 78.20
#> 822     3        7     7        8    78       .3  78.3     <NA>  <NA>
#> 823     4        7     7        8    78       .3  78.3        0 78.30
#> 824     2        7     7        9    79     <NA>  <NA>     <NA>  <NA>
#> 825     3        7     7        9    79       .1  79.1     <NA>  <NA>
#> 826     4        7     7        9    79       .1  79.1        1 79.11
#> 827     4        7     7        9    79       .1  79.1        2 79.12
#> 828     3        7     7        9    79       .9  79.9     <NA>  <NA>
#> 829     4        7     7        9    79       .9  79.9        0 79.90
#> 830     2        8     8        0    80     <NA>  <NA>     <NA>  <NA>
#> 831     3        8     8        0    80       .1  80.1     <NA>  <NA>
#> 832     4        8     8        0    80       .1  80.1        0 80.10
#> 833     3        8     8        0    80       .2  80.2     <NA>  <NA>
#> 834     4        8     8        0    80       .2  80.2        0 80.20
#> 835     3        8     8        0    80       .3  80.3     <NA>  <NA>
#> 836     4        8     8        0    80       .3  80.3        0 80.30
#> 837     2        8     8        1    81     <NA>  <NA>     <NA>  <NA>
#> 838     3        8     8        1    81       .1  81.1     <NA>  <NA>
#> 839     4        8     8        1    81       .1  81.1        0 81.10
#> 840     3        8     8        1    81       .2  81.2     <NA>  <NA>
#> 841     4        8     8        1    81       .2  81.2        1 81.21
#> 842     4        8     8        1    81       .2  81.2        2 81.22
#> 843     4        8     8        1    81       .2  81.2        9 81.29
#> 844     3        8     8        1    81       .3  81.3     <NA>  <NA>
#> 845     4        8     8        1    81       .3  81.3        0 81.30
#> 846     2        8     8        2    82     <NA>  <NA>     <NA>  <NA>
#> 847     3        8     8        2    82       .1  82.1     <NA>  <NA>
#> 848     4        8     8        2    82       .1  82.1        1 82.11
#> 849     4        8     8        2    82       .1  82.1        9 82.19
#> 850     3        8     8        2    82       .2  82.2     <NA>  <NA>
#> 851     4        8     8        2    82       .2  82.2        0 82.20
#> 852     3        8     8        2    82       .3  82.3     <NA>  <NA>
#> 853     4        8     8        2    82       .3  82.3        0 82.30
#> 854     3        8     8        2    82       .9  82.9     <NA>  <NA>
#> 855     4        8     8        2    82       .9  82.9        1 82.91
#> 856     4        8     8        2    82       .9  82.9        2 82.92
#> 857     4        8     8        2    82       .9  82.9        9 82.99
#> 858     2        8     8        4    84     <NA>  <NA>     <NA>  <NA>
#> 859     3        8     8        4    84       .1  84.1     <NA>  <NA>
#> 860     4        8     8        4    84       .1  84.1        1 84.11
#> 861     4        8     8        4    84       .1  84.1        2 84.12
#> 862     4        8     8        4    84       .1  84.1        3 84.13
#> 863     3        8     8        4    84       .2  84.2     <NA>  <NA>
#> 864     4        8     8        4    84       .2  84.2        1 84.21
#> 865     4        8     8        4    84       .2  84.2        2 84.22
#> 866     4        8     8        4    84       .2  84.2        3 84.23
#> 867     4        8     8        4    84       .2  84.2        4 84.24
#> 868     4        8     8        4    84       .2  84.2        5 84.25
#> 869     3        8     8        4    84       .3  84.3     <NA>  <NA>
#> 870     4        8     8        4    84       .3  84.3        0 84.30
#> 871     2        8     8        5    85     <NA>  <NA>     <NA>  <NA>
#> 872     3        8     8        5    85       .1  85.1     <NA>  <NA>
#> 873     4        8     8        5    85       .1  85.1        0 85.10
#> 874     3        8     8        5    85       .2  85.2     <NA>  <NA>
#> 875     4        8     8        5    85       .2  85.2        0 85.20
#> 876     3        8     8        5    85       .3  85.3     <NA>  <NA>
#> 877     4        8     8        5    85       .3  85.3        1 85.31
#> 878     4        8     8        5    85       .3  85.3        2 85.32
#> 879     3        8     8        5    85       .4  85.4     <NA>  <NA>
#> 880     4        8     8        5    85       .4  85.4        1 85.41
#> 881     4        8     8        5    85       .4  85.4        2 85.42
#> 882     3        8     8        5    85       .5  85.5     <NA>  <NA>
#> 883     4        8     8        5    85       .5  85.5        1 85.51
#> 884     4        8     8        5    85       .5  85.5        2 85.52
#> 885     4        8     8        5    85       .5  85.5        3 85.53
#> 886     4        8     8        5    85       .5  85.5        9 85.59
#> 887     3        8     8        5    85       .6  85.6     <NA>  <NA>
#> 888     4        8     8        5    85       .6  85.6        0 85.60
#> 889     2        8     8        6    86     <NA>  <NA>     <NA>  <NA>
#> 890     3        8     8        6    86       .1  86.1     <NA>  <NA>
#> 891     4        8     8        6    86       .1  86.1        0 86.10
#> 892     3        8     8        6    86       .2  86.2     <NA>  <NA>
#> 893     4        8     8        6    86       .2  86.2        1 86.21
#> 894     4        8     8        6    86       .2  86.2        2 86.22
#> 895     4        8     8        6    86       .2  86.2        3 86.23
#> 896     3        8     8        6    86       .9  86.9     <NA>  <NA>
#> 897     4        8     8        6    86       .9  86.9        0 86.90
#> 898     2        8     8        7    87     <NA>  <NA>     <NA>  <NA>
#> 899     3        8     8        7    87       .1  87.1     <NA>  <NA>
#> 900     4        8     8        7    87       .1  87.1        0 87.10
#> 901     3        8     8        7    87       .2  87.2     <NA>  <NA>
#> 902     4        8     8        7    87       .2  87.2        0 87.20
#> 903     3        8     8        7    87       .3  87.3     <NA>  <NA>
#> 904     4        8     8        7    87       .3  87.3        0 87.30
#> 905     3        8     8        7    87       .9  87.9     <NA>  <NA>
#> 906     4        8     8        7    87       .9  87.9        0 87.90
#> 907     2        8     8        8    88     <NA>  <NA>     <NA>  <NA>
#> 908     3        8     8        8    88       .1  88.1     <NA>  <NA>
#> 909     4        8     8        8    88       .1  88.1        0 88.10
#> 910     3        8     8        8    88       .9  88.9     <NA>  <NA>
#> 911     4        8     8        8    88       .9  88.9        1 88.91
#> 912     4        8     8        8    88       .9  88.9        9 88.99
#> 913     2        9     9        0    90     <NA>  <NA>     <NA>  <NA>
#> 914     3        9     9        0    90       .0  90.0     <NA>  <NA>
#> 915     4        9     9        0    90       .0  90.0        1 90.01
#> 916     4        9     9        0    90       .0  90.0        2 90.02
#> 917     4        9     9        0    90       .0  90.0        3 90.03
#> 918     4        9     9        0    90       .0  90.0        4 90.04
#> 919     2        9     9        1    91     <NA>  <NA>     <NA>  <NA>
#> 920     3        9     9        1    91       .0  91.0     <NA>  <NA>
#> 921     4        9     9        1    91       .0  91.0        1 91.01
#> 922     4        9     9        1    91       .0  91.0        2 91.02
#> 923     4        9     9        1    91       .0  91.0        3 91.03
#> 924     4        9     9        1    91       .0  91.0        4 91.04
#> 925     2        9     9        2    92     <NA>  <NA>     <NA>  <NA>
#> 926     3        9     9        2    92       .0  92.0     <NA>  <NA>
#> 927     4        9     9        2    92       .0  92.0        0 92.00
#> 928     2        9     9        3    93     <NA>  <NA>     <NA>  <NA>
#> 929     3        9     9        3    93       .1  93.1     <NA>  <NA>
#> 930     4        9     9        3    93       .1  93.1        1 93.11
#> 931     4        9     9        3    93       .1  93.1        2 93.12
#> 932     4        9     9        3    93       .1  93.1        3 93.13
#> 933     4        9     9        3    93       .1  93.1        9 93.19
#> 934     3        9     9        3    93       .2  93.2     <NA>  <NA>
#> 935     4        9     9        3    93       .2  93.2        1 93.21
#> 936     4        9     9        3    93       .2  93.2        9 93.29
#> 937     2        9     9        4    94     <NA>  <NA>     <NA>  <NA>
#> 938     3        9     9        4    94       .1  94.1     <NA>  <NA>
#> 939     4        9     9        4    94       .1  94.1        1 94.11
#> 940     4        9     9        4    94       .1  94.1        2 94.12
#> 941     3        9     9        4    94       .2  94.2     <NA>  <NA>
#> 942     4        9     9        4    94       .2  94.2        0 94.20
#> 943     3        9     9        4    94       .9  94.9     <NA>  <NA>
#> 944     4        9     9        4    94       .9  94.9        1 94.91
#> 945     4        9     9        4    94       .9  94.9        2 94.92
#> 946     4        9     9        4    94       .9  94.9        9 94.99
#> 947     2        9     9        5    95     <NA>  <NA>     <NA>  <NA>
#> 948     3        9     9        5    95       .1  95.1     <NA>  <NA>
#> 949     4        9     9        5    95       .1  95.1        1 95.11
#> 950     4        9     9        5    95       .1  95.1        2 95.12
#> 951     3        9     9        5    95       .2  95.2     <NA>  <NA>
#> 952     4        9     9        5    95       .2  95.2        1 95.21
#> 953     4        9     9        5    95       .2  95.2        2 95.22
#> 954     4        9     9        5    95       .2  95.2        3 95.23
#> 955     4        9     9        5    95       .2  95.2        4 95.24
#> 956     4        9     9        5    95       .2  95.2        5 95.25
#> 957     4        9     9        5    95       .2  95.2        9 95.29
#> 958     2        9     9        6    96     <NA>  <NA>     <NA>  <NA>
#> 959     3        9     9        6    96       .0  96.0     <NA>  <NA>
#> 960     4        9     9        6    96       .0  96.0        1 96.01
#> 961     4        9     9        6    96       .0  96.0        2 96.02
#> 962     4        9     9        6    96       .0  96.0        3 96.03
#> 963     4        9     9        6    96       .0  96.0        4 96.04
#> 964     4        9     9        6    96       .0  96.0        9 96.09
#> 965     2        9     9        7    97     <NA>  <NA>     <NA>  <NA>
#> 966     3        9     9        7    97       .0  97.0     <NA>  <NA>
#> 967     4        9     9        7    97       .0  97.0        0 97.00
#> 968     2        9     9        8    98     <NA>  <NA>     <NA>  <NA>
#> 969     3        9     9        8    98       .1  98.1     <NA>  <NA>
#> 970     4        9     9        8    98       .1  98.1        0 98.10
#> 971     3        9     9        8    98       .2  98.2     <NA>  <NA>
#> 972     4        9     9        8    98       .2  98.2        0 98.20
#> 973     2        9     9        9    99     <NA>  <NA>     <NA>  <NA>
#> 974     3        9     9        9    99       .0  99.0     <NA>  <NA>
#> 975     4        9     9        9    99       .0  99.0        0 99.00
#> 976     1        A     A     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 977     1        B     B     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 978     1        C     C     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 979     1        D     D     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 980     1        E     E     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 981     1        F     F     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 982     1        G     G     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 983     1        H     H     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 984     1        I     I     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 985     1        J     J     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 986     1        K     K     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 987     1        L     L     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 988     1        M     M     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 989     1        N     N     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 990     1        O     O     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 991     1        P     P     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 992     1        Q     Q     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 993     1        R     R     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 994     1        S     S     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 995     1        T     T     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 996     1        U     U     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#>     duplicateCode orphan childless duplicateLabel singleChildMismatch
#> 1               0      1         0              0                   0
#> 2               0      0         0              0                   0
#> 3               0      0        NA              0                   0
#> 4               0      0        NA              0                   0
#> 5               0      0        NA              0                   0
#> 6               0      0        NA              0                   0
#> 7               0      0        NA              0                   0
#> 8               0      0        NA              0                   0
#> 9               0      0        NA              0                   0
#> 10              0      0         0              0                   0
#> 11              0      0        NA              0                   0
#> 12              0      0        NA              0                   0
#> 13              0      0        NA              0                   0
#> 14              0      0        NA              0                   0
#> 15              0      0        NA              0                   0
#> 16              0      0        NA              0                   0
#> 17              0      0        NA              0                   0
#> 18              0      0        NA              0                   0
#> 19              0      0        NA              0                   0
#> 20              0      0         0              0                   0
#> 21              0      0        NA              0                   0
#> 22              0      0         0              0                   0
#> 23              0      0        NA              0                   0
#> 24              0      0        NA              0                   0
#> 25              0      0        NA              0                   0
#> 26              0      0        NA              0                   0
#> 27              0      0        NA              0                   0
#> 28              0      0        NA              0                   0
#> 29              0      0        NA              0                   0
#> 30              0      0        NA              0                   0
#> 31              0      0         0              0                   0
#> 32              0      0        NA              0                   0
#> 33              0      0         0              0                   0
#> 34              0      0        NA              0                   0
#> 35              0      0        NA              0                   0
#> 36              0      0        NA              0                   0
#> 37              0      0        NA              0                   0
#> 38              0      0         0              0                   0
#> 39              0      0        NA              0                   0
#> 40              0      1         0              0                   0
#> 41              0      0         0              0                   0
#> 42              0      0        NA              0                   0
#> 43              0      0         0              0                   0
#> 44              0      0        NA              0                   0
#> 45              0      0         0              0                   0
#> 46              0      0        NA              0                   0
#> 47              0      0         0              0                   0
#> 48              0      0        NA              0                   0
#> 49              0      1         0              0                   0
#> 50              0      0         0              0                   0
#> 51              0      0        NA              0                   0
#> 52              0      0        NA              0                   0
#> 53              0      0         0              0                   0
#> 54              0      0        NA              0                   0
#> 55              0      0        NA              0                   0
#> 56              0      1         0              0                   0
#> 57              0      0         0              0                   0
#> 58              0      0        NA              0                   0
#> 59              0      0         0              0                   0
#> 60              0      0        NA              0                   0
#> 61              0      1         0              0                   0
#> 62              0      0         0              0                   0
#> 63              0      0        NA              0                   0
#> 64              0      0         0              0                   0
#> 65              0      0        NA              0                   0
#> 66              0      1         0              0                   0
#> 67              0      0         0              0                   0
#> 68              0      0        NA              0                   0
#> 69              0      0         0              0                   0
#> 70              0      0        NA              0                   0
#> 71              0      0        NA              0                   0
#> 72              0      1         0              0                   0
#> 73              0      0         0              0                   0
#> 74              0      0        NA              0                   0
#> 75              0      0        NA              0                   0
#> 76              0      0         0              0                   0
#> 77              0      0        NA              0                   0
#> 78              0      0        NA              0                   0
#> 79              0      0        NA              0                   0
#> 80              0      0        NA              0                   0
#> 81              0      1         0              0                   0
#> 82              0      0         0              0                   0
#> 83              0      0        NA              0                   0
#> 84              0      0         0              0                   0
#> 85              0      0        NA              0                   0
#> 86              0      1         0              0                   0
#> 87              0      0         0              0                   0
#> 88              0      0        NA              0                   0
#> 89              0      0        NA              0                   0
#> 90              0      0        NA              0                   0
#> 91              0      0         0              0                   0
#> 92              0      0        NA              0                   0
#> 93              0      0         0              0                   0
#> 94              0      0        NA              0                   0
#> 95              0      0        NA              0                   0
#> 96              0      0        NA              0                   0
#> 97              0      0         0              0                   0
#> 98              0      0        NA              0                   0
#> 99              0      0        NA              0                   0
#> 100             0      0         0              0                   0
#> 101             0      0        NA              0                   0
#> 102             0      0        NA              0                   0
#> 103             0      0         0              0                   0
#> 104             0      0        NA              0                   0
#> 105             0      0        NA              0                   0
#> 106             0      0         0              0                   0
#> 107             0      0        NA              0                   0
#> 108             0      0        NA              0                   0
#> 109             0      0        NA              0                   0
#> 110             0      0         0              0                   0
#> 111             0      0        NA              0                   0
#> 112             0      0        NA              0                   0
#> 113             0      0        NA              0                   0
#> 114             0      0        NA              0                   0
#> 115             0      0        NA              0                   0
#> 116             0      0        NA              0                   0
#> 117             0      0        NA              0                   0
#> 118             0      0         0              0                   0
#> 119             0      0        NA              0                   0
#> 120             0      0        NA              0                   0
#> 121             0      1         0              0                   0
#> 122             0      0         0              0                   0
#> 123             0      0        NA              0                   0
#> 124             0      0        NA              0                   0
#> 125             0      0        NA              0                   0
#> 126             0      0        NA              0                   0
#> 127             0      0        NA              0                   0
#> 128             0      0        NA              0                   0
#> 129             0      0        NA              0                   0
#> 130             0      1         0              0                   0
#> 131             0      0         0              0                   0
#> 132             0      0        NA              0                   0
#> 133             0      1         0              0                   0
#> 134             0      0         0              0                   0
#> 135             0      0        NA              0                   0
#> 136             0      0         0              0                   0
#> 137             0      0        NA              0                   0
#> 138             0      0         0              0                   0
#> 139             0      0        NA              0                   0
#> 140             0      0         0              0                   0
#> 141             0      0        NA              0                   0
#> 142             0      0        NA              0                   0
#> 143             0      0        NA              0                   0
#> 144             0      0        NA              0                   0
#> 145             0      0        NA              0                   0
#> 146             0      0        NA              0                   0
#> 147             0      0        NA              0                   0
#> 148             0      1         0              0                   0
#> 149             0      0         0              0                   0
#> 150             0      0        NA              0                   0
#> 151             0      0        NA              0                   0
#> 152             0      0        NA              0                   0
#> 153             0      0        NA              0                   0
#> 154             0      0        NA              0                   0
#> 155             0      0         0              0                   0
#> 156             0      0        NA              0                   0
#> 157             0      0         0              0                   0
#> 158             0      0        NA              0                   0
#> 159             0      0        NA              0                   0
#> 160             0      1         0              0                   0
#> 161             0      0         0              0                   0
#> 162             0      0        NA              0                   0
#> 163             0      0        NA              0                   0
#> 164             0      0         0              0                   0
#> 165             0      0        NA              0                   0
#> 166             0      1         0              0                   0
#> 167             0      0         0              0                   0
#> 168             0      0        NA              0                   0
#> 169             0      0         0              0                   0
#> 170             0      0        NA              0                   0
#> 171             0      0        NA              0                   0
#> 172             0      0        NA              0                   0
#> 173             0      0        NA              0                   0
#> 174             0      0        NA              0                   0
#> 175             0      1         0              0                   0
#> 176             0      0         0              0                   0
#> 177             0      0        NA              0                   0
#> 178             0      0        NA              0                   0
#> 179             0      0         0              0                   0
#> 180             0      0        NA              0                   0
#> 181             0      0        NA              0                   0
#> 182             0      0        NA              0                   0
#> 183             0      0        NA              0                   0
#> 184             0      0        NA              0                   0
#> 185             0      1         0              0                   0
#> 186             0      0         0              0                   0
#> 187             0      0        NA              0                   0
#> 188             0      0        NA              0                   0
#> 189             0      0        NA              0                   0
#> 190             0      0        NA              0                   0
#> 191             0      0         0              0                   0
#> 192             0      0        NA              0                   0
#> 193             0      1         0              0                   0
#> 194             0      0         0              0                   0
#> 195             0      0        NA              0                   0
#> 196             0      0         0              0                   0
#> 197             0      0        NA              0                   0
#> 198             0      1         0              0                   0
#> 199             0      0         0              0                   0
#> 200             0      0        NA              0                   0
#> 201             0      0        NA              0                   0
#> 202             0      0        NA              0                   0
#> 203             0      0        NA              0                   0
#> 204             0      0        NA              0                   0
#> 205             0      0        NA              0                   0
#> 206             0      0        NA              0                   0
#> 207             0      0         0              0                   0
#> 208             0      0        NA              0                   0
#> 209             0      0         0              0                   0
#> 210             0      0        NA              0                   0
#> 211             0      0         0              0                   0
#> 212             0      0        NA              0                   0
#> 213             0      0        NA              0                   0
#> 214             0      0         0              0                   0
#> 215             0      0        NA              0                   0
#> 216             0      0        NA              0                   0
#> 217             0      0        NA              0                   0
#> 218             0      0        NA              0                   0
#> 219             0      0         0              0                   0
#> 220             0      0        NA              0                   0
#> 221             0      1         0              0                   0
#> 222             0      0         0              0                   0
#> 223             0      0        NA              0                   0
#> 224             0      0         0              0                   0
#> 225             0      0        NA              0                   0
#> 226             0      1         0              0                   0
#> 227             0      0         0              0                   0
#> 228             0      0        NA              0                   0
#> 229             0      0        NA              0                   0
#> 230             0      0         0              0                   0
#> 231             0      0        NA              0                   0
#> 232             0      0        NA              0                   0
#> 233             0      0        NA              0                   0
#> 234             0      0        NA              0                   0
#> 235             0      1         0              0                   0
#> 236             0      0         0              0                   0
#> 237             0      0        NA              0                   0
#> 238             0      0        NA              0                   0
#> 239             0      0        NA              0                   0
#> 240             0      0        NA              0                   0
#> 241             0      0        NA              0                   0
#> 242             0      0         0              0                   0
#> 243             0      0        NA              0                   0
#> 244             0      0         0              0                   0
#> 245             0      0        NA              0                   0
#> 246             0      0        NA              0                   0
#> 247             0      0         0              0                   0
#> 248             0      0        NA              0                   0
#> 249             0      0        NA              0                   0
#> 250             0      0        NA              0                   0
#> 251             0      0        NA              0                   0
#> 252             0      0        NA              0                   0
#> 253             0      0         0              0                   0
#> 254             0      0        NA              0                   0
#> 255             0      0        NA              0                   0
#> 256             0      0         0              0                   0
#> 257             0      0        NA              0                   0
#> 258             0      0        NA              0                   0
#> 259             0      0        NA              0                   0
#> 260             0      0        NA              0                   0
#> 261             0      0        NA              0                   0
#> 262             0      0        NA              0                   0
#> 263             0      0         0              0                   0
#> 264             0      0        NA              0                   0
#> 265             0      0         0              0                   0
#> 266             0      0        NA              0                   0
#> 267             0      0        NA              0                   0
#> 268             0      1         0              0                   0
#> 269             0      0         0              0                   0
#> 270             0      0        NA              0                   0
#> 271             0      0         0              0                   0
#> 272             0      0        NA              0                   0
#> 273             0      0         0              0                   0
#> 274             0      0        NA              0                   0
#> 275             0      0        NA              0                   0
#> 276             0      0        NA              0                   0
#> 277             0      0        NA              0                   0
#> 278             0      0         0              0                   0
#> 279             0      0        NA              0                   0
#> 280             0      0        NA              0                   0
#> 281             0      0        NA              0                   0
#> 282             0      0        NA              0                   0
#> 283             0      0        NA              0                   0
#> 284             0      0        NA              0                   0
#> 285             0      0         0              0                   0
#> 286             0      0        NA              0                   0
#> 287             0      0        NA              0                   0
#> 288             0      0        NA              0                   0
#> 289             0      0        NA              0                   0
#> 290             0      1         0              0                   0
#> 291             0      0         0              0                   0
#> 292             0      0        NA              0                   0
#> 293             0      0        NA              0                   0
#> 294             0      0         0              0                   0
#> 295             0      0        NA              0                   0
#> 296             0      0        NA              0                   0
#> 297             0      0         0              0                   0
#> 298             0      0        NA              0                   0
#> 299             0      0         0              0                   0
#> 300             0      0        NA              0                   0
#> 301             0      0         0              0                   0
#> 302             0      0        NA              0                   0
#> 303             0      0         0              0                   0
#> 304             0      0        NA              0                   0
#> 305             0      0        NA              0                   0
#> 306             0      0         0              0                   0
#> 307             0      0        NA              0                   0
#> 308             0      0        NA              0                   0
#> 309             0      0        NA              0                   0
#> 310             0      0         0              0                   0
#> 311             0      0        NA              0                   0
#> 312             0      0        NA              0                   0
#> 313             0      0        NA              0                   0
#> 314             0      0        NA              0                   0
#> 315             0      0        NA              0                   0
#> 316             0      1         0              0                   0
#> 317             0      0         0              0                   0
#> 318             0      0        NA              0                   0
#> 319             0      0        NA              0                   0
#> 320             0      0         0              0                   0
#> 321             0      0        NA              0                   0
#> 322             0      0         0              0                   0
#> 323             0      0        NA              0                   0
#> 324             0      0         0              0                   0
#> 325             0      0        NA              0                   0
#> 326             0      0         0              0                   0
#> 327             0      0        NA              0                   0
#> 328             0      0        NA              0                   0
#> 329             0      0         0              0                   0
#> 330             0      0        NA              0                   0
#> 331             0      0         0              0                   0
#> 332             0      0        NA              0                   0
#> 333             0      0         0              0                   0
#> 334             0      0        NA              0                   0
#> 335             0      1         0              0                   0
#> 336             0      0         0              0                   0
#> 337             0      0        NA              0                   0
#> 338             0      0        NA              0                   0
#> 339             0      0         0              0                   0
#> 340             0      0        NA              0                   0
#> 341             0      0         0              0                   0
#> 342             0      0        NA              0                   0
#> 343             0      0        NA              0                   0
#> 344             0      0        NA              0                   0
#> 345             0      0         0              0                   0
#> 346             0      0        NA              0                   0
#> 347             0      0         0              0                   0
#> 348             0      0        NA              0                   0
#> 349             0      0        NA              0                   0
#> 350             0      0         0              0                   0
#> 351             0      0        NA              0                   0
#> 352             0      1         0              0                   0
#> 353             0      0         0              0                   0
#> 354             0      0        NA              0                   0
#> 355             0      0        NA              0                   0
#> 356             0      0        NA              0                   0
#> 357             0      0        NA              0                   0
#> 358             0      0        NA              0                   0
#> 359             0      0         0              0                   0
#> 360             0      0        NA              0                   0
#> 361             0      0        NA              0                   0
#> 362             0      0        NA              0                   0
#> 363             0      0        NA              0                   0
#> 364             0      0        NA              0                   0
#> 365             0      0        NA              0                   0
#> 366             0      0         0              0                   0
#> 367             0      0        NA              0                   0
#> 368             0      0         0              0                   0
#> 369             0      0        NA              0                   0
#> 370             0      0        NA              0                   0
#> 371             0      0         0              0                   0
#> 372             0      0        NA              0                   0
#> 373             0      0        NA              0                   0
#> 374             0      0        NA              0                   0
#> 375             0      0        NA              0                   0
#> 376             0      0        NA              0                   0
#> 377             0      0        NA              0                   0
#> 378             0      0        NA              0                   0
#> 379             0      1         0              0                   0
#> 380             0      0         0              0                   0
#> 381             0      0        NA              0                   0
#> 382             0      0         0              0                   0
#> 383             0      0        NA              0                   0
#> 384             0      0         0              0                   0
#> 385             0      0        NA              0                   0
#> 386             0      0        NA              0                   0
#> 387             0      1         0              0                   0
#> 388             0      0         0              0                   0
#> 389             0      0        NA              0                   0
#> 390             0      0        NA              0                   0
#> 391             0      0         0              0                   0
#> 392             0      0        NA              0                   0
#> 393             0      0         0              0                   0
#> 394             0      0        NA              0                   0
#> 395             0      0         0              0                   0
#> 396             0      0        NA              0                   0
#> 397             0      0         0              0                   0
#> 398             0      0        NA              0                   0
#> 399             0      0        NA              0                   0
#> 400             0      0        NA              0                   0
#> 401             0      1         0              0                   0
#> 402             0      0         0              0                   0
#> 403             0      0        NA              0                   0
#> 404             0      0        NA              0                   0
#> 405             0      0        NA              0                   0
#> 406             0      0        NA              0                   0
#> 407             0      1         0              0                   0
#> 408             0      0         0              0                   0
#> 409             0      0        NA              0                   0
#> 410             0      0        NA              0                   0
#> 411             0      0        NA              0                   0
#> 412             0      0         0              0                   0
#> 413             0      0        NA              0                   0
#> 414             0      0         0              0                   0
#> 415             0      0        NA              0                   0
#> 416             0      0         0              0                   0
#> 417             0      0        NA              0                   0
#> 418             0      0         0              0                   0
#> 419             0      0        NA              0                   0
#> 420             0      0         0              0                   0
#> 421             0      0        NA              0                   0
#> 422             0      0        NA              0                   0
#> 423             0      1         0              0                   0
#> 424             0      0         0              0                   0
#> 425             0      0        NA              0                   0
#> 426             0      0        NA              0                   0
#> 427             0      0        NA              0                   0
#> 428             0      0        NA              0                   0
#> 429             0      0        NA              0                   0
#> 430             0      0        NA              0                   0
#> 431             0      0        NA              0                   0
#> 432             0      0        NA              0                   0
#> 433             0      0         0              0                   0
#> 434             0      0        NA              0                   0
#> 435             0      1         0              0                   0
#> 436             0      0         0              0                   0
#> 437             0      0        NA              0                   0
#> 438             0      0        NA              0                   0
#> 439             0      0        NA              0                   0
#> 440             0      0        NA              0                   0
#> 441             0      0         0              0                   0
#> 442             0      0        NA              0                   0
#> 443             0      0        NA              0                   0
#> 444             0      0        NA              0                   0
#> 445             0      0         0              0                   0
#> 446             0      0        NA              0                   0
#> 447             0      1         0              0                   0
#> 448             0      0         0              0                   0
#> 449             0      0        NA              0                   0
#> 450             0      1         0              0                   0
#> 451             0      0         0              0                   0
#> 452             0      0        NA              0                   0
#> 453             0      1         0              0                   0
#> 454             0      0         0              0                   0
#> 455             0      0        NA              0                   0
#> 456             0      0        NA              0                   0
#> 457             0      0         0              0                   0
#> 458             0      0        NA              0                   0
#> 459             0      0        NA              0                   0
#> 460             0      0         0              0                   0
#> 461             0      0        NA              0                   0
#> 462             0      0        NA              0                   0
#> 463             0      1         0              0                   0
#> 464             0      0         0              0                   0
#> 465             0      0        NA              0                   0
#> 466             0      1         0              0                   0
#> 467             0      0         0              0                   0
#> 468             0      0        NA              0                   0
#> 469             0      0         0              0                   0
#> 470             0      0        NA              0                   0
#> 471             0      1         0              0                   0
#> 472             0      0         0              0                   0
#> 473             0      0        NA              0                   0
#> 474             0      0        NA              0                   0
#> 475             0      0        NA              0                   0
#> 476             0      0         0              0                   0
#> 477             0      0        NA              0                   0
#> 478             0      0        NA              0                   0
#> 479             0      0         0              0                   0
#> 480             0      0        NA              0                   0
#> 481             0      0        NA              0                   0
#> 482             0      1         0              0                   0
#> 483             0      0         0              0                   0
#> 484             0      0        NA              0                   0
#> 485             0      0        NA              0                   0
#> 486             0      0        NA              0                   0
#> 487             0      0         0              0                   0
#> 488             0      0        NA              0                   0
#> 489             0      0        NA              0                   0
#> 490             0      0        NA              0                   0
#> 491             0      0         0              0                   0
#> 492             0      0        NA              0                   0
#> 493             0      0        NA              0                   0
#> 494             0      0        NA              0                   0
#> 495             0      0        NA              0                   0
#> 496             0      0        NA              0                   0
#> 497             0      0         0              0                   0
#> 498             0      0        NA              0                   0
#> 499             0      0        NA              0                   0
#> 500             0      1         0              0                   0
#> 501             0      0         0              0                   0
#> 502             0      0        NA              0                   0
#> 503             0      0        NA              0                   0
#> 504             0      0         0              0                   0
#> 505             0      0        NA              0                   0
#> 506             0      0         0              0                   0
#> 507             0      0        NA              0                   0
#> 508             0      0        NA              0                   0
#> 509             0      0         0              0                   0
#> 510             0      0        NA              0                   0
#> 511             0      1         0              0                   0
#> 512             0      0         0              0                   0
#> 513             0      0        NA              0                   0
#> 514             0      0        NA              0                   0
#> 515             0      0        NA              0                   0
#> 516             0      0        NA              0                   0
#> 517             0      0        NA              0                   0
#> 518             0      0        NA              0                   0
#> 519             0      0        NA              0                   0
#> 520             0      0        NA              0                   0
#> 521             0      0        NA              0                   0
#> 522             0      0         0              0                   0
#> 523             0      0        NA              0                   0
#> 524             0      0        NA              0                   0
#> 525             0      0        NA              0                   0
#> 526             0      0        NA              0                   0
#> 527             0      0         0              0                   0
#> 528             0      0        NA              0                   0
#> 529             0      0        NA              0                   0
#> 530             0      0        NA              0                   0
#> 531             0      0        NA              0                   0
#> 532             0      0        NA              0                   0
#> 533             0      0        NA              0                   0
#> 534             0      0        NA              0                   0
#> 535             0      0        NA              0                   0
#> 536             0      0        NA              0                   0
#> 537             0      0         0              0                   0
#> 538             0      0        NA              0                   0
#> 539             0      0        NA              0                   0
#> 540             0      0        NA              0                   0
#> 541             0      0        NA              0                   0
#> 542             0      0        NA              0                   0
#> 543             0      0        NA              0                   0
#> 544             0      0        NA              0                   0
#> 545             0      0        NA              0                   0
#> 546             0      0        NA              0                   0
#> 547             0      0         0              0                   0
#> 548             0      0        NA              0                   0
#> 549             0      0        NA              0                   0
#> 550             0      0         0              0                   0
#> 551             0      0        NA              0                   0
#> 552             0      0        NA              0                   0
#> 553             0      0        NA              0                   0
#> 554             0      0        NA              0                   0
#> 555             0      0        NA              0                   0
#> 556             0      0        NA              0                   0
#> 557             0      0        NA              0                   0
#> 558             0      0         0              0                   0
#> 559             0      0        NA              0                   0
#> 560             0      0        NA              0                   0
#> 561             0      0        NA              0                   0
#> 562             0      0        NA              0                   0
#> 563             0      0        NA              0                   0
#> 564             0      0        NA              0                   0
#> 565             0      0        NA              0                   0
#> 566             0      0         0              0                   0
#> 567             0      0        NA              0                   0
#> 568             0      1         0              0                   0
#> 569             0      0         0              0                   0
#> 570             0      0        NA              0                   0
#> 571             0      0        NA              0                   0
#> 572             0      0         0              0                   0
#> 573             0      0        NA              0                   0
#> 574             0      0        NA              0                   0
#> 575             0      0        NA              0                   0
#> 576             0      0        NA              0                   0
#> 577             0      0        NA              0                   0
#> 578             0      0        NA              0                   0
#> 579             0      0        NA              0                   0
#> 580             0      0         0              0                   0
#> 581             0      0        NA              0                   0
#> 582             0      0         0              0                   0
#> 583             0      0        NA              0                   0
#> 584             0      0        NA              0                   0
#> 585             0      0        NA              0                   0
#> 586             0      0         0              0                   0
#> 587             0      0        NA              0                   0
#> 588             0      0        NA              0                   0
#> 589             0      0        NA              0                   0
#> 590             0      0        NA              0                   0
#> 591             0      0        NA              0                   0
#> 592             0      0         0              0                   0
#> 593             0      0        NA              0                   0
#> 594             0      0        NA              0                   0
#> 595             0      0        NA              0                   0
#> 596             0      0        NA              0                   0
#> 597             0      0        NA              0                   0
#> 598             0      0         0              0                   0
#> 599             0      0        NA              0                   0
#> 600             0      0        NA              0                   0
#> 601             0      0        NA              0                   0
#> 602             0      0        NA              0                   0
#> 603             0      0        NA              0                   0
#> 604             0      0        NA              0                   0
#> 605             0      0        NA              0                   0
#> 606             0      0        NA              0                   0
#> 607             0      0        NA              0                   0
#> 608             0      0         0              0                   0
#> 609             0      0        NA              0                   0
#> 610             0      0        NA              0                   0
#> 611             0      0        NA              0                   0
#> 612             0      0         0              0                   0
#> 613             0      0        NA              0                   0
#> 614             0      0        NA              0                   0
#> 615             0      1         0              0                   0
#> 616             0      0         0              0                   0
#> 617             0      0        NA              0                   0
#> 618             0      0         0              0                   0
#> 619             0      0        NA              0                   0
#> 620             0      0         0              0                   0
#> 621             0      0        NA              0                   0
#> 622             0      0        NA              0                   0
#> 623             0      0        NA              0                   0
#> 624             0      0         0              0                   0
#> 625             0      0        NA              0                   0
#> 626             0      0        NA              0                   0
#> 627             0      0         0              0                   0
#> 628             0      0        NA              0                   0
#> 629             0      1         0              0                   0
#> 630             0      0         0              0                   0
#> 631             0      0        NA              0                   0
#> 632             0      0         0              0                   0
#> 633             0      0        NA              0                   0
#> 634             0      0         0              0                   0
#> 635             0      0        NA              0                   0
#> 636             0      0         0              0                   0
#> 637             0      0        NA              0                   0
#> 638             0      1         0              0                   0
#> 639             0      0         0              0                   0
#> 640             0      0        NA              0                   0
#> 641             0      0         0              0                   0
#> 642             0      0        NA              0                   0
#> 643             0      0        NA              0                   0
#> 644             0      1         0              0                   0
#> 645             0      0         0              0                   0
#> 646             0      0        NA              0                   0
#> 647             0      0         0              0                   0
#> 648             0      0        NA              0                   0
#> 649             0      0        NA              0                   0
#> 650             0      0        NA              0                   0
#> 651             0      0        NA              0                   0
#> 652             0      0        NA              0                   0
#> 653             0      1         0              0                   0
#> 654             0      0         0              0                   0
#> 655             0      0        NA              0                   0
#> 656             0      0         0              0                   0
#> 657             0      0        NA              0                   0
#> 658             0      1         0              0                   0
#> 659             0      0         0              0                   0
#> 660             0      0        NA              0                   0
#> 661             0      0         0              0                   0
#> 662             0      0        NA              0                   0
#> 663             0      0         0              0                   0
#> 664             0      0        NA              0                   0
#> 665             0      0         0              0                   0
#> 666             0      0        NA              0                   0
#> 667             0      1         0              0                   0
#> 668             0      0         0              0                   0
#> 669             0      0        NA              0                   0
#> 670             0      0         0              0                   0
#> 671             0      0        NA              0                   0
#> 672             0      0        NA              0                   0
#> 673             0      0         0              0                   0
#> 674             0      0        NA              0                   0
#> 675             0      1         0              0                   0
#> 676             0      0         0              0                   0
#> 677             0      0        NA              0                   0
#> 678             0      0        NA              0                   0
#> 679             0      0        NA              0                   0
#> 680             0      0        NA              0                   0
#> 681             0      0        NA              0                   0
#> 682             0      0         0              0                   0
#> 683             0      0        NA              0                   0
#> 684             0      0        NA              0                   0
#> 685             0      1         0              0                   0
#> 686             0      0         0              0                   0
#> 687             0      0        NA              0                   0
#> 688             0      0        NA              0                   0
#> 689             0      0        NA              0                   0
#> 690             0      0        NA              0                   0
#> 691             0      0         0              0                   0
#> 692             0      0        NA              0                   0
#> 693             0      1         0              0                   0
#> 694             0      0         0              0                   0
#> 695             0      0        NA              0                   0
#> 696             0      0         0              0                   0
#> 697             0      0        NA              0                   0
#> 698             0      1         0              0                   0
#> 699             0      0         0              0                   0
#> 700             0      0        NA              0                   0
#> 701             0      0         0              0                   0
#> 702             0      0        NA              0                   0
#> 703             0      0         0              0                   0
#> 704             0      0        NA              0                   0
#> 705             0      0         0              0                   0
#> 706             0      0        NA              0                   0
#> 707             0      1         0              0                   0
#> 708             0      0         0              0                   0
#> 709             0      0        NA              0                   0
#> 710             0      0        NA              0                   0
#> 711             0      0        NA              0                   0
#> 712             0      0        NA              0                   0
#> 713             0      1         0              0                   0
#> 714             0      0         0              0                   0
#> 715             0      0        NA              0                   0
#> 716             0      0        NA              0                   0
#> 717             0      0         0              0                   0
#> 718             0      0        NA              0                   0
#> 719             0      0        NA              0                   0
#> 720             0      1         0              0                   0
#> 721             0      0         0              0                   0
#> 722             0      0        NA              0                   0
#> 723             0      0        NA              0                   0
#> 724             0      0         0              0                   0
#> 725             0      0        NA              0                   0
#> 726             0      0         0              0                   0
#> 727             0      0        NA              0                   0
#> 728             0      0         0              0                   0
#> 729             0      0        NA              0                   0
#> 730             0      0        NA              0                   0
#> 731             0      0        NA              0                   0
#> 732             0      1         0              0                   0
#> 733             0      0         0              0                   0
#> 734             0      0        NA              0                   0
#> 735             0      0        NA              0                   0
#> 736             0      0         0              0                   0
#> 737             0      0        NA              0                   0
#> 738             0      0         0              0                   0
#> 739             0      0        NA              0                   0
#> 740             0      1         0              0                   0
#> 741             0      0         0              0                   0
#> 742             0      0        NA              0                   0
#> 743             0      0        NA              0                   0
#> 744             0      0        NA              0                   0
#> 745             0      0         0              0                   0
#> 746             0      0        NA              0                   0
#> 747             0      0        NA              0                   0
#> 748             0      0        NA              0                   0
#> 749             0      0         0              0                   0
#> 750             0      0        NA              0                   0
#> 751             0      1         0              0                   0
#> 752             0      0         0              0                   0
#> 753             0      0        NA              0                   0
#> 754             0      0         0              0                   0
#> 755             0      0        NA              0                   0
#> 756             0      0         0              0                   0
#> 757             0      0        NA              0                   0
#> 758             0      0        NA              0                   0
#> 759             0      1         0              0                   0
#> 760             0      0         0              0                   0
#> 761             0      0        NA              0                   0
#> 762             0      0         0              0                   0
#> 763             0      0        NA              0                   0
#> 764             0      1         0              0                   0
#> 765             0      0         0              0                   0
#> 766             0      0        NA              0                   0
#> 767             0      0         0              0                   0
#> 768             0      0        NA              0                   0
#> 769             0      0        NA              0                   0
#> 770             0      1         0              0                   0
#> 771             0      0         0              0                   0
#> 772             0      0        NA              0                   0
#> 773             0      0        NA              0                   0
#> 774             0      0         0              0                   0
#> 775             0      0        NA              0                   0
#> 776             0      1         0              0                   0
#> 777             0      0         0              0                   0
#> 778             0      0        NA              0                   0
#> 779             0      0        NA              0                   0
#> 780             0      0         0              0                   0
#> 781             0      0        NA              0                   0
#> 782             0      1         0              0                   0
#> 783             0      0         0              0                   0
#> 784             0      0        NA              0                   0
#> 785             0      0        NA              0                   0
#> 786             0      0         0              0                   0
#> 787             0      0        NA              0                   0
#> 788             0      1         0              0                   0
#> 789             0      0         0              0                   0
#> 790             0      0        NA              0                   0
#> 791             0      0         0              0                   0
#> 792             0      0        NA              0                   0
#> 793             0      0         0              0                   0
#> 794             0      0        NA              0                   0
#> 795             0      0         0              0                   0
#> 796             0      0        NA              0                   0
#> 797             0      1         0              0                   0
#> 798             0      0         0              0                   0
#> 799             0      0        NA              0                   0
#> 800             0      1         0              0                   0
#> 801             0      0         0              0                   0
#> 802             0      0        NA              0                   0
#> 803             0      0        NA              0                   0
#> 804             0      0         0              0                   0
#> 805             0      0        NA              0                   0
#> 806             0      0        NA              0                   0
#> 807             0      0        NA              0                   0
#> 808             0      0         0              0                   0
#> 809             0      0        NA              0                   0
#> 810             0      0        NA              0                   0
#> 811             0      0        NA              0                   0
#> 812             0      0        NA              0                   0
#> 813             0      0        NA              0                   0
#> 814             0      0        NA              0                   0
#> 815             0      0         0              0                   0
#> 816             0      0        NA              0                   0
#> 817             0      1         0              0                   0
#> 818             0      0         0              0                   0
#> 819             0      0        NA              0                   0
#> 820             0      0         0              0                   0
#> 821             0      0        NA              0                   0
#> 822             0      0         0              0                   0
#> 823             0      0        NA              0                   0
#> 824             0      1         0              0                   0
#> 825             0      0         0              0                   0
#> 826             0      0        NA              0                   0
#> 827             0      0        NA              0                   0
#> 828             0      0         0              0                   0
#> 829             0      0        NA              0                   0
#> 830             0      1         0              0                   0
#> 831             0      0         0              0                   0
#> 832             0      0        NA              0                   0
#> 833             0      0         0              0                   0
#> 834             0      0        NA              0                   0
#> 835             0      0         0              0                   0
#> 836             0      0        NA              0                   0
#> 837             0      1         0              0                   0
#> 838             0      0         0              0                   0
#> 839             0      0        NA              0                   0
#> 840             0      0         0              0                   0
#> 841             0      0        NA              0                   0
#> 842             0      0        NA              0                   0
#> 843             0      0        NA              0                   0
#> 844             0      0         0              0                   0
#> 845             0      0        NA              0                   0
#> 846             0      1         0              0                   0
#> 847             0      0         0              0                   0
#> 848             0      0        NA              0                   0
#> 849             0      0        NA              0                   0
#> 850             0      0         0              0                   0
#> 851             0      0        NA              0                   0
#> 852             0      0         0              0                   0
#> 853             0      0        NA              0                   0
#> 854             0      0         0              0                   0
#> 855             0      0        NA              0                   0
#> 856             0      0        NA              0                   0
#> 857             0      0        NA              0                   0
#> 858             0      1         0              0                   0
#> 859             0      0         0              0                   0
#> 860             0      0        NA              0                   0
#> 861             0      0        NA              0                   0
#> 862             0      0        NA              0                   0
#> 863             0      0         0              0                   0
#> 864             0      0        NA              0                   0
#> 865             0      0        NA              0                   0
#> 866             0      0        NA              0                   0
#> 867             0      0        NA              0                   0
#> 868             0      0        NA              0                   0
#> 869             0      0         0              0                   0
#> 870             0      0        NA              0                   0
#> 871             0      1         0              0                   0
#> 872             0      0         0              0                   0
#> 873             0      0        NA              0                   0
#> 874             0      0         0              0                   0
#> 875             0      0        NA              0                   0
#> 876             0      0         0              0                   0
#> 877             0      0        NA              0                   0
#> 878             0      0        NA              0                   0
#> 879             0      0         0              0                   0
#> 880             0      0        NA              0                   0
#> 881             0      0        NA              0                   0
#> 882             0      0         0              0                   0
#> 883             0      0        NA              0                   0
#> 884             0      0        NA              0                   0
#> 885             0      0        NA              0                   0
#> 886             0      0        NA              0                   0
#> 887             0      0         0              0                   0
#> 888             0      0        NA              0                   0
#> 889             0      1         0              0                   0
#> 890             0      0         0              0                   0
#> 891             0      0        NA              0                   0
#> 892             0      0         0              0                   0
#> 893             0      0        NA              0                   0
#> 894             0      0        NA              0                   0
#> 895             0      0        NA              0                   0
#> 896             0      0         0              0                   0
#> 897             0      0        NA              0                   0
#> 898             0      1         0              0                   0
#> 899             0      0         0              0                   0
#> 900             0      0        NA              0                   0
#> 901             0      0         0              0                   0
#> 902             0      0        NA              0                   0
#> 903             0      0         0              0                   0
#> 904             0      0        NA              0                   0
#> 905             0      0         0              0                   0
#> 906             0      0        NA              0                   0
#> 907             0      1         0              0                   0
#> 908             0      0         0              0                   0
#> 909             0      0        NA              0                   0
#> 910             0      0         0              0                   0
#> 911             0      0        NA              0                   0
#> 912             0      0        NA              0                   0
#> 913             0      1         0              0                   0
#> 914             0      0         0              0                   0
#> 915             0      0        NA              0                   0
#> 916             0      0        NA              0                   0
#> 917             0      0        NA              0                   0
#> 918             0      0        NA              0                   0
#> 919             0      1         0              0                   0
#> 920             0      0         0              0                   0
#> 921             0      0        NA              0                   0
#> 922             0      0        NA              0                   0
#> 923             0      0        NA              0                   0
#> 924             0      0        NA              0                   0
#> 925             0      1         0              0                   0
#> 926             0      0         0              0                   0
#> 927             0      0        NA              0                   0
#> 928             0      1         0              0                   0
#> 929             0      0         0              0                   0
#> 930             0      0        NA              0                   0
#> 931             0      0        NA              0                   0
#> 932             0      0        NA              0                   0
#> 933             0      0        NA              0                   0
#> 934             0      0         0              0                   0
#> 935             0      0        NA              0                   0
#> 936             0      0        NA              0                   0
#> 937             0      1         0              0                   0
#> 938             0      0         0              0                   0
#> 939             0      0        NA              0                   0
#> 940             0      0        NA              0                   0
#> 941             0      0         0              0                   0
#> 942             0      0        NA              0                   0
#> 943             0      0         0              0                   0
#> 944             0      0        NA              0                   0
#> 945             0      0        NA              0                   0
#> 946             0      0        NA              0                   0
#> 947             0      1         0              0                   0
#> 948             0      0         0              0                   0
#> 949             0      0        NA              0                   0
#> 950             0      0        NA              0                   0
#> 951             0      0         0              0                   0
#> 952             0      0        NA              0                   0
#> 953             0      0        NA              0                   0
#> 954             0      0        NA              0                   0
#> 955             0      0        NA              0                   0
#> 956             0      0        NA              0                   0
#> 957             0      0        NA              0                   0
#> 958             0      1         0              0                   0
#> 959             0      0         0              0                   0
#> 960             0      0        NA              0                   0
#> 961             0      0        NA              0                   0
#> 962             0      0        NA              0                   0
#> 963             0      0        NA              0                   0
#> 964             0      0        NA              0                   0
#> 965             0      1         0              0                   0
#> 966             0      0         0              0                   0
#> 967             0      0        NA              0                   0
#> 968             0      1         0              0                   0
#> 969             0      0         0              0                   0
#> 970             0      0        NA              0                   0
#> 971             0      0         0              0                   0
#> 972             0      0        NA              0                   0
#> 973             0      1         0              0                   0
#> 974             0      0         0              0                   0
#> 975             0      0        NA              0                   0
#> 976             0     NA         1              0                   0
#> 977             0     NA         1              0                   0
#> 978             0     NA         1              0                   0
#> 979             0     NA         1              0                   0
#> 980             0     NA         1              0                   0
#> 981             0     NA         1              0                   0
#> 982             0     NA         1              0                   0
#> 983             0     NA         1              0                   0
#> 984             0     NA         1              0                   0
#> 985             0     NA         1              0                   0
#> 986             0     NA         1              0                   0
#> 987             0     NA         1              0                   0
#> 988             0     NA         1              0                   0
#> 989             0     NA         1              0                   0
#> 990             0     NA         1              0                   0
#> 991             0     NA         1              0                   0
#> 992             0     NA         1              0                   0
#> 993             0     NA         1              0                   0
#> 994             0     NA         1              0                   0
#> 995             0     NA         1              0                   0
#> 996             0     NA         1              0                   0
#>     singleCodeError multipleCodeError gapBefore lastSibling
#> 1                NA                NA        NA          NA
#> 2                NA                NA        NA          NA
#> 3                NA                NA        NA          NA
#> 4                NA                NA        NA          NA
#> 5                NA                NA        NA          NA
#> 6                NA                NA        NA          NA
#> 7                NA                NA        NA          NA
#> 8                NA                NA        NA          NA
#> 9                NA                NA        NA          NA
#> 10               NA                NA        NA          NA
#> 11               NA                NA        NA          NA
#> 12               NA                NA        NA          NA
#> 13               NA                NA        NA          NA
#> 14               NA                NA        NA          NA
#> 15               NA                NA        NA          NA
#> 16               NA                NA        NA          NA
#> 17               NA                NA        NA          NA
#> 18               NA                NA        NA          NA
#> 19               NA                NA        NA          NA
#> 20               NA                NA        NA          NA
#> 21               NA                NA        NA          NA
#> 22               NA                NA        NA          NA
#> 23               NA                NA        NA          NA
#> 24               NA                NA        NA          NA
#> 25               NA                NA        NA          NA
#> 26               NA                NA        NA          NA
#> 27               NA                NA        NA          NA
#> 28               NA                NA        NA          NA
#> 29               NA                NA        NA          NA
#> 30               NA                NA        NA          NA
#> 31               NA                NA        NA          NA
#> 32               NA                NA        NA          NA
#> 33               NA                NA        NA          NA
#> 34               NA                NA        NA          NA
#> 35               NA                NA        NA          NA
#> 36               NA                NA        NA          NA
#> 37               NA                NA        NA          NA
#> 38               NA                NA        NA          NA
#> 39               NA                NA        NA          NA
#> 40               NA                NA        NA          NA
#> 41               NA                NA        NA          NA
#> 42               NA                NA        NA          NA
#> 43               NA                NA        NA          NA
#> 44               NA                NA        NA          NA
#> 45               NA                NA        NA          NA
#> 46               NA                NA        NA          NA
#> 47               NA                NA        NA          NA
#> 48               NA                NA        NA          NA
#> 49               NA                NA        NA          NA
#> 50               NA                NA        NA          NA
#> 51               NA                NA        NA          NA
#> 52               NA                NA        NA          NA
#> 53               NA                NA        NA          NA
#> 54               NA                NA        NA          NA
#> 55               NA                NA        NA          NA
#> 56               NA                NA        NA          NA
#> 57               NA                NA        NA          NA
#> 58               NA                NA        NA          NA
#> 59               NA                NA        NA          NA
#> 60               NA                NA        NA          NA
#> 61               NA                NA        NA          NA
#> 62               NA                NA        NA          NA
#> 63               NA                NA        NA          NA
#> 64               NA                NA        NA          NA
#> 65               NA                NA        NA          NA
#> 66               NA                NA        NA          NA
#> 67               NA                NA        NA          NA
#> 68               NA                NA        NA          NA
#> 69               NA                NA        NA          NA
#> 70               NA                NA        NA          NA
#> 71               NA                NA        NA          NA
#> 72               NA                NA        NA          NA
#> 73               NA                NA        NA          NA
#> 74               NA                NA        NA          NA
#> 75               NA                NA        NA          NA
#> 76               NA                NA        NA          NA
#> 77               NA                NA        NA          NA
#> 78               NA                NA        NA          NA
#> 79               NA                NA        NA          NA
#> 80               NA                NA        NA          NA
#> 81               NA                NA        NA          NA
#> 82               NA                NA        NA          NA
#> 83               NA                NA        NA          NA
#> 84               NA                NA        NA          NA
#> 85               NA                NA        NA          NA
#> 86               NA                NA        NA          NA
#> 87               NA                NA        NA          NA
#> 88               NA                NA        NA          NA
#> 89               NA                NA        NA          NA
#> 90               NA                NA        NA          NA
#> 91               NA                NA        NA          NA
#> 92               NA                NA        NA          NA
#> 93               NA                NA        NA          NA
#> 94               NA                NA        NA          NA
#> 95               NA                NA        NA          NA
#> 96               NA                NA        NA          NA
#> 97               NA                NA        NA          NA
#> 98               NA                NA        NA          NA
#> 99               NA                NA        NA          NA
#> 100              NA                NA        NA          NA
#> 101              NA                NA        NA          NA
#> 102              NA                NA        NA          NA
#> 103              NA                NA        NA          NA
#> 104              NA                NA        NA          NA
#> 105              NA                NA        NA          NA
#> 106              NA                NA        NA          NA
#> 107              NA                NA        NA          NA
#> 108              NA                NA        NA          NA
#> 109              NA                NA        NA          NA
#> 110              NA                NA        NA          NA
#> 111              NA                NA        NA          NA
#> 112              NA                NA        NA          NA
#> 113              NA                NA        NA          NA
#> 114              NA                NA        NA          NA
#> 115              NA                NA        NA          NA
#> 116              NA                NA        NA          NA
#> 117              NA                NA        NA          NA
#> 118              NA                NA        NA          NA
#> 119              NA                NA        NA          NA
#> 120              NA                NA        NA          NA
#> 121              NA                NA        NA          NA
#> 122              NA                NA        NA          NA
#> 123              NA                NA        NA          NA
#> 124              NA                NA        NA          NA
#> 125              NA                NA        NA          NA
#> 126              NA                NA        NA          NA
#> 127              NA                NA        NA          NA
#> 128              NA                NA        NA          NA
#> 129              NA                NA        NA          NA
#> 130              NA                NA        NA          NA
#> 131              NA                NA        NA          NA
#> 132              NA                NA        NA          NA
#> 133              NA                NA        NA          NA
#> 134              NA                NA        NA          NA
#> 135              NA                NA        NA          NA
#> 136              NA                NA        NA          NA
#> 137              NA                NA        NA          NA
#> 138              NA                NA        NA          NA
#> 139              NA                NA        NA          NA
#> 140              NA                NA        NA          NA
#> 141              NA                NA        NA          NA
#> 142              NA                NA        NA          NA
#> 143              NA                NA        NA          NA
#> 144              NA                NA        NA          NA
#> 145              NA                NA        NA          NA
#> 146              NA                NA        NA          NA
#> 147              NA                NA        NA          NA
#> 148              NA                NA        NA          NA
#> 149              NA                NA        NA          NA
#> 150              NA                NA        NA          NA
#> 151              NA                NA        NA          NA
#> 152              NA                NA        NA          NA
#> 153              NA                NA        NA          NA
#> 154              NA                NA        NA          NA
#> 155              NA                NA        NA          NA
#> 156              NA                NA        NA          NA
#> 157              NA                NA        NA          NA
#> 158              NA                NA        NA          NA
#> 159              NA                NA        NA          NA
#> 160              NA                NA        NA          NA
#> 161              NA                NA        NA          NA
#> 162              NA                NA        NA          NA
#> 163              NA                NA        NA          NA
#> 164              NA                NA        NA          NA
#> 165              NA                NA        NA          NA
#> 166              NA                NA        NA          NA
#> 167              NA                NA        NA          NA
#> 168              NA                NA        NA          NA
#> 169              NA                NA        NA          NA
#> 170              NA                NA        NA          NA
#> 171              NA                NA        NA          NA
#> 172              NA                NA        NA          NA
#> 173              NA                NA        NA          NA
#> 174              NA                NA        NA          NA
#> 175              NA                NA        NA          NA
#> 176              NA                NA        NA          NA
#> 177              NA                NA        NA          NA
#> 178              NA                NA        NA          NA
#> 179              NA                NA        NA          NA
#> 180              NA                NA        NA          NA
#> 181              NA                NA        NA          NA
#> 182              NA                NA        NA          NA
#> 183              NA                NA        NA          NA
#> 184              NA                NA        NA          NA
#> 185              NA                NA        NA          NA
#> 186              NA                NA        NA          NA
#> 187              NA                NA        NA          NA
#> 188              NA                NA        NA          NA
#> 189              NA                NA        NA          NA
#> 190              NA                NA        NA          NA
#> 191              NA                NA        NA          NA
#> 192              NA                NA        NA          NA
#> 193              NA                NA        NA          NA
#> 194              NA                NA        NA          NA
#> 195              NA                NA        NA          NA
#> 196              NA                NA        NA          NA
#> 197              NA                NA        NA          NA
#> 198              NA                NA        NA          NA
#> 199              NA                NA        NA          NA
#> 200              NA                NA        NA          NA
#> 201              NA                NA        NA          NA
#> 202              NA                NA        NA          NA
#> 203              NA                NA        NA          NA
#> 204              NA                NA        NA          NA
#> 205              NA                NA        NA          NA
#> 206              NA                NA        NA          NA
#> 207              NA                NA        NA          NA
#> 208              NA                NA        NA          NA
#> 209              NA                NA        NA          NA
#> 210              NA                NA        NA          NA
#> 211              NA                NA        NA          NA
#> 212              NA                NA        NA          NA
#> 213              NA                NA        NA          NA
#> 214              NA                NA        NA          NA
#> 215              NA                NA        NA          NA
#> 216              NA                NA        NA          NA
#> 217              NA                NA        NA          NA
#> 218              NA                NA        NA          NA
#> 219              NA                NA        NA          NA
#> 220              NA                NA        NA          NA
#> 221              NA                NA        NA          NA
#> 222              NA                NA        NA          NA
#> 223              NA                NA        NA          NA
#> 224              NA                NA        NA          NA
#> 225              NA                NA        NA          NA
#> 226              NA                NA        NA          NA
#> 227              NA                NA        NA          NA
#> 228              NA                NA        NA          NA
#> 229              NA                NA        NA          NA
#> 230              NA                NA        NA          NA
#> 231              NA                NA        NA          NA
#> 232              NA                NA        NA          NA
#> 233              NA                NA        NA          NA
#> 234              NA                NA        NA          NA
#> 235              NA                NA        NA          NA
#> 236              NA                NA        NA          NA
#> 237              NA                NA        NA          NA
#> 238              NA                NA        NA          NA
#> 239              NA                NA        NA          NA
#> 240              NA                NA        NA          NA
#> 241              NA                NA        NA          NA
#> 242              NA                NA        NA          NA
#> 243              NA                NA        NA          NA
#> 244              NA                NA        NA          NA
#> 245              NA                NA        NA          NA
#> 246              NA                NA        NA          NA
#> 247              NA                NA        NA          NA
#> 248              NA                NA        NA          NA
#> 249              NA                NA        NA          NA
#> 250              NA                NA        NA          NA
#> 251              NA                NA        NA          NA
#> 252              NA                NA        NA          NA
#> 253              NA                NA        NA          NA
#> 254              NA                NA        NA          NA
#> 255              NA                NA        NA          NA
#> 256              NA                NA        NA          NA
#> 257              NA                NA        NA          NA
#> 258              NA                NA        NA          NA
#> 259              NA                NA        NA          NA
#> 260              NA                NA        NA          NA
#> 261              NA                NA        NA          NA
#> 262              NA                NA        NA          NA
#> 263              NA                NA        NA          NA
#> 264              NA                NA        NA          NA
#> 265              NA                NA        NA          NA
#> 266              NA                NA        NA          NA
#> 267              NA                NA        NA          NA
#> 268              NA                NA        NA          NA
#> 269              NA                NA        NA          NA
#> 270              NA                NA        NA          NA
#> 271              NA                NA        NA          NA
#> 272              NA                NA        NA          NA
#> 273              NA                NA        NA          NA
#> 274              NA                NA        NA          NA
#> 275              NA                NA        NA          NA
#> 276              NA                NA        NA          NA
#> 277              NA                NA        NA          NA
#> 278              NA                NA        NA          NA
#> 279              NA                NA        NA          NA
#> 280              NA                NA        NA          NA
#> 281              NA                NA        NA          NA
#> 282              NA                NA        NA          NA
#> 283              NA                NA        NA          NA
#> 284              NA                NA        NA          NA
#> 285              NA                NA        NA          NA
#> 286              NA                NA        NA          NA
#> 287              NA                NA        NA          NA
#> 288              NA                NA        NA          NA
#> 289              NA                NA        NA          NA
#> 290              NA                NA        NA          NA
#> 291              NA                NA        NA          NA
#> 292              NA                NA        NA          NA
#> 293              NA                NA        NA          NA
#> 294              NA                NA        NA          NA
#> 295              NA                NA        NA          NA
#> 296              NA                NA        NA          NA
#> 297              NA                NA        NA          NA
#> 298              NA                NA        NA          NA
#> 299              NA                NA        NA          NA
#> 300              NA                NA        NA          NA
#> 301              NA                NA        NA          NA
#> 302              NA                NA        NA          NA
#> 303              NA                NA        NA          NA
#> 304              NA                NA        NA          NA
#> 305              NA                NA        NA          NA
#> 306              NA                NA        NA          NA
#> 307              NA                NA        NA          NA
#> 308              NA                NA        NA          NA
#> 309              NA                NA        NA          NA
#> 310              NA                NA        NA          NA
#> 311              NA                NA        NA          NA
#> 312              NA                NA        NA          NA
#> 313              NA                NA        NA          NA
#> 314              NA                NA        NA          NA
#> 315              NA                NA        NA          NA
#> 316              NA                NA        NA          NA
#> 317              NA                NA        NA          NA
#> 318              NA                NA        NA          NA
#> 319              NA                NA        NA          NA
#> 320              NA                NA        NA          NA
#> 321              NA                NA        NA          NA
#> 322              NA                NA        NA          NA
#> 323              NA                NA        NA          NA
#> 324              NA                NA        NA          NA
#> 325              NA                NA        NA          NA
#> 326              NA                NA        NA          NA
#> 327              NA                NA        NA          NA
#> 328              NA                NA        NA          NA
#> 329              NA                NA        NA          NA
#> 330              NA                NA        NA          NA
#> 331              NA                NA        NA          NA
#> 332              NA                NA        NA          NA
#> 333              NA                NA        NA          NA
#> 334              NA                NA        NA          NA
#> 335              NA                NA        NA          NA
#> 336              NA                NA        NA          NA
#> 337              NA                NA        NA          NA
#> 338              NA                NA        NA          NA
#> 339              NA                NA        NA          NA
#> 340              NA                NA        NA          NA
#> 341              NA                NA        NA          NA
#> 342              NA                NA        NA          NA
#> 343              NA                NA        NA          NA
#> 344              NA                NA        NA          NA
#> 345              NA                NA        NA          NA
#> 346              NA                NA        NA          NA
#> 347              NA                NA        NA          NA
#> 348              NA                NA        NA          NA
#> 349              NA                NA        NA          NA
#> 350              NA                NA        NA          NA
#> 351              NA                NA        NA          NA
#> 352              NA                NA        NA          NA
#> 353              NA                NA        NA          NA
#> 354              NA                NA        NA          NA
#> 355              NA                NA        NA          NA
#> 356              NA                NA        NA          NA
#> 357              NA                NA        NA          NA
#> 358              NA                NA        NA          NA
#> 359              NA                NA        NA          NA
#> 360              NA                NA        NA          NA
#> 361              NA                NA        NA          NA
#> 362              NA                NA        NA          NA
#> 363              NA                NA        NA          NA
#> 364              NA                NA        NA          NA
#> 365              NA                NA        NA          NA
#> 366              NA                NA        NA          NA
#> 367              NA                NA        NA          NA
#> 368              NA                NA        NA          NA
#> 369              NA                NA        NA          NA
#> 370              NA                NA        NA          NA
#> 371              NA                NA        NA          NA
#> 372              NA                NA        NA          NA
#> 373              NA                NA        NA          NA
#> 374              NA                NA        NA          NA
#> 375              NA                NA        NA          NA
#> 376              NA                NA        NA          NA
#> 377              NA                NA        NA          NA
#> 378              NA                NA        NA          NA
#> 379              NA                NA        NA          NA
#> 380              NA                NA        NA          NA
#> 381              NA                NA        NA          NA
#> 382              NA                NA        NA          NA
#> 383              NA                NA        NA          NA
#> 384              NA                NA        NA          NA
#> 385              NA                NA        NA          NA
#> 386              NA                NA        NA          NA
#> 387              NA                NA        NA          NA
#> 388              NA                NA        NA          NA
#> 389              NA                NA        NA          NA
#> 390              NA                NA        NA          NA
#> 391              NA                NA        NA          NA
#> 392              NA                NA        NA          NA
#> 393              NA                NA        NA          NA
#> 394              NA                NA        NA          NA
#> 395              NA                NA        NA          NA
#> 396              NA                NA        NA          NA
#> 397              NA                NA        NA          NA
#> 398              NA                NA        NA          NA
#> 399              NA                NA        NA          NA
#> 400              NA                NA        NA          NA
#> 401              NA                NA        NA          NA
#> 402              NA                NA        NA          NA
#> 403              NA                NA        NA          NA
#> 404              NA                NA        NA          NA
#> 405              NA                NA        NA          NA
#> 406              NA                NA        NA          NA
#> 407              NA                NA        NA          NA
#> 408              NA                NA        NA          NA
#> 409              NA                NA        NA          NA
#> 410              NA                NA        NA          NA
#> 411              NA                NA        NA          NA
#> 412              NA                NA        NA          NA
#> 413              NA                NA        NA          NA
#> 414              NA                NA        NA          NA
#> 415              NA                NA        NA          NA
#> 416              NA                NA        NA          NA
#> 417              NA                NA        NA          NA
#> 418              NA                NA        NA          NA
#> 419              NA                NA        NA          NA
#> 420              NA                NA        NA          NA
#> 421              NA                NA        NA          NA
#> 422              NA                NA        NA          NA
#> 423              NA                NA        NA          NA
#> 424              NA                NA        NA          NA
#> 425              NA                NA        NA          NA
#> 426              NA                NA        NA          NA
#> 427              NA                NA        NA          NA
#> 428              NA                NA        NA          NA
#> 429              NA                NA        NA          NA
#> 430              NA                NA        NA          NA
#> 431              NA                NA        NA          NA
#> 432              NA                NA        NA          NA
#> 433              NA                NA        NA          NA
#> 434              NA                NA        NA          NA
#> 435              NA                NA        NA          NA
#> 436              NA                NA        NA          NA
#> 437              NA                NA        NA          NA
#> 438              NA                NA        NA          NA
#> 439              NA                NA        NA          NA
#> 440              NA                NA        NA          NA
#> 441              NA                NA        NA          NA
#> 442              NA                NA        NA          NA
#> 443              NA                NA        NA          NA
#> 444              NA                NA        NA          NA
#> 445              NA                NA        NA          NA
#> 446              NA                NA        NA          NA
#> 447              NA                NA        NA          NA
#> 448              NA                NA        NA          NA
#> 449              NA                NA        NA          NA
#> 450              NA                NA        NA          NA
#> 451              NA                NA        NA          NA
#> 452              NA                NA        NA          NA
#> 453              NA                NA        NA          NA
#> 454              NA                NA        NA          NA
#> 455              NA                NA        NA          NA
#> 456              NA                NA        NA          NA
#> 457              NA                NA        NA          NA
#> 458              NA                NA        NA          NA
#> 459              NA                NA        NA          NA
#> 460              NA                NA        NA          NA
#> 461              NA                NA        NA          NA
#> 462              NA                NA        NA          NA
#> 463              NA                NA        NA          NA
#> 464              NA                NA        NA          NA
#> 465              NA                NA        NA          NA
#> 466              NA                NA        NA          NA
#> 467              NA                NA        NA          NA
#> 468              NA                NA        NA          NA
#> 469              NA                NA        NA          NA
#> 470              NA                NA        NA          NA
#> 471              NA                NA        NA          NA
#> 472              NA                NA        NA          NA
#> 473              NA                NA        NA          NA
#> 474              NA                NA        NA          NA
#> 475              NA                NA        NA          NA
#> 476              NA                NA        NA          NA
#> 477              NA                NA        NA          NA
#> 478              NA                NA        NA          NA
#> 479              NA                NA        NA          NA
#> 480              NA                NA        NA          NA
#> 481              NA                NA        NA          NA
#> 482              NA                NA        NA          NA
#> 483              NA                NA        NA          NA
#> 484              NA                NA        NA          NA
#> 485              NA                NA        NA          NA
#> 486              NA                NA        NA          NA
#> 487              NA                NA        NA          NA
#> 488              NA                NA        NA          NA
#> 489              NA                NA        NA          NA
#> 490              NA                NA        NA          NA
#> 491              NA                NA        NA          NA
#> 492              NA                NA        NA          NA
#> 493              NA                NA        NA          NA
#> 494              NA                NA        NA          NA
#> 495              NA                NA        NA          NA
#> 496              NA                NA        NA          NA
#> 497              NA                NA        NA          NA
#> 498              NA                NA        NA          NA
#> 499              NA                NA        NA          NA
#> 500              NA                NA        NA          NA
#> 501              NA                NA        NA          NA
#> 502              NA                NA        NA          NA
#> 503              NA                NA        NA          NA
#> 504              NA                NA        NA          NA
#> 505              NA                NA        NA          NA
#> 506              NA                NA        NA          NA
#> 507              NA                NA        NA          NA
#> 508              NA                NA        NA          NA
#> 509              NA                NA        NA          NA
#> 510              NA                NA        NA          NA
#> 511              NA                NA        NA          NA
#> 512              NA                NA        NA          NA
#> 513              NA                NA        NA          NA
#> 514              NA                NA        NA          NA
#> 515              NA                NA        NA          NA
#> 516              NA                NA        NA          NA
#> 517              NA                NA        NA          NA
#> 518              NA                NA        NA          NA
#> 519              NA                NA        NA          NA
#> 520              NA                NA        NA          NA
#> 521              NA                NA        NA          NA
#> 522              NA                NA        NA          NA
#> 523              NA                NA        NA          NA
#> 524              NA                NA        NA          NA
#> 525              NA                NA        NA          NA
#> 526              NA                NA        NA          NA
#> 527              NA                NA        NA          NA
#> 528              NA                NA        NA          NA
#> 529              NA                NA        NA          NA
#> 530              NA                NA        NA          NA
#> 531              NA                NA        NA          NA
#> 532              NA                NA        NA          NA
#> 533              NA                NA        NA          NA
#> 534              NA                NA        NA          NA
#> 535              NA                NA        NA          NA
#> 536              NA                NA        NA          NA
#> 537              NA                NA        NA          NA
#> 538              NA                NA        NA          NA
#> 539              NA                NA        NA          NA
#> 540              NA                NA        NA          NA
#> 541              NA                NA        NA          NA
#> 542              NA                NA        NA          NA
#> 543              NA                NA        NA          NA
#> 544              NA                NA        NA          NA
#> 545              NA                NA        NA          NA
#> 546              NA                NA        NA          NA
#> 547              NA                NA        NA          NA
#> 548              NA                NA        NA          NA
#> 549              NA                NA        NA          NA
#> 550              NA                NA        NA          NA
#> 551              NA                NA        NA          NA
#> 552              NA                NA        NA          NA
#> 553              NA                NA        NA          NA
#> 554              NA                NA        NA          NA
#> 555              NA                NA        NA          NA
#> 556              NA                NA        NA          NA
#> 557              NA                NA        NA          NA
#> 558              NA                NA        NA          NA
#> 559              NA                NA        NA          NA
#> 560              NA                NA        NA          NA
#> 561              NA                NA        NA          NA
#> 562              NA                NA        NA          NA
#> 563              NA                NA        NA          NA
#> 564              NA                NA        NA          NA
#> 565              NA                NA        NA          NA
#> 566              NA                NA        NA          NA
#> 567              NA                NA        NA          NA
#> 568              NA                NA        NA          NA
#> 569              NA                NA        NA          NA
#> 570              NA                NA        NA          NA
#> 571              NA                NA        NA          NA
#> 572              NA                NA        NA          NA
#> 573              NA                NA        NA          NA
#> 574              NA                NA        NA          NA
#> 575              NA                NA        NA          NA
#> 576              NA                NA        NA          NA
#> 577              NA                NA        NA          NA
#> 578              NA                NA        NA          NA
#> 579              NA                NA        NA          NA
#> 580              NA                NA        NA          NA
#> 581              NA                NA        NA          NA
#> 582              NA                NA        NA          NA
#> 583              NA                NA        NA          NA
#> 584              NA                NA        NA          NA
#> 585              NA                NA        NA          NA
#> 586              NA                NA        NA          NA
#> 587              NA                NA        NA          NA
#> 588              NA                NA        NA          NA
#> 589              NA                NA        NA          NA
#> 590              NA                NA        NA          NA
#> 591              NA                NA        NA          NA
#> 592              NA                NA        NA          NA
#> 593              NA                NA        NA          NA
#> 594              NA                NA        NA          NA
#> 595              NA                NA        NA          NA
#> 596              NA                NA        NA          NA
#> 597              NA                NA        NA          NA
#> 598              NA                NA        NA          NA
#> 599              NA                NA        NA          NA
#> 600              NA                NA        NA          NA
#> 601              NA                NA        NA          NA
#> 602              NA                NA        NA          NA
#> 603              NA                NA        NA          NA
#> 604              NA                NA        NA          NA
#> 605              NA                NA        NA          NA
#> 606              NA                NA        NA          NA
#> 607              NA                NA        NA          NA
#> 608              NA                NA        NA          NA
#> 609              NA                NA        NA          NA
#> 610              NA                NA        NA          NA
#> 611              NA                NA        NA          NA
#> 612              NA                NA        NA          NA
#> 613              NA                NA        NA          NA
#> 614              NA                NA        NA          NA
#> 615              NA                NA        NA          NA
#> 616              NA                NA        NA          NA
#> 617              NA                NA        NA          NA
#> 618              NA                NA        NA          NA
#> 619              NA                NA        NA          NA
#> 620              NA                NA        NA          NA
#> 621              NA                NA        NA          NA
#> 622              NA                NA        NA          NA
#> 623              NA                NA        NA          NA
#> 624              NA                NA        NA          NA
#> 625              NA                NA        NA          NA
#> 626              NA                NA        NA          NA
#> 627              NA                NA        NA          NA
#> 628              NA                NA        NA          NA
#> 629              NA                NA        NA          NA
#> 630              NA                NA        NA          NA
#> 631              NA                NA        NA          NA
#> 632              NA                NA        NA          NA
#> 633              NA                NA        NA          NA
#> 634              NA                NA        NA          NA
#> 635              NA                NA        NA          NA
#> 636              NA                NA        NA          NA
#> 637              NA                NA        NA          NA
#> 638              NA                NA        NA          NA
#> 639              NA                NA        NA          NA
#> 640              NA                NA        NA          NA
#> 641              NA                NA        NA          NA
#> 642              NA                NA        NA          NA
#> 643              NA                NA        NA          NA
#> 644              NA                NA        NA          NA
#> 645              NA                NA        NA          NA
#> 646              NA                NA        NA          NA
#> 647              NA                NA        NA          NA
#> 648              NA                NA        NA          NA
#> 649              NA                NA        NA          NA
#> 650              NA                NA        NA          NA
#> 651              NA                NA        NA          NA
#> 652              NA                NA        NA          NA
#> 653              NA                NA        NA          NA
#> 654              NA                NA        NA          NA
#> 655              NA                NA        NA          NA
#> 656              NA                NA        NA          NA
#> 657              NA                NA        NA          NA
#> 658              NA                NA        NA          NA
#> 659              NA                NA        NA          NA
#> 660              NA                NA        NA          NA
#> 661              NA                NA        NA          NA
#> 662              NA                NA        NA          NA
#> 663              NA                NA        NA          NA
#> 664              NA                NA        NA          NA
#> 665              NA                NA        NA          NA
#> 666              NA                NA        NA          NA
#> 667              NA                NA        NA          NA
#> 668              NA                NA        NA          NA
#> 669              NA                NA        NA          NA
#> 670              NA                NA        NA          NA
#> 671              NA                NA        NA          NA
#> 672              NA                NA        NA          NA
#> 673              NA                NA        NA          NA
#> 674              NA                NA        NA          NA
#> 675              NA                NA        NA          NA
#> 676              NA                NA        NA          NA
#> 677              NA                NA        NA          NA
#> 678              NA                NA        NA          NA
#> 679              NA                NA        NA          NA
#> 680              NA                NA        NA          NA
#> 681              NA                NA        NA          NA
#> 682              NA                NA        NA          NA
#> 683              NA                NA        NA          NA
#> 684              NA                NA        NA          NA
#> 685              NA                NA        NA          NA
#> 686              NA                NA        NA          NA
#> 687              NA                NA        NA          NA
#> 688              NA                NA        NA          NA
#> 689              NA                NA        NA          NA
#> 690              NA                NA        NA          NA
#> 691              NA                NA        NA          NA
#> 692              NA                NA        NA          NA
#> 693              NA                NA        NA          NA
#> 694              NA                NA        NA          NA
#> 695              NA                NA        NA          NA
#> 696              NA                NA        NA          NA
#> 697              NA                NA        NA          NA
#> 698              NA                NA        NA          NA
#> 699              NA                NA        NA          NA
#> 700              NA                NA        NA          NA
#> 701              NA                NA        NA          NA
#> 702              NA                NA        NA          NA
#> 703              NA                NA        NA          NA
#> 704              NA                NA        NA          NA
#> 705              NA                NA        NA          NA
#> 706              NA                NA        NA          NA
#> 707              NA                NA        NA          NA
#> 708              NA                NA        NA          NA
#> 709              NA                NA        NA          NA
#> 710              NA                NA        NA          NA
#> 711              NA                NA        NA          NA
#> 712              NA                NA        NA          NA
#> 713              NA                NA        NA          NA
#> 714              NA                NA        NA          NA
#> 715              NA                NA        NA          NA
#> 716              NA                NA        NA          NA
#> 717              NA                NA        NA          NA
#> 718              NA                NA        NA          NA
#> 719              NA                NA        NA          NA
#> 720              NA                NA        NA          NA
#> 721              NA                NA        NA          NA
#> 722              NA                NA        NA          NA
#> 723              NA                NA        NA          NA
#> 724              NA                NA        NA          NA
#> 725              NA                NA        NA          NA
#> 726              NA                NA        NA          NA
#> 727              NA                NA        NA          NA
#> 728              NA                NA        NA          NA
#> 729              NA                NA        NA          NA
#> 730              NA                NA        NA          NA
#> 731              NA                NA        NA          NA
#> 732              NA                NA        NA          NA
#> 733              NA                NA        NA          NA
#> 734              NA                NA        NA          NA
#> 735              NA                NA        NA          NA
#> 736              NA                NA        NA          NA
#> 737              NA                NA        NA          NA
#> 738              NA                NA        NA          NA
#> 739              NA                NA        NA          NA
#> 740              NA                NA        NA          NA
#> 741              NA                NA        NA          NA
#> 742              NA                NA        NA          NA
#> 743              NA                NA        NA          NA
#> 744              NA                NA        NA          NA
#> 745              NA                NA        NA          NA
#> 746              NA                NA        NA          NA
#> 747              NA                NA        NA          NA
#> 748              NA                NA        NA          NA
#> 749              NA                NA        NA          NA
#> 750              NA                NA        NA          NA
#> 751              NA                NA        NA          NA
#> 752              NA                NA        NA          NA
#> 753              NA                NA        NA          NA
#> 754              NA                NA        NA          NA
#> 755              NA                NA        NA          NA
#> 756              NA                NA        NA          NA
#> 757              NA                NA        NA          NA
#> 758              NA                NA        NA          NA
#> 759              NA                NA        NA          NA
#> 760              NA                NA        NA          NA
#> 761              NA                NA        NA          NA
#> 762              NA                NA        NA          NA
#> 763              NA                NA        NA          NA
#> 764              NA                NA        NA          NA
#> 765              NA                NA        NA          NA
#> 766              NA                NA        NA          NA
#> 767              NA                NA        NA          NA
#> 768              NA                NA        NA          NA
#> 769              NA                NA        NA          NA
#> 770              NA                NA        NA          NA
#> 771              NA                NA        NA          NA
#> 772              NA                NA        NA          NA
#> 773              NA                NA        NA          NA
#> 774              NA                NA        NA          NA
#> 775              NA                NA        NA          NA
#> 776              NA                NA        NA          NA
#> 777              NA                NA        NA          NA
#> 778              NA                NA        NA          NA
#> 779              NA                NA        NA          NA
#> 780              NA                NA        NA          NA
#> 781              NA                NA        NA          NA
#> 782              NA                NA        NA          NA
#> 783              NA                NA        NA          NA
#> 784              NA                NA        NA          NA
#> 785              NA                NA        NA          NA
#> 786              NA                NA        NA          NA
#> 787              NA                NA        NA          NA
#> 788              NA                NA        NA          NA
#> 789              NA                NA        NA          NA
#> 790              NA                NA        NA          NA
#> 791              NA                NA        NA          NA
#> 792              NA                NA        NA          NA
#> 793              NA                NA        NA          NA
#> 794              NA                NA        NA          NA
#> 795              NA                NA        NA          NA
#> 796              NA                NA        NA          NA
#> 797              NA                NA        NA          NA
#> 798              NA                NA        NA          NA
#> 799              NA                NA        NA          NA
#> 800              NA                NA        NA          NA
#> 801              NA                NA        NA          NA
#> 802              NA                NA        NA          NA
#> 803              NA                NA        NA          NA
#> 804              NA                NA        NA          NA
#> 805              NA                NA        NA          NA
#> 806              NA                NA        NA          NA
#> 807              NA                NA        NA          NA
#> 808              NA                NA        NA          NA
#> 809              NA                NA        NA          NA
#> 810              NA                NA        NA          NA
#> 811              NA                NA        NA          NA
#> 812              NA                NA        NA          NA
#> 813              NA                NA        NA          NA
#> 814              NA                NA        NA          NA
#> 815              NA                NA        NA          NA
#> 816              NA                NA        NA          NA
#> 817              NA                NA        NA          NA
#> 818              NA                NA        NA          NA
#> 819              NA                NA        NA          NA
#> 820              NA                NA        NA          NA
#> 821              NA                NA        NA          NA
#> 822              NA                NA        NA          NA
#> 823              NA                NA        NA          NA
#> 824              NA                NA        NA          NA
#> 825              NA                NA        NA          NA
#> 826              NA                NA        NA          NA
#> 827              NA                NA        NA          NA
#> 828              NA                NA        NA          NA
#> 829              NA                NA        NA          NA
#> 830              NA                NA        NA          NA
#> 831              NA                NA        NA          NA
#> 832              NA                NA        NA          NA
#> 833              NA                NA        NA          NA
#> 834              NA                NA        NA          NA
#> 835              NA                NA        NA          NA
#> 836              NA                NA        NA          NA
#> 837              NA                NA        NA          NA
#> 838              NA                NA        NA          NA
#> 839              NA                NA        NA          NA
#> 840              NA                NA        NA          NA
#> 841              NA                NA        NA          NA
#> 842              NA                NA        NA          NA
#> 843              NA                NA        NA          NA
#> 844              NA                NA        NA          NA
#> 845              NA                NA        NA          NA
#> 846              NA                NA        NA          NA
#> 847              NA                NA        NA          NA
#> 848              NA                NA        NA          NA
#> 849              NA                NA        NA          NA
#> 850              NA                NA        NA          NA
#> 851              NA                NA        NA          NA
#> 852              NA                NA        NA          NA
#> 853              NA                NA        NA          NA
#> 854              NA                NA        NA          NA
#> 855              NA                NA        NA          NA
#> 856              NA                NA        NA          NA
#> 857              NA                NA        NA          NA
#> 858              NA                NA        NA          NA
#> 859              NA                NA        NA          NA
#> 860              NA                NA        NA          NA
#> 861              NA                NA        NA          NA
#> 862              NA                NA        NA          NA
#> 863              NA                NA        NA          NA
#> 864              NA                NA        NA          NA
#> 865              NA                NA        NA          NA
#> 866              NA                NA        NA          NA
#> 867              NA                NA        NA          NA
#> 868              NA                NA        NA          NA
#> 869              NA                NA        NA          NA
#> 870              NA                NA        NA          NA
#> 871              NA                NA        NA          NA
#> 872              NA                NA        NA          NA
#> 873              NA                NA        NA          NA
#> 874              NA                NA        NA          NA
#> 875              NA                NA        NA          NA
#> 876              NA                NA        NA          NA
#> 877              NA                NA        NA          NA
#> 878              NA                NA        NA          NA
#> 879              NA                NA        NA          NA
#> 880              NA                NA        NA          NA
#> 881              NA                NA        NA          NA
#> 882              NA                NA        NA          NA
#> 883              NA                NA        NA          NA
#> 884              NA                NA        NA          NA
#> 885              NA                NA        NA          NA
#> 886              NA                NA        NA          NA
#> 887              NA                NA        NA          NA
#> 888              NA                NA        NA          NA
#> 889              NA                NA        NA          NA
#> 890              NA                NA        NA          NA
#> 891              NA                NA        NA          NA
#> 892              NA                NA        NA          NA
#> 893              NA                NA        NA          NA
#> 894              NA                NA        NA          NA
#> 895              NA                NA        NA          NA
#> 896              NA                NA        NA          NA
#> 897              NA                NA        NA          NA
#> 898              NA                NA        NA          NA
#> 899              NA                NA        NA          NA
#> 900              NA                NA        NA          NA
#> 901              NA                NA        NA          NA
#> 902              NA                NA        NA          NA
#> 903              NA                NA        NA          NA
#> 904              NA                NA        NA          NA
#> 905              NA                NA        NA          NA
#> 906              NA                NA        NA          NA
#> 907              NA                NA        NA          NA
#> 908              NA                NA        NA          NA
#> 909              NA                NA        NA          NA
#> 910              NA                NA        NA          NA
#> 911              NA                NA        NA          NA
#> 912              NA                NA        NA          NA
#> 913              NA                NA        NA          NA
#> 914              NA                NA        NA          NA
#> 915              NA                NA        NA          NA
#> 916              NA                NA        NA          NA
#> 917              NA                NA        NA          NA
#> 918              NA                NA        NA          NA
#> 919              NA                NA        NA          NA
#> 920              NA                NA        NA          NA
#> 921              NA                NA        NA          NA
#> 922              NA                NA        NA          NA
#> 923              NA                NA        NA          NA
#> 924              NA                NA        NA          NA
#> 925              NA                NA        NA          NA
#> 926              NA                NA        NA          NA
#> 927              NA                NA        NA          NA
#> 928              NA                NA        NA          NA
#> 929              NA                NA        NA          NA
#> 930              NA                NA        NA          NA
#> 931              NA                NA        NA          NA
#> 932              NA                NA        NA          NA
#> 933              NA                NA        NA          NA
#> 934              NA                NA        NA          NA
#> 935              NA                NA        NA          NA
#> 936              NA                NA        NA          NA
#> 937              NA                NA        NA          NA
#> 938              NA                NA        NA          NA
#> 939              NA                NA        NA          NA
#> 940              NA                NA        NA          NA
#> 941              NA                NA        NA          NA
#> 942              NA                NA        NA          NA
#> 943              NA                NA        NA          NA
#> 944              NA                NA        NA          NA
#> 945              NA                NA        NA          NA
#> 946              NA                NA        NA          NA
#> 947              NA                NA        NA          NA
#> 948              NA                NA        NA          NA
#> 949              NA                NA        NA          NA
#> 950              NA                NA        NA          NA
#> 951              NA                NA        NA          NA
#> 952              NA                NA        NA          NA
#> 953              NA                NA        NA          NA
#> 954              NA                NA        NA          NA
#> 955              NA                NA        NA          NA
#> 956              NA                NA        NA          NA
#> 957              NA                NA        NA          NA
#> 958              NA                NA        NA          NA
#> 959              NA                NA        NA          NA
#> 960              NA                NA        NA          NA
#> 961              NA                NA        NA          NA
#> 962              NA                NA        NA          NA
#> 963              NA                NA        NA          NA
#> 964              NA                NA        NA          NA
#> 965              NA                NA        NA          NA
#> 966              NA                NA        NA          NA
#> 967              NA                NA        NA          NA
#> 968              NA                NA        NA          NA
#> 969              NA                NA        NA          NA
#> 970              NA                NA        NA          NA
#> 971              NA                NA        NA          NA
#> 972              NA                NA        NA          NA
#> 973              NA                NA        NA          NA
#> 974              NA                NA        NA          NA
#> 975              NA                NA        NA          NA
#> 976              NA                NA        NA          NA
#> 977              NA                NA        NA          NA
#> 978              NA                NA        NA          NA
#> 979              NA                NA        NA          NA
#> 980              NA                NA        NA          NA
#> 981              NA                NA        NA          NA
#> 982              NA                NA        NA          NA
#> 983              NA                NA        NA          NA
#> 984              NA                NA        NA          NA
#> 985              NA                NA        NA          NA
#> 986              NA                NA        NA          NA
#> 987              NA                NA        NA          NA
#> 988              NA                NA        NA          NA
#> 989              NA                NA        NA          NA
#> 990              NA                NA        NA          NA
#> 991              NA                NA        NA          NA
#> 992              NA                NA        NA          NA
#> 993              NA                NA        NA          NA
#> 994              NA                NA        NA          NA
#> 995              NA                NA        NA          NA
#> 996              NA                NA        NA          NA
print(Output$QC_orphan)
#>     Code
#> 1     01
#> 40    02
#> 49    03
#> 56    05
#> 61    06
#> 66    07
#> 72    08
#> 81    09
#> 86    10
#> 121   11
#> 130   12
#> 133   13
#> 148   14
#> 160   15
#> 166   16
#> 175   17
#> 185   18
#> 193   19
#> 198   20
#> 221   21
#> 226   22
#> 235   23
#> 268   24
#> 290   25
#> 316   26
#> 335   27
#> 352   28
#> 379   29
#> 387   30
#> 401   31
#> 407   32
#> 423   33
#> 435   35
#> 447   36
#> 450   37
#> 453   38
#> 463   39
#> 466   41
#> 471   42
#> 482   43
#> 500   45
#> 511   46
#> 568   47
#> 615   49
#> 629   50
#> 638   51
#> 644   52
#> 653   53
#> 658   55
#> 667   56
#> 675   58
#> 685   59
#> 693   60
#> 698   61
#> 707   62
#> 713   63
#> 720   64
#> 732   65
#> 740   66
#> 751   68
#> 759   69
#> 764   70
#> 770   71
#> 776   72
#> 782   73
#> 788   74
#> 797   75
#> 800   77
#> 817   78
#> 824   79
#> 830   80
#> 837   81
#> 846   82
#> 858   84
#> 871   85
#> 889   86
#> 898   87
#> 907   88
#> 913   90
#> 919   91
#> 925   92
#> 928   93
#> 937   94
#> 947   95
#> 958   96
#> 965   97
#> 968   98
#> 973   99
#>                                                                                                                               Label
#> 1                                                                Crop and animal production, hunting and related service activities
#> 40                                                                                                             Forestry and logging
#> 49                                                                                                          Fishing and aquaculture
#> 56                                                                                                       Mining of coal and lignite
#> 61                                                                                    Extraction of crude petroleum and natural gas
#> 66                                                                                                             Mining of metal ores
#> 72                                                                                                       Other mining and quarrying
#> 81                                                                                                Mining support service activities
#> 86                                                                                                     Manufacture of food products
#> 121                                                                                                        Manufacture of beverages
#> 130                                                                                                 Manufacture of tobacco products
#> 133                                                                                                         Manufacture of textiles
#> 148                                                                                                  Manufacture of wearing apparel
#> 160                                                                                     Manufacture of leather and related products
#> 166 Manufacture of wood and of products of wood and cork, except furniture; manufacture of articles of straw and plaiting materials
#> 175                                                                                         Manufacture of paper and paper products
#> 185                                                                                     Printing and reproduction of recorded media
#> 193                                                                              Manufacture of coke and refined petroleum products
#> 198                                                                                  Manufacture of chemicals and chemical products
#> 221                                                    Manufacture of basic pharmaceutical products and pharmaceutical preparations
#> 226                                                                                      Manufacture of rubber and plastic products
#> 235                                                                              Manufacture of other non-metallic mineral products
#> 268                                                                                                     Manufacture of basic metals
#> 290                                                        Manufacture of fabricated metal products, except machinery and equipment
#> 316                                                                        Manufacture of computer, electronic and optical products
#> 335                                                                                             Manufacture of electrical equipment
#> 352                                                                                   Manufacture of machinery and equipment n.e.c.
#> 379                                                                       Manufacture of motor vehicles, trailers and semi-trailers
#> 387                                                                                        Manufacture of other transport equipment
#> 401                                                                                                        Manufacture of furniture
#> 407                                                                                                             Other manufacturing
#> 423                                                                              Repair and installation of machinery and equipment
#> 435                                                                             Electricity, gas, steam and air conditioning supply
#> 447                                                                                          Water collection, treatment and supply
#> 450                                                                                                                        Sewerage
#> 453                                                         Waste collection, treatment and disposal activities; materials recovery
#> 463                                                                      Remediation activities and other waste management services
#> 466                                                                                                       Construction of buildings
#> 471                                                                                                               Civil engineering
#> 482                                                                                             Specialised construction activities
#> 500                                                         Wholesale and retail trade and repair of motor vehicles and motorcycles
#> 511                                                                       Wholesale trade, except of motor vehicles and motorcycles
#> 568                                                                          Retail trade, except of motor vehicles and motorcycles
#> 615                                                                                      Land transport and transport via pipelines
#> 629                                                                                                                 Water transport
#> 638                                                                                                                   Air transport
#> 644                                                                           Warehousing and support activities for transportation
#> 653                                                                                                   Postal and courier activities
#> 658                                                                                                                   Accommodation
#> 667                                                                                            Food and beverage service activities
#> 675                                                                                                           Publishing activities
#> 685                      Motion picture, video and television programme production, sound recording and music publishing activities
#> 693                                                                                         Programming and broadcasting activities
#> 698                                                                                                              Telecommunications
#> 707                                                                        Computer programming, consultancy and related activities
#> 713                                                                                                  Information service activities
#> 720                                                              Financial service activities, except insurance and pension funding
#> 732                                                   Insurance, reinsurance and pension funding, except compulsory social security
#> 740                                                             Activities auxiliary to financial services and insurance activities
#> 751                                                                                                          Real estate activities
#> 759                                                                                                 Legal and accounting activities
#> 764                                                                   Activities of head offices; management consultancy activities
#> 770                                                        Architectural and engineering activities; technical testing and analysis
#> 776                                                                                             Scientific research and development
#> 782                                                                                                 Advertising and market research
#> 788                                                                         Other professional, scientific and technical activities
#> 797                                                                                                           Veterinary activities
#> 800                                                                                                   Rental and leasing activities
#> 817                                                                                                           Employment activities
#> 824                                                         Travel agency, tour operator reservation service and related activities
#> 830                                                                                           Security and investigation activities
#> 837                                                                                  Services to buildings and landscape activities
#> 846                                                     Office administrative, office support and other business support activities
#> 858                                                                   Public administration and defence; compulsory social security
#> 871                                                                                                                       Education
#> 889                                                                                                         Human health activities
#> 898                                                                                                     Residential care activities
#> 907                                                                                    Social work activities without accommodation
#> 913                                                                                     Creative, arts and entertainment activities
#> 919                                                                      Libraries, archives, museums and other cultural activities
#> 925                                                                                                 Gambling and betting activities
#> 928                                                                       Sports activities and amusement and recreation activities
#> 937                                                                                          Activities of membership organisations
#> 947                                                                            Repair of computers and personal and household goods
#> 958                                                                                               Other personal service activities
#> 965                                                                     Activities of households as employers of domestic personnel
#> 968                                     Undifferentiated goods- and services-producing activities of private households for own use
#> 973                                                                         Activities of extraterritorial organisations and bodies
#>     Level Parent Include
#> 1       2      0      NA
#> 40      2      0      NA
#> 49      2      0      NA
#> 56      2      0      NA
#> 61      2      0      NA
#> 66      2      0      NA
#> 72      2      0      NA
#> 81      2      0      NA
#> 86      2      1      NA
#> 121     2      1      NA
#> 130     2      1      NA
#> 133     2      1      NA
#> 148     2      1      NA
#> 160     2      1      NA
#> 166     2      1      NA
#> 175     2      1      NA
#> 185     2      1      NA
#> 193     2      1      NA
#> 198     2      2      NA
#> 221     2      2      NA
#> 226     2      2      NA
#> 235     2      2      NA
#> 268     2      2      NA
#> 290     2      2      NA
#> 316     2      2      NA
#> 335     2      2      NA
#> 352     2      2      NA
#> 379     2      2      NA
#> 387     2      3      NA
#> 401     2      3      NA
#> 407     2      3      NA
#> 423     2      3      NA
#> 435     2      3      NA
#> 447     2      3      NA
#> 450     2      3      NA
#> 453     2      3      NA
#> 463     2      3      NA
#> 466     2      4      NA
#> 471     2      4      NA
#> 482     2      4      NA
#> 500     2      4      NA
#> 511     2      4      NA
#> 568     2      4      NA
#> 615     2      4      NA
#> 629     2      5      NA
#> 638     2      5      NA
#> 644     2      5      NA
#> 653     2      5      NA
#> 658     2      5      NA
#> 667     2      5      NA
#> 675     2      5      NA
#> 685     2      5      NA
#> 693     2      6      NA
#> 698     2      6      NA
#> 707     2      6      NA
#> 713     2      6      NA
#> 720     2      6      NA
#> 732     2      6      NA
#> 740     2      6      NA
#> 751     2      6      NA
#> 759     2      6      NA
#> 764     2      7      NA
#> 770     2      7      NA
#> 776     2      7      NA
#> 782     2      7      NA
#> 788     2      7      NA
#> 797     2      7      NA
#> 800     2      7      NA
#> 817     2      7      NA
#> 824     2      7      NA
#> 830     2      8      NA
#> 837     2      8      NA
#> 846     2      8      NA
#> 858     2      8      NA
#> 871     2      8      NA
#> 889     2      8      NA
#> 898     2      8      NA
#> 907     2      8      NA
#> 913     2      9      NA
#> 919     2      9      NA
#> 925     2      9      NA
#> 928     2      9      NA
#> 937     2      9      NA
#> 947     2      9      NA
#> 958     2      9      NA
#> 965     2      9      NA
#> 968     2      9      NA
#> 973     2      9      NA
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Include_Also
#> 1                                                                                                                                                                                                                                                                                                                                                                                                            This division also includes service activities incidental to agriculture, as well as hunting, trapping and related activities.
#> 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 49                                                                                                                                                                                                                                          Also included are activities that are normally integrated in the process of production for own account (e.g. seeding oysters for pearl production). Service activities incidental to marine or freshwater fishery or aquaculture are included in the related fishing or aquaculture activities.
#> 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 66                                                                                                                                                                                                                                                                                                                                  This division also includes: - ore dressing and beneficiating operations, such as crushing, grinding, washing, drying, sintering, calcining or leaching ore, gravity separation or flotation operations
#> 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     <NA>
#> 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 148                                                                                                                                                                                                                                                                                                                                                                                                                                                             Division 14 also includes the fur industry (fur skins and wearing apparel).
#> 160                                                                                                                                                              It also includes the manufacture of similar products from other materials (imitation leathers or leather substitutes), such as rubber footwear, textile luggage etc. The products made from leather substitutes are included here, since they are made in ways similar to those in which leather products are made (e.g. luggage) and are often produced in the same unit.
#> 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 185                                                                                                                                                                                                                                                                                                                                                                                       This division also includes the reproduction of recorded media, such as compact discs, video recordings, software on discs or tapes, records etc.
#> 193                                                                                                                                                                                                                                                                                                                             This division also includes the manufacture for own account of characteristic products (e.g. coke, butane, propane, petrol, kerosene, fuel oil etc.) as well as processing services (e.g. custom refining).
#> 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 221                                                                                                                                                                                                                                                                                                                                                                                                                                                        This also includes the manufacture of medicinal chemical and botanical products.
#> 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 235                                                                                                                                                                                                                                                                                                                                                                                                                              The manufacture of shaped and finished stone and other mineral products is also included in this division.
#> 268                                                                                                            This division also includes the manufacture of metal alloys and super-alloys by introducing other chemical elements to pure metals. The output of smelting and refining, usually in ingot form, is used in rolling, drawing and extruding operations to make products such as plate, sheet, strip, bars, rods, wire or tubes, pipes and hollow profiles, and in molten form to make castings and other basic metal products.
#> 290                                                                                                                                                                                                                                                                                                                                                                                                                                                            The manufacture of weapons and ammunition is also included in this division.
#> 316                                                                                                                                                                                                                                                                    The division also contains the manufacture of consumer electronics, measuring, testing and navigating equipment, irradiation, electromedical and electrotherapeutic equipment, optical instruments and equipment, and the manufacture of magnetic and optical media.
#> 335                                                                                                                                                                                                                                                                                                                                                                                                                        Also included is the manufacture of electrical lighting, signalling equipment and electric household appliances.
#> 352                                                                                                                                                                                                                                                                            This division also includes the manufacture of other special-purpose machinery, not covered elsewhere in the classification, whether or not used in a manufacturing process, such as fairground amusement equipment, automatic bowling alley equipment, etc.
#> 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 423                                                                                                                                                                                                   Also included in this division is the specialised installation of machinery. However, the installation of equipment that forms an integral part of buildings or similar structures, such as installation of electrical wiring, installation of escalators or installation of air-conditioning systems, is classified as construction.
#> 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 453                                                                                                                                                                                                                                                                                                                                                                This also includes local hauling of waste materials and the operation of materials recovery facilities (i.e. those that sort recoverable materials from a waste stream).
#> 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                Also included are building finishing and building completion activities.
#> 500                                                                                                                                                                                                                                                                                                                                                                                                                                                      This division also includes activities such as washing, polishing of vehicles etc.
#> 511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 568 This division also includes units engaged primarily in selling to the general public, from displayed merchandise, products such as personal computers, stationery, paint or timber, although these products may not be for personal or household use. Handling that is customary in trade does not affect the basic character of the merchandise and may include, for example, sorting, separating, mixing and packaging.  This division also includes the retail sale by commission agents and activities of retail auctioning houses.
#> 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Local delivery and messenger services are also included.
#> 658                                                                                                                                                                                                                                                                                         Also included is the provision of longer term accommodation for students, workers and similar individuals. Some units may provide only accommodation while others provide a combination of accommodation, meals and/or recreational facilities.
#> 667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 685                                                                                                                                                                                                                                                                                This division also includes the sound recording activities, i.e. production of original sound master recordings, releasing, promoting and distributing them, publishing of music as well as sound recording service activities in a studio or elsewhere.
#> 693                                                                                                                                                                                                                                                           This division also includes the production of programs that are typically narrowcast in nature (limited format, such as news, sports, education, and youth-oriented programming) on a subscription or fee basis, to a third party, for subsequent broadcasting to the public.
#> 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 759                                 It also includes preparation of legal documents such as articles of incorporation, partnership agreements or similar documents in connection with company formation, patents and copyrights, preparation of deeds, wills, trusts, etc. as well as other activities of notaries public, civil law notaries, bailiffs, arbitrators, examiners and referees.  It also includes accounting and bookkeeping services such as auditing of accounting records, preparing financial statements and bookkeeping.
#> 764                                                                                                                                                                                                                                                                                                                                                                                                     It also includes the overseeing and managing of other units of the same company or enterprise, i.e. the activities of head offices.
#> 770                                                                                                                                                                                                                                                                                                                                                                                                                                          It also includes the performance of physical, chemical, and other analytical testing services.
#> 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It also includes animal ambulance activities.
#> 800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 824                                                                                                                                                                                                                                                                                                                                                                                                                                                    The activities of tourist guides and tourism promotion activities are also included.
#> 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 846                                                                                                                                                                                                                                                                                                                                                                                                                   This division also includes all support service activities typically provided to businesses not elsewhere classified.
#> 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 889                                                           It also includes medical consultation and treatment in the field of general and specialised medicine by general practitioners and medical specialists and surgeons. It includes dental practice activities of a general or specialised nature and orthodontic activities. Additionally, this division includes activities for human health not performed by hospitals or by practicing medical doctors but by paramedical practitioners legally recognised to treat patients.
#> 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 919                                                                                                                                                                                                                                                                                                                                                                It also includes the preservation and exhibition of objects, sites and natural wonders of historical, cultural or educational interest (e.g. world heritage sites, etc).
#> 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 947                                                                                                                                     It also includes the repair of communications equipment such as fax machines, two-way radios and consumer electronics such as radios and TVs, home and garden equipment such as lawn-mowers and blowers, footwear and leather goods, furniture and home furnishings, clothing and clothing accessories, sporting goods, musical instruments, hobby articles and other personal and household goods.
#> 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#> 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <NA>
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exclude
#> 1   Agricultural activities exclude any subsequent processing of the agricultural products (classified under divisions 10 and 11 (Manufacture of food products and beverages) and division 12 (Manufacture of tobacco products)), beyond that needed to prepare them for the primary markets. The preparation of products for the primary markets is included here.  The division excludes field construction (e.g. agricultural land terracing, drainage, preparing rice paddies etc.) classified in section F (Construction) and buyers and cooperative associations engaged in the marketing of farm products classified in section G. Also excluded is the landscape care and maintenance, which is classified in class 81.30.
#> 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Excluded is further processing of wood beginning with sawmilling and planing of wood, see division 16.
#> 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division does not include building and repairing of ships and boats (30.1, 33.15) and sport or recreational fishing activities (93.19). Processing of fish, crustaceans or molluscs is excluded, whether at land-based plants or on factory ships (10.20).
#> 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This division does not include coking (see 19.10), services incidental to coal or lignite mining (see 09.90) or the manufacture of briquettes (see 19.20).
#> 61                                                                                                                                                                                                                                                                                                                                                                                                                                      This division excludes: - oil and gas field services, performed on a fee or contract basis, see 09.10 - oil and gas well exploration, see 09.10 - test drilling and boring, see 09.10 - refining of petroleum products, see 19.20 - geophysical, geologic and seismic surveying, see 71.12
#> 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This division excludes: - roasting of iron pyrites, see 20.13 - production of aluminium oxide, see 24.42 - operation of blast furnaces, see division 24
#> 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division does not include processing (except crushing, grinding, cutting, cleaning, drying, sorting and mixing) of the minerals extracted.
#> 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
#> 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This division does not include the preparation of meals for immediate consumption, such as in restaurants.
#> 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This division excludes: - production of fruit and vegetable juices, see 10.32 - manufacture of milk-based drinks, see 10.51 - manufacture of coffee, tea and mate products, see 10.83
#> 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This division does not include the manufacture of furniture (31.0), or the installation of wooden fittings and the like (43.32, 43.33, 43.39).
#> 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This division excludes publishing activities (see section J).
#> 193                                                                                                                                                                                                                                                                                                                         Not included is the manufacture of such gases in other units (20.14), manufacture of industrial gases (20.11), extraction of natural gas (methane, ethane, butane or propane) (06.20), and manufacture of fuel gas, other than petroleum gases (e.g. coal gas, water gas, producer gas, gasworks gas) (35.21).  The manufacture of petrochemicals from refined petroleum is classified in division 20.
#> 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This division excludes: - specialised repair and maintenance activities, see 33.1 - specialised installation of manufactured goods produced in this division in buildings, such as central heating boilers, see 43.22
#> 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This division excludes the manufacture of electronic products (see division 26).
#> 352                                                                                                                                                                                                                                                                                                                                                                                                                      This division excludes the manufacture of metal products for general use (division 25), associated control devices, computer equipment, measurement and testing equipment, electricity distribution and control apparatus (divisions 26 and 27) and general-purpose motor vehicles (divisions 29 and 30).
#> 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This division excludes: - cleaning of industrial machinery, see 81.22 - repair and maintenance of computers and communications equipment, see 95.1 - repair and maintenance of household goods, see 95.2
#> 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This division does not include the retail sale of automotive fuel and lubricating or cooling products or the rental of motor vehicles or motorcycles.
#> 511                                                                                                                                                                                                                                                                                                                                                                                      This division excludes: - wholesale of motor vehicles, caravans and motorcycles, see 45.1, 45.4 - wholesale of motor vehicle accessories, see 45.31, 45.40 - rental and leasing of goods, see division 77 - packing of solid goods and bottling of liquid or gaseous goods, including blending and filtering for third parties, see 82.92
#> 568                                                                                                                                    This division excludes: - sale of farmers' products by farmers, see division 01 - manufacture and sale of goods, which is generally classified as manufacturing in divisions 10-32 - sale of motor vehicles, motorcycles and their parts, see division 45 - trade in cereal grains, ores, crude petroleum, industrial chemicals, iron and steel and industrial machinery and equipment, see division 46 - sale of food and drinks for consumption on the premises and sale of takeaway food, see division 56 - rental of personal and household goods to the general public, see group 77.2
#> 615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This division excludes restaurant and bar activities on board ships (see 56.10, 56.30), if carried out by separate units.
#> 638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes: - crop spraying, see 01.61 - repair and maintenance of aircraft or aircraft engines, see 33.16 - operation of airports, see 52.23 - aerial advertising (sky-writing), see 73.11 - aerial photography, see 74.20
#> 644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This division excludes activities related to the provision of long-term primary residences in facilities such as apartments typically leased on a monthly or annual basis classified in real estate (section L).
#> 667                                                                                                                                                                                                                                                                    Excluded is the production of meals not fit for immediate consumption or not planned to be consumed immediately or of prepared food which is not considered to be a meal (see divisions 10: manufacture of food products and 11: manufacture of beverages). Also excluded is the sale of not self-manufactured food that is not considered to be a meal or of meals that are not fit for immediate consumption (see section G: wholesale and retail trade).
#> 675                                                                                                                                                                                                                                                                                                                                                                                                                  This division excludes the publishing of motion pictures, video tapes and movies on DVD or similar media (division 59) and the production of master copies for records or audio material (division 59). Also excluded is printing (see 18.11, 18.12) and the mass reproduction of recorded media (see 18.20).
#> 685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This division excludes the distribution of cable and other subscription programming (see division 61).
#> 698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This division excludes: - market research, see 73.20
#> 782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 800                                                                                                                                                                                                                                                                                                                                                                                                                                                This division excludes: - financial leasing, see 64.91 - rental of real estate, see section L - rental of equipment with operator, see corresponding classes according to activities carried out with this equipment, e.g. construction (section F), transportation (section H)
#> 817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This division excludes: - activities of agents for individual artists, see 74.90
#> 824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Units classified in this division do not provide operating staff to carry out the complete operations of a business.
#> 858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 913                                                                                               This division excludes: - the operation of museums of all kinds, botanical and zoological gardens; the preservation of historical sites; and nature reserves activities, see division 91  - gambling and betting activities, see division 92  - sports and amusement and recreation activities, see division 93.  Some units that provide cultural, entertainment or recreational facilities and services are classified in other divisions, such as: - motion picture and video production and distribution, see 59.11, 59.12, 59.13 - motion picture projection, see 59.14 - radio and television broadcasting, see 60.1, 60.2
#> 919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This division excludes: - sports and amusement and recreation activities such as the operation of bathing beaches and recreation parks, see division 93
#> 925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Excluded from this division are dramatic arts, music and other arts and entertainment such as the production of live theatrical presentations, concerts and opera or dance productions and other stage productions, see division 90.
#> 937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Excluded from this division is the repair of medical and diagnostic imaging equipment, measuring and surveying instruments, laboratory instruments, radar and sonar equipment, see 33.13.
#> 958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#> 973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           <NA>
#>     level segment1 Code1 segment2 Code2 segment3 Code3 segment4 Code4
#> 1       2        0     0        1    01     <NA>  <NA>     <NA>  <NA>
#> 40      2        0     0        2    02     <NA>  <NA>     <NA>  <NA>
#> 49      2        0     0        3    03     <NA>  <NA>     <NA>  <NA>
#> 56      2        0     0        5    05     <NA>  <NA>     <NA>  <NA>
#> 61      2        0     0        6    06     <NA>  <NA>     <NA>  <NA>
#> 66      2        0     0        7    07     <NA>  <NA>     <NA>  <NA>
#> 72      2        0     0        8    08     <NA>  <NA>     <NA>  <NA>
#> 81      2        0     0        9    09     <NA>  <NA>     <NA>  <NA>
#> 86      2        1     1        0    10     <NA>  <NA>     <NA>  <NA>
#> 121     2        1     1        1    11     <NA>  <NA>     <NA>  <NA>
#> 130     2        1     1        2    12     <NA>  <NA>     <NA>  <NA>
#> 133     2        1     1        3    13     <NA>  <NA>     <NA>  <NA>
#> 148     2        1     1        4    14     <NA>  <NA>     <NA>  <NA>
#> 160     2        1     1        5    15     <NA>  <NA>     <NA>  <NA>
#> 166     2        1     1        6    16     <NA>  <NA>     <NA>  <NA>
#> 175     2        1     1        7    17     <NA>  <NA>     <NA>  <NA>
#> 185     2        1     1        8    18     <NA>  <NA>     <NA>  <NA>
#> 193     2        1     1        9    19     <NA>  <NA>     <NA>  <NA>
#> 198     2        2     2        0    20     <NA>  <NA>     <NA>  <NA>
#> 221     2        2     2        1    21     <NA>  <NA>     <NA>  <NA>
#> 226     2        2     2        2    22     <NA>  <NA>     <NA>  <NA>
#> 235     2        2     2        3    23     <NA>  <NA>     <NA>  <NA>
#> 268     2        2     2        4    24     <NA>  <NA>     <NA>  <NA>
#> 290     2        2     2        5    25     <NA>  <NA>     <NA>  <NA>
#> 316     2        2     2        6    26     <NA>  <NA>     <NA>  <NA>
#> 335     2        2     2        7    27     <NA>  <NA>     <NA>  <NA>
#> 352     2        2     2        8    28     <NA>  <NA>     <NA>  <NA>
#> 379     2        2     2        9    29     <NA>  <NA>     <NA>  <NA>
#> 387     2        3     3        0    30     <NA>  <NA>     <NA>  <NA>
#> 401     2        3     3        1    31     <NA>  <NA>     <NA>  <NA>
#> 407     2        3     3        2    32     <NA>  <NA>     <NA>  <NA>
#> 423     2        3     3        3    33     <NA>  <NA>     <NA>  <NA>
#> 435     2        3     3        5    35     <NA>  <NA>     <NA>  <NA>
#> 447     2        3     3        6    36     <NA>  <NA>     <NA>  <NA>
#> 450     2        3     3        7    37     <NA>  <NA>     <NA>  <NA>
#> 453     2        3     3        8    38     <NA>  <NA>     <NA>  <NA>
#> 463     2        3     3        9    39     <NA>  <NA>     <NA>  <NA>
#> 466     2        4     4        1    41     <NA>  <NA>     <NA>  <NA>
#> 471     2        4     4        2    42     <NA>  <NA>     <NA>  <NA>
#> 482     2        4     4        3    43     <NA>  <NA>     <NA>  <NA>
#> 500     2        4     4        5    45     <NA>  <NA>     <NA>  <NA>
#> 511     2        4     4        6    46     <NA>  <NA>     <NA>  <NA>
#> 568     2        4     4        7    47     <NA>  <NA>     <NA>  <NA>
#> 615     2        4     4        9    49     <NA>  <NA>     <NA>  <NA>
#> 629     2        5     5        0    50     <NA>  <NA>     <NA>  <NA>
#> 638     2        5     5        1    51     <NA>  <NA>     <NA>  <NA>
#> 644     2        5     5        2    52     <NA>  <NA>     <NA>  <NA>
#> 653     2        5     5        3    53     <NA>  <NA>     <NA>  <NA>
#> 658     2        5     5        5    55     <NA>  <NA>     <NA>  <NA>
#> 667     2        5     5        6    56     <NA>  <NA>     <NA>  <NA>
#> 675     2        5     5        8    58     <NA>  <NA>     <NA>  <NA>
#> 685     2        5     5        9    59     <NA>  <NA>     <NA>  <NA>
#> 693     2        6     6        0    60     <NA>  <NA>     <NA>  <NA>
#> 698     2        6     6        1    61     <NA>  <NA>     <NA>  <NA>
#> 707     2        6     6        2    62     <NA>  <NA>     <NA>  <NA>
#> 713     2        6     6        3    63     <NA>  <NA>     <NA>  <NA>
#> 720     2        6     6        4    64     <NA>  <NA>     <NA>  <NA>
#> 732     2        6     6        5    65     <NA>  <NA>     <NA>  <NA>
#> 740     2        6     6        6    66     <NA>  <NA>     <NA>  <NA>
#> 751     2        6     6        8    68     <NA>  <NA>     <NA>  <NA>
#> 759     2        6     6        9    69     <NA>  <NA>     <NA>  <NA>
#> 764     2        7     7        0    70     <NA>  <NA>     <NA>  <NA>
#> 770     2        7     7        1    71     <NA>  <NA>     <NA>  <NA>
#> 776     2        7     7        2    72     <NA>  <NA>     <NA>  <NA>
#> 782     2        7     7        3    73     <NA>  <NA>     <NA>  <NA>
#> 788     2        7     7        4    74     <NA>  <NA>     <NA>  <NA>
#> 797     2        7     7        5    75     <NA>  <NA>     <NA>  <NA>
#> 800     2        7     7        7    77     <NA>  <NA>     <NA>  <NA>
#> 817     2        7     7        8    78     <NA>  <NA>     <NA>  <NA>
#> 824     2        7     7        9    79     <NA>  <NA>     <NA>  <NA>
#> 830     2        8     8        0    80     <NA>  <NA>     <NA>  <NA>
#> 837     2        8     8        1    81     <NA>  <NA>     <NA>  <NA>
#> 846     2        8     8        2    82     <NA>  <NA>     <NA>  <NA>
#> 858     2        8     8        4    84     <NA>  <NA>     <NA>  <NA>
#> 871     2        8     8        5    85     <NA>  <NA>     <NA>  <NA>
#> 889     2        8     8        6    86     <NA>  <NA>     <NA>  <NA>
#> 898     2        8     8        7    87     <NA>  <NA>     <NA>  <NA>
#> 907     2        8     8        8    88     <NA>  <NA>     <NA>  <NA>
#> 913     2        9     9        0    90     <NA>  <NA>     <NA>  <NA>
#> 919     2        9     9        1    91     <NA>  <NA>     <NA>  <NA>
#> 925     2        9     9        2    92     <NA>  <NA>     <NA>  <NA>
#> 928     2        9     9        3    93     <NA>  <NA>     <NA>  <NA>
#> 937     2        9     9        4    94     <NA>  <NA>     <NA>  <NA>
#> 947     2        9     9        5    95     <NA>  <NA>     <NA>  <NA>
#> 958     2        9     9        6    96     <NA>  <NA>     <NA>  <NA>
#> 965     2        9     9        7    97     <NA>  <NA>     <NA>  <NA>
#> 968     2        9     9        8    98     <NA>  <NA>     <NA>  <NA>
#> 973     2        9     9        9    99     <NA>  <NA>     <NA>  <NA>
#>     duplicateCode orphan
#> 1               0      1
#> 40              0      1
#> 49              0      1
#> 56              0      1
#> 61              0      1
#> 66              0      1
#> 72              0      1
#> 81              0      1
#> 86              0      1
#> 121             0      1
#> 130             0      1
#> 133             0      1
#> 148             0      1
#> 160             0      1
#> 166             0      1
#> 175             0      1
#> 185             0      1
#> 193             0      1
#> 198             0      1
#> 221             0      1
#> 226             0      1
#> 235             0      1
#> 268             0      1
#> 290             0      1
#> 316             0      1
#> 335             0      1
#> 352             0      1
#> 379             0      1
#> 387             0      1
#> 401             0      1
#> 407             0      1
#> 423             0      1
#> 435             0      1
#> 447             0      1
#> 450             0      1
#> 453             0      1
#> 463             0      1
#> 466             0      1
#> 471             0      1
#> 482             0      1
#> 500             0      1
#> 511             0      1
#> 568             0      1
#> 615             0      1
#> 629             0      1
#> 638             0      1
#> 644             0      1
#> 653             0      1
#> 658             0      1
#> 667             0      1
#> 675             0      1
#> 685             0      1
#> 693             0      1
#> 698             0      1
#> 707             0      1
#> 713             0      1
#> 720             0      1
#> 732             0      1
#> 740             0      1
#> 751             0      1
#> 759             0      1
#> 764             0      1
#> 770             0      1
#> 776             0      1
#> 782             0      1
#> 788             0      1
#> 797             0      1
#> 800             0      1
#> 817             0      1
#> 824             0      1
#> 830             0      1
#> 837             0      1
#> 846             0      1
#> 858             0      1
#> 871             0      1
#> 889             0      1
#> 898             0      1
#> 907             0      1
#> 913             0      1
#> 919             0      1
#> 925             0      1
#> 928             0      1
#> 937             0      1
#> 947             0      1
#> 958             0      1
#> 965             0      1
#> 968             0      1
#> 973             0      1
print(Output$QC_childless)
#>     Code
#> 976    A
#> 977    B
#> 978    C
#> 979    D
#> 980    E
#> 981    F
#> 982    G
#> 983    H
#> 984    I
#> 985    J
#> 986    K
#> 987    L
#> 988    M
#> 989    N
#> 990    O
#> 991    P
#> 992    Q
#> 993    R
#> 994    S
#> 995    T
#> 996    U
#>                                                                                                                          Label
#> 976                                                                                          AGRICULTURE, FORESTRY AND FISHING
#> 977                                                                                                       MINING AND QUARRYING
#> 978                                                                                                              MANUFACTURING
#> 979                                                                        ELECTRICITY, GAS, STEAM AND AIR CONDITIONING SUPPLY
#> 980                                                        WATER SUPPLY; SEWERAGE, WASTE MANAGEMENT AND REMEDIATION ACTIVITIES
#> 981                                                                                                               CONSTRUCTION
#> 982                                                       WHOLESALE AND RETAIL TRADE; REPAIR OF MOTOR VEHICLES AND MOTORCYCLES
#> 983                                                                                                 TRANSPORTATION AND STORAGE
#> 984                                                                                  ACCOMMODATION AND FOOD SERVICE ACTIVITIES
#> 985                                                                                              INFORMATION AND COMMUNICATION
#> 986                                                                                         FINANCIAL AND INSURANCE ACTIVITIES
#> 987                                                                                                     REAL ESTATE ACTIVITIES
#> 988                                                                          PROFESSIONAL, SCIENTIFIC AND TECHNICAL ACTIVITIES
#> 989                                                                              ADMINISTRATIVE AND SUPPORT SERVICE ACTIVITIES
#> 990                                                              PUBLIC ADMINISTRATION AND DEFENCE; COMPULSORY SOCIAL SECURITY
#> 991                                                                                                                  EDUCATION
#> 992                                                                                    HUMAN HEALTH AND SOCIAL WORK ACTIVITIES
#> 993                                                                                         ARTS, ENTERTAINMENT AND RECREATION
#> 994                                                                                                   OTHER SERVICE ACTIVITIES
#> 995 ACTIVITIES OF HOUSEHOLDS AS EMPLOYERS; UNDIFFERENTIATED GOODS- AND SERVICES-PRODUCING ACTIVITIES OF HOUSEHOLDS FOR OWN USE
#> 996                                                                    ACTIVITIES OF EXTRATERRITORIAL ORGANISATIONS AND BODIES
#>     Level Parent Include
#> 976     1   <NA>      NA
#> 977     1   <NA>      NA
#> 978     1   <NA>      NA
#> 979     1   <NA>      NA
#> 980     1   <NA>      NA
#> 981     1   <NA>      NA
#> 982     1   <NA>      NA
#> 983     1   <NA>      NA
#> 984     1   <NA>      NA
#> 985     1   <NA>      NA
#> 986     1   <NA>      NA
#> 987     1   <NA>      NA
#> 988     1   <NA>      NA
#> 989     1   <NA>      NA
#> 990     1   <NA>      NA
#> 991     1   <NA>      NA
#> 992     1   <NA>      NA
#> 993     1   <NA>      NA
#> 994     1   <NA>      NA
#> 995     1   <NA>      NA
#> 996     1   <NA>      NA
#>                                                                                                                                                                                                                   Include_Also
#> 976                                                                                                                                                                                                                       <NA>
#> 977                                                                                                                                                                                                                       <NA>
#> 978                                                                                                                                                                                                                       <NA>
#> 979                                                                                                                                                       Also included is the provision of steam and air-conditioning supply.
#> 980                                                    Activities of water supply are also grouped in this section, since they are often carried out in connection with, or by units also engaged in, the treatment of sewage.
#> 981 This section also includes the development of building projects for buildings or civil engineering works by bringing together financial, technical and physical means to realise the construction projects for later sale.
#> 982                                                                                                                                                                                                                       <NA>
#> 983                                                                                                                                                                                                                       <NA>
#> 984                                                                                                                                                                                                                       <NA>
#> 985                                                                                                                                                                                                                       <NA>
#> 986                                                   This section also includes the activities of holding assets, such as activities of holding companies and the activities of trusts, funds and similar financial entities.
#> 987                                                                                                            Also included is the building of structures, combined with maintaining ownership or leasing of such structures.
#> 988                                                                                                                                                                                                                       <NA>
#> 989                                                                                                                                                                                                                       <NA>
#> 990                                                                                                                                                          This section also includes compulsory social security activities.
#> 991                                                                 This section also includes instruction primarily concerned with sport and recreational activities such as tennis or golf and education support activities.
#> 992                                                                                                                                                                                                                       <NA>
#> 993                                                                                                                                                                                                                       <NA>
#> 994                                                                                                                                                                                                                       <NA>
#> 995                                                                                                                                                                                                                       <NA>
#> 996                                                                                                                                                                                                                       <NA>
#>                                                                                                                                                                                                                                                                                                                                                                                                                                                       Exclude
#> 976                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 977 This section excludes: - processing of the extracted materials, see section C (Manufacturing) - usage of the extracted materials without a further transformation for construction purposes, see section F (Construction) - bottling of natural spring and mineral waters at springs and wells, see 11.07 - crushing, grinding or otherwise treating certain earths, rocks and minerals not carried on in conjunction with mining and quarrying, see 23.9
#> 978                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 979                                                                                                                                                                                                                                                                             This section excludes the operation of water and sewerage utilities, see 36, 37. This section also excludes the (typically long-distance) transport of gas through pipelines.
#> 980                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 981                                                                                                                                  If these activities are carried out not for later sale of the construction projects, but for their operation (e.g. rental of space in these buildings, manufacturing activities in these plants), the unit would not be classified here, but according to its operational activity, i.e. real estate, manufacturing etc.
#> 982                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 983                                                                                                        This section excludes: - major repair or alteration of transport equipment, except motor vehicles, see group 33.1 - construction, maintenance and repair of roads, railways, harbours, airfields, see division 42 - maintenance and repair of motor vehicles, see 45.20 - rental of transport equipment without driver or operator, see 77.1, 77.3
#> 984           This section excludes the provision of long-term accommodation as primary residences, which is classified in real estate activities (section L). Also excluded is the preparation of food or drinks that are either not fit for immediate consumption or that are sold through independent distribution channels, i.e. through wholesale or retail trade activities. The preparation of these foods is classified in manufacturing (section C).
#> 985                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 986                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 987                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 988                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 989                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 990                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 991                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 992                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 993                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 994                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 995                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#> 996                                                                                                                                                                                                                                                                                                                                                                                                                                                      <NA>
#>     level segment1 Code1 segment2 Code2 segment3 Code3 segment4 Code4
#> 976     1        A     A     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 977     1        B     B     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 978     1        C     C     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 979     1        D     D     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 980     1        E     E     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 981     1        F     F     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 982     1        G     G     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 983     1        H     H     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 984     1        I     I     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 985     1        J     J     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 986     1        K     K     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 987     1        L     L     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 988     1        M     M     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 989     1        N     N     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 990     1        O     O     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 991     1        P     P     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 992     1        Q     Q     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 993     1        R     R     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 994     1        S     S     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 995     1        T     T     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#> 996     1        U     U     <NA>  <NA>     <NA>  <NA>     <NA>  <NA>
#>     duplicateCode orphan childless
#> 976             0     NA         1
#> 977             0     NA         1
#> 978             0     NA         1
#> 979             0     NA         1
#> 980             0     NA         1
#> 981             0     NA         1
#> 982             0     NA         1
#> 983             0     NA         1
#> 984             0     NA         1
#> 985             0     NA         1
#> 986             0     NA         1
#> 987             0     NA         1
#> 988             0     NA         1
#> 989             0     NA         1
#> 990             0     NA         1
#> 991             0     NA         1
#> 992             0     NA         1
#> 993             0     NA         1
#> 994             0     NA         1
#> 995             0     NA         1
#> 996             0     NA         1
print(Output$QC_duplicatesLabel)
#>  [1] Code           Label          Level          Parent         Include       
#>  [6] Include_Also   Exclude        level          segment1       Code1         
#> [11] segment2       Code2          segment3       Code3          segment4      
#> [16] Code4          duplicateCode  orphan         childless      duplicateLabel
#> <0 rows> (or 0-length row.names)
print(Output$QC_duplicatesCode)
#>  [1] Code          Label         Level         Parent        Include      
#>  [6] Include_Also  Exclude       level         segment1      Code1        
#> [11] segment2      Code2         segment3      Code3         segment4     
#> [16] Code4         duplicateCode
#> <0 rows> (or 0-length row.names)