This file is indexed.

/usr/include/vtkDICOMDictHash.h is in libvtk-dicom-dev 0.7.4-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
/*=========================================================================
This is an automatically generated file.  Include errata for any changes.
=========================================================================*/

#ifndef vtkDICOMDictHash_h
#define vtkDICOMDictHash_h

//! Tag values defined in the DICOM standard
namespace DC
{
enum EnumType {
FileMetaInformationGroupLength          = 0x00020000, // UL M1    0
FileMetaInformationVersion              = 0x00020001, // OB M1    0
MediaStorageSOPClassUID                 = 0x00020002, // UI M1    0
MediaStorageSOPInstanceUID              = 0x00020003, // UI M1    0
TransferSyntaxUID                       = 0x00020010, // UI M1    0
ImplementationClassUID                  = 0x00020012, // UI M1    0
ImplementationVersionName               = 0x00020013, // SH M1    0
SourceApplicationEntityTitle            = 0x00020016, // AE M1    0
SendingApplicationEntityTitle           = 0x00020017, // AE M1    0
ReceivingApplicationEntityTitle         = 0x00020018, // AE M1    0
PrivateInformationCreatorUID            = 0x00020100, // UI M1    0
PrivateInformation                      = 0x00020102, // OB M1    0
FileSetID                               = 0x00041130, // CS M1    0
FileSetDescriptorFileID                 = 0x00041141, // CS M1T8  0
SpecificCharacterSetOfFileSetDescriptorFile = 0x00041142, // CS M1    0
OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity = 0x00041200, // UL M1    0
OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity = 0x00041202, // UL M1    0
FileSetConsistencyFlag                  = 0x00041212, // US M1    0
DirectoryRecordSequence                 = 0x00041220, // SQ M1    0
OffsetOfTheNextDirectoryRecord          = 0x00041400, // UL M1    0
RecordInUseFlag                         = 0x00041410, // US M1    0
OffsetOfReferencedLowerLevelDirectoryEntity = 0x00041420, // UL M1    0
DirectoryRecordType                     = 0x00041430, // CS M1    0
PrivateRecordUID                        = 0x00041432, // UI M1    0
ReferencedFileID                        = 0x00041500, // CS M1T8  0
MRDRDirectoryRecordOffset               = 0x00041504, // UL M1    1
ReferencedSOPClassUIDInFile             = 0x00041510, // UI M1    0
ReferencedSOPInstanceUIDInFile          = 0x00041511, // UI M1    0
ReferencedTransferSyntaxUIDInFile       = 0x00041512, // UI M1    0
ReferencedRelatedGeneralSOPClassUIDInFile = 0x0004151A, // UI M1TN  0
NumberOfReferences                      = 0x00041600, // UL M1    1
LengthToEnd                             = 0x00080001, // UL M1    1
SpecificCharacterSet                    = 0x00080005, // CS M1TN  0
LanguageCodeSequence                    = 0x00080006, // SQ M1    0
ImageType                               = 0x00080008, // CS M2TN  0
RecognitionCode                         = 0x00080010, // SH M1    1
InstanceCreationDate                    = 0x00080012, // DA M1    0
InstanceCreationTime                    = 0x00080013, // TM M1    0
InstanceCreatorUID                      = 0x00080014, // UI M1    0
InstanceCoercionDateTime                = 0x00080015, // DT M1    0
SOPClassUID                             = 0x00080016, // UI M1    0
SOPInstanceUID                          = 0x00080018, // UI M1    0
RelatedGeneralSOPClassUID               = 0x0008001A, // UI M1TN  0
OriginalSpecializedSOPClassUID          = 0x0008001B, // UI M1    0
StudyDate                               = 0x00080020, // DA M1    0
SeriesDate                              = 0x00080021, // DA M1    0
AcquisitionDate                         = 0x00080022, // DA M1    0
ContentDate                             = 0x00080023, // DA M1    0
OverlayDate                             = 0x00080024, // DA M1    1
CurveDate                               = 0x00080025, // DA M1    1
AcquisitionDateTime                     = 0x0008002A, // DT M1    0
StudyTime                               = 0x00080030, // TM M1    0
SeriesTime                              = 0x00080031, // TM M1    0
AcquisitionTime                         = 0x00080032, // TM M1    0
ContentTime                             = 0x00080033, // TM M1    0
OverlayTime                             = 0x00080034, // TM M1    1
CurveTime                               = 0x00080035, // TM M1    1
DataSetType                             = 0x00080040, // US M1    1
DataSetSubtype                          = 0x00080041, // LO M1    1
NuclearMedicineSeriesType               = 0x00080042, // CS M1    1
AccessionNumber                         = 0x00080050, // SH M1    0
IssuerOfAccessionNumberSequence         = 0x00080051, // SQ M1    0
QueryRetrieveLevel                      = 0x00080052, // CS M1    0
QueryRetrieveView                       = 0x00080053, // CS M1    0
RetrieveAETitle                         = 0x00080054, // AE M1TN  0
InstanceAvailability                    = 0x00080056, // CS M1    0
FailedSOPInstanceUIDList                = 0x00080058, // UI M1TN  0
Modality                                = 0x00080060, // CS M1    0
ModalitiesInStudy                       = 0x00080061, // CS M1TN  0
SOPClassesInStudy                       = 0x00080062, // UI M1TN  0
ConversionType                          = 0x00080064, // CS M1    0
PresentationIntentType                  = 0x00080068, // CS M1    0
Manufacturer                            = 0x00080070, // LO M1    0
InstitutionName                         = 0x00080080, // LO M1    0
InstitutionAddress                      = 0x00080081, // ST M1    0
InstitutionCodeSequence                 = 0x00080082, // SQ M1    0
ReferringPhysicianName                  = 0x00080090, // PN M1    0
ReferringPhysicianAddress               = 0x00080092, // ST M1    0
ReferringPhysicianTelephoneNumbers      = 0x00080094, // SH M1TN  0
ReferringPhysicianIdentificationSequence = 0x00080096, // SQ M1    0
ConsultingPhysicianName                 = 0x0008009C, // PN M1TN  0
ConsultingPhysicianIdentificationSequence = 0x0008009D, // SQ M1    0
CodeValue                               = 0x00080100, // SH M1    0
ExtendedCodeValue                       = 0x00080101, // LO M1    DICOS
CodingSchemeDesignator                  = 0x00080102, // SH M1    0
CodingSchemeVersion                     = 0x00080103, // SH M1    0
CodeMeaning                             = 0x00080104, // LO M1    0
MappingResource                         = 0x00080105, // CS M1    0
ContextGroupVersion                     = 0x00080106, // DT M1    0
ContextGroupLocalVersion                = 0x00080107, // DT M1    0
ExtendedCodeMeaning                     = 0x00080108, // LT M1    DICOS
ContextGroupExtensionFlag               = 0x0008010B, // CS M1    0
CodingSchemeUID                         = 0x0008010C, // UI M1    0
ContextGroupExtensionCreatorUID         = 0x0008010D, // UI M1    0
ContextIdentifier                       = 0x0008010F, // CS M1    0
CodingSchemeIdentificationSequence      = 0x00080110, // SQ M1    0
CodingSchemeRegistry                    = 0x00080112, // LO M1    0
CodingSchemeExternalID                  = 0x00080114, // ST M1    0
CodingSchemeName                        = 0x00080115, // ST M1    0
CodingSchemeResponsibleOrganization     = 0x00080116, // ST M1    0
ContextUID                              = 0x00080117, // UI M1    0
MappingResourceUID                      = 0x00080118, // UI M1    0
LongCodeValue                           = 0x00080119, // UC M1    0
URNCodeValue                            = 0x00080120, // UR M1    0
EquivalentCodeSequence                  = 0x00080121, // SQ M1    0
TimezoneOffsetFromUTC                   = 0x00080201, // SH M1    0
PrivateDataElementCharacteristicsSequence = 0x00080300, // SQ M1    0
PrivateGroupReference                   = 0x00080301, // US M1    0
PrivateCreatorReference                 = 0x00080302, // LO M1    0
BlockIdentifyingInformationStatus       = 0x00080303, // CS M1    0
NonidentifyingPrivateElements           = 0x00080304, // US M1TN  0
DeidentificationActionSequence          = 0x00080305, // SQ M1    0
IdentifyingPrivateElements              = 0x00080306, // US M1TN  0
DeidentificationAction                  = 0x00080307, // CS M1    0
NetworkID                               = 0x00081000, // AE M1    1
StationName                             = 0x00081010, // SH M1    0
StudyDescription                        = 0x00081030, // LO M1    0
ProcedureCodeSequence                   = 0x00081032, // SQ M1    0
SeriesDescription                       = 0x0008103E, // LO M1    0
SeriesDescriptionCodeSequence           = 0x0008103F, // SQ M1    0
InstitutionalDepartmentName             = 0x00081040, // LO M1    0
PhysiciansOfRecord                      = 0x00081048, // PN M1TN  0
PhysiciansOfRecordIdentificationSequence = 0x00081049, // SQ M1    0
PerformingPhysicianName                 = 0x00081050, // PN M1TN  0
PerformingPhysicianIdentificationSequence = 0x00081052, // SQ M1    0
NameOfPhysiciansReadingStudy            = 0x00081060, // PN M1TN  0
PhysiciansReadingStudyIdentificationSequence = 0x00081062, // SQ M1    0
OperatorsName                           = 0x00081070, // PN M1TN  0
OperatorIdentificationSequence          = 0x00081072, // SQ M1    0
AdmittingDiagnosesDescription           = 0x00081080, // LO M1TN  0
AdmittingDiagnosesCodeSequence          = 0x00081084, // SQ M1    0
ManufacturerModelName                   = 0x00081090, // LO M1    0
ReferencedResultsSequence               = 0x00081100, // SQ M1    1
ReferencedStudySequence                 = 0x00081110, // SQ M1    0
ReferencedPerformedProcedureStepSequence = 0x00081111, // SQ M1    0
ReferencedSeriesSequence                = 0x00081115, // SQ M1    0
ReferencedPatientSequence               = 0x00081120, // SQ M1    0
ReferencedVisitSequence                 = 0x00081125, // SQ M1    0
ReferencedOverlaySequence               = 0x00081130, // SQ M1    1
ReferencedStereometricInstanceSequence  = 0x00081134, // SQ M1    0
ReferencedWaveformSequence              = 0x0008113A, // SQ M1    0
ReferencedImageSequence                 = 0x00081140, // SQ M1    0
ReferencedCurveSequence                 = 0x00081145, // SQ M1    1
ReferencedInstanceSequence              = 0x0008114A, // SQ M1    0
ReferencedRealWorldValueMappingInstanceSequence = 0x0008114B, // SQ M1    0
ReferencedSOPClassUID                   = 0x00081150, // UI M1    0
ReferencedSOPInstanceUID                = 0x00081155, // UI M1    0
SOPClassesSupported                     = 0x0008115A, // UI M1TN  0
ReferencedFrameNumber                   = 0x00081160, // IS M1TN  0
SimpleFrameList                         = 0x00081161, // UL M1TN  0
CalculatedFrameList                     = 0x00081162, // UL M3T3N 0
TimeRange                               = 0x00081163, // FD M2    0
FrameExtractionSequence                 = 0x00081164, // SQ M1    0
MultiFrameSourceSOPInstanceUID          = 0x00081167, // UI M1    0
RetrieveURL                             = 0x00081190, // UR M1    0
TransactionUID                          = 0x00081195, // UI M1    0
WarningReason                           = 0x00081196, // US M1    0
FailureReason                           = 0x00081197, // US M1    0
FailedSOPSequence                       = 0x00081198, // SQ M1    0
ReferencedSOPSequence                   = 0x00081199, // SQ M1    0
StudiesContainingOtherReferencedInstancesSequence = 0x00081200, // SQ M1    0
RelatedSeriesSequence                   = 0x00081250, // SQ M1    0
LossyImageCompressionRetired            = 0x00082110, // CS M1    1
DerivationDescription                   = 0x00082111, // ST M1    0
SourceImageSequence                     = 0x00082112, // SQ M1    0
StageName                               = 0x00082120, // SH M1    0
StageNumber                             = 0x00082122, // IS M1    0
NumberOfStages                          = 0x00082124, // IS M1    0
ViewName                                = 0x00082127, // SH M1    0
ViewNumber                              = 0x00082128, // IS M1    0
NumberOfEventTimers                     = 0x00082129, // IS M1    0
NumberOfViewsInStage                    = 0x0008212A, // IS M1    0
EventElapsedTimes                       = 0x00082130, // DS M1TN  0
EventTimerNames                         = 0x00082132, // LO M1TN  0
EventTimerSequence                      = 0x00082133, // SQ M1    0
EventTimeOffset                         = 0x00082134, // FD M1    0
EventCodeSequence                       = 0x00082135, // SQ M1    0
StartTrim                               = 0x00082142, // IS M1    0
StopTrim                                = 0x00082143, // IS M1    0
RecommendedDisplayFrameRate             = 0x00082144, // IS M1    0
TransducerPosition                      = 0x00082200, // CS M1    1
TransducerOrientation                   = 0x00082204, // CS M1    1
AnatomicStructure                       = 0x00082208, // CS M1    1
AnatomicRegionSequence                  = 0x00082218, // SQ M1    0
AnatomicRegionModifierSequence          = 0x00082220, // SQ M1    0
PrimaryAnatomicStructureSequence        = 0x00082228, // SQ M1    0
AnatomicStructureSpaceOrRegionSequence  = 0x00082229, // SQ M1    0
PrimaryAnatomicStructureModifierSequence = 0x00082230, // SQ M1    0
TransducerPositionSequence              = 0x00082240, // SQ M1    1
TransducerPositionModifierSequence      = 0x00082242, // SQ M1    1
TransducerOrientationSequence           = 0x00082244, // SQ M1    1
TransducerOrientationModifierSequence   = 0x00082246, // SQ M1    1
AnatomicStructureSpaceOrRegionCodeSequenceTrial = 0x00082251, // SQ M1    1
AnatomicPortalOfEntranceCodeSequenceTrial = 0x00082253, // SQ M1    1
AnatomicApproachDirectionCodeSequenceTrial = 0x00082255, // SQ M1    1
AnatomicPerspectiveDescriptionTrial     = 0x00082256, // ST M1    1
AnatomicPerspectiveCodeSequenceTrial    = 0x00082257, // SQ M1    1
AnatomicLocationOfExaminingInstrumentDescriptionTrial = 0x00082258, // ST M1    1
AnatomicLocationOfExaminingInstrumentCodeSequenceTrial = 0x00082259, // SQ M1    1
AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial = 0x0008225A, // SQ M1    1
OnAxisBackgroundAnatomicStructureCodeSequenceTrial = 0x0008225C, // SQ M1    1
AlternateRepresentationSequence         = 0x00083001, // SQ M1    0
IrradiationEventUID                     = 0x00083010, // UI M1TN  0
SourceIrradiationEventSequence          = 0x00083011, // SQ M1    0
RadiopharmaceuticalAdministrationEventUID = 0x00083012, // UI M1    0
IdentifyingComments                     = 0x00084000, // LT M1    1
FrameType                               = 0x00089007, // CS M4    0
ReferencedImageEvidenceSequence         = 0x00089092, // SQ M1    0
ReferencedRawDataSequence               = 0x00089121, // SQ M1    0
CreatorVersionUID                       = 0x00089123, // UI M1    0
DerivationImageSequence                 = 0x00089124, // SQ M1    0
SourceImageEvidenceSequence             = 0x00089154, // SQ M1    0
PixelPresentation                       = 0x00089205, // CS M1    0
VolumetricProperties                    = 0x00089206, // CS M1    0
VolumeBasedCalculationTechnique         = 0x00089207, // CS M1    0
ComplexImageComponent                   = 0x00089208, // CS M1    0
AcquisitionContrast                     = 0x00089209, // CS M1    0
DerivationCodeSequence                  = 0x00089215, // SQ M1    0
ReferencedPresentationStateSequence     = 0x00089237, // SQ M1    0
ReferencedOtherPlaneSequence            = 0x00089410, // SQ M1    0
FrameDisplaySequence                    = 0x00089458, // SQ M1    0
RecommendedDisplayFrameRateInFloat      = 0x00089459, // FL M1    0
SkipFrameRangeFlag                      = 0x00089460, // CS M1    0
PatientName                             = 0x00100010, // PN M1    0
PatientID                               = 0x00100020, // LO M1    0
IssuerOfPatientID                       = 0x00100021, // LO M1    0
TypeOfPatientID                         = 0x00100022, // CS M1    0
IssuerOfPatientIDQualifiersSequence     = 0x00100024, // SQ M1    0
PatientBirthDate                        = 0x00100030, // DA M1    0
PatientBirthTime                        = 0x00100032, // TM M1    0
PatientSex                              = 0x00100040, // CS M1    0
PatientInsurancePlanCodeSequence        = 0x00100050, // SQ M1    0
PatientPrimaryLanguageCodeSequence      = 0x00100101, // SQ M1    0
PatientPrimaryLanguageModifierCodeSequence = 0x00100102, // SQ M1    0
QualityControlSubject                   = 0x00100200, // CS M1    0
QualityControlSubjectTypeCodeSequence   = 0x00100201, // SQ M1    0
OtherPatientIDs                         = 0x00101000, // LO M1TN  0
OtherPatientNames                       = 0x00101001, // PN M1TN  0
OtherPatientIDsSequence                 = 0x00101002, // SQ M1    0
PatientBirthName                        = 0x00101005, // PN M1    0
PatientAge                              = 0x00101010, // AS M1    0
PatientSize                             = 0x00101020, // DS M1    0
PatientSizeCodeSequence                 = 0x00101021, // SQ M1    0
PatientWeight                           = 0x00101030, // DS M1    0
PatientAddress                          = 0x00101040, // LO M1    0
InsurancePlanIdentification             = 0x00101050, // LO M1TN  1
PatientMotherBirthName                  = 0x00101060, // PN M1    0
MilitaryRank                            = 0x00101080, // LO M1    0
BranchOfService                         = 0x00101081, // LO M1    0
MedicalRecordLocator                    = 0x00101090, // LO M1    0
ReferencedPatientPhotoSequence          = 0x00101100, // SQ M1    0
MedicalAlerts                           = 0x00102000, // LO M1TN  0
Allergies                               = 0x00102110, // LO M1TN  0
CountryOfResidence                      = 0x00102150, // LO M1    0
RegionOfResidence                       = 0x00102152, // LO M1    0
PatientTelephoneNumbers                 = 0x00102154, // SH M1TN  0
PatientTelecomInformation               = 0x00102155, // LT M1    0
EthnicGroup                             = 0x00102160, // SH M1    0
Occupation                              = 0x00102180, // SH M1    0
SmokingStatus                           = 0x001021A0, // CS M1    0
AdditionalPatientHistory                = 0x001021B0, // LT M1    0
PregnancyStatus                         = 0x001021C0, // US M1    0
LastMenstrualDate                       = 0x001021D0, // DA M1    0
PatientReligiousPreference              = 0x001021F0, // LO M1    0
PatientSpeciesDescription               = 0x00102201, // LO M1    0
PatientSpeciesCodeSequence              = 0x00102202, // SQ M1    0
PatientSexNeutered                      = 0x00102203, // CS M1    0
AnatomicalOrientationType               = 0x00102210, // CS M1    0
PatientBreedDescription                 = 0x00102292, // LO M1    0
PatientBreedCodeSequence                = 0x00102293, // SQ M1    0
BreedRegistrationSequence               = 0x00102294, // SQ M1    0
BreedRegistrationNumber                 = 0x00102295, // LO M1    0
BreedRegistryCodeSequence               = 0x00102296, // SQ M1    0
ResponsiblePerson                       = 0x00102297, // PN M1    0
ResponsiblePersonRole                   = 0x00102298, // CS M1    0
ResponsibleOrganization                 = 0x00102299, // LO M1    0
PatientComments                         = 0x00104000, // LT M1    0
ExaminedBodyThickness                   = 0x00109431, // FL M1    0
ClinicalTrialSponsorName                = 0x00120010, // LO M1    0
ClinicalTrialProtocolID                 = 0x00120020, // LO M1    0
ClinicalTrialProtocolName               = 0x00120021, // LO M1    0
ClinicalTrialSiteID                     = 0x00120030, // LO M1    0
ClinicalTrialSiteName                   = 0x00120031, // LO M1    0
ClinicalTrialSubjectID                  = 0x00120040, // LO M1    0
ClinicalTrialSubjectReadingID           = 0x00120042, // LO M1    0
ClinicalTrialTimePointID                = 0x00120050, // LO M1    0
ClinicalTrialTimePointDescription       = 0x00120051, // ST M1    0
ClinicalTrialCoordinatingCenterName     = 0x00120060, // LO M1    0
PatientIdentityRemoved                  = 0x00120062, // CS M1    0
DeidentificationMethod                  = 0x00120063, // LO M1TN  0
DeidentificationMethodCodeSequence      = 0x00120064, // SQ M1    0
ClinicalTrialSeriesID                   = 0x00120071, // LO M1    0
ClinicalTrialSeriesDescription          = 0x00120072, // LO M1    0
ClinicalTrialProtocolEthicsCommitteeName = 0x00120081, // LO M1    0
ClinicalTrialProtocolEthicsCommitteeApprovalNumber = 0x00120082, // LO M1    0
ConsentForClinicalTrialUseSequence      = 0x00120083, // SQ M1    0
DistributionType                        = 0x00120084, // CS M1    0
ConsentForDistributionFlag              = 0x00120085, // CS M1    0
CADFileFormat                           = 0x00140023, // ST M1TN  1
ComponentReferenceSystem                = 0x00140024, // ST M1TN  1
ComponentManufacturingProcedure         = 0x00140025, // ST M1TN  DICONDE
ComponentManufacturer                   = 0x00140028, // ST M1TN  DICONDE
MaterialThickness                       = 0x00140030, // DS M1TN  DICONDE
MaterialPipeDiameter                    = 0x00140032, // DS M1TN  DICONDE
MaterialIsolationDiameter               = 0x00140034, // DS M1TN  DICONDE
MaterialGrade                           = 0x00140042, // ST M1TN  DICONDE
MaterialPropertiesDescription           = 0x00140044, // ST M1TN  DICONDE
MaterialPropertiesFileFormatRetired     = 0x00140045, // ST M1TN  1
MaterialNotes                           = 0x00140046, // LT M1    DICONDE
ComponentShape                          = 0x00140050, // CS M1    DICONDE
CurvatureType                           = 0x00140052, // CS M1    DICONDE
OuterDiameter                           = 0x00140054, // DS M1    DICONDE
InnerDiameter                           = 0x00140056, // DS M1    DICONDE
ActualEnvironmentalConditions           = 0x00141010, // ST M1    DICONDE
ExpiryDate                              = 0x00141020, // DA M1    DICONDE
EnvironmentalConditions                 = 0x00141040, // ST M1    DICONDE
EvaluatorSequence                       = 0x00142002, // SQ M1    DICONDE
EvaluatorNumber                         = 0x00142004, // IS M1    DICONDE
EvaluatorName                           = 0x00142006, // PN M1    DICONDE
EvaluationAttempt                       = 0x00142008, // IS M1    DICONDE
IndicationSequence                      = 0x00142012, // SQ M1    DICONDE
IndicationNumber                        = 0x00142014, // IS M1    DICONDE
IndicationLabel                         = 0x00142016, // SH M1    DICONDE
IndicationDescription                   = 0x00142018, // ST M1    DICONDE
IndicationType                          = 0x0014201A, // CS M1TN  DICONDE
IndicationDisposition                   = 0x0014201C, // CS M1    DICONDE
IndicationROISequence                   = 0x0014201E, // SQ M1    DICONDE
IndicationPhysicalPropertySequence      = 0x00142030, // SQ M1    DICONDE
PropertyLabel                           = 0x00142032, // SH M1    DICONDE
CoordinateSystemNumberOfAxes            = 0x00142202, // IS M1    DICONDE
CoordinateSystemAxesSequence            = 0x00142204, // SQ M1    DICONDE
CoordinateSystemAxisDescription         = 0x00142206, // ST M1    DICONDE
CoordinateSystemDataSetMapping          = 0x00142208, // CS M1    DICONDE
CoordinateSystemAxisNumber              = 0x0014220A, // IS M1    DICONDE
CoordinateSystemAxisType                = 0x0014220C, // CS M1    DICONDE
CoordinateSystemAxisUnits               = 0x0014220E, // CS M1    DICONDE
CoordinateSystemAxisValues              = 0x00142210, // OB M1    DICONDE
CoordinateSystemTransformSequence       = 0x00142220, // SQ M1    DICONDE
TransformDescription                    = 0x00142222, // ST M1    DICONDE
TransformNumberOfAxes                   = 0x00142224, // IS M1    DICONDE
TransformOrderOfAxes                    = 0x00142226, // IS M1TN  DICONDE
TransformedAxisUnits                    = 0x00142228, // CS M1    DICONDE
CoordinateSystemTransformRotationAndScaleMatrix = 0x0014222A, // DS M1TN  DICONDE
CoordinateSystemTransformTranslationMatrix = 0x0014222C, // DS M1TN  DICONDE
InternalDetectorFrameTime               = 0x00143011, // DS M1    DICONDE
NumberOfFramesIntegrated                = 0x00143012, // DS M1    DICONDE
DetectorTemperatureSequence             = 0x00143020, // SQ M1    DICONDE
SensorName                              = 0x00143022, // ST M1    DICONDE
HorizontalOffsetOfSensor                = 0x00143024, // DS M1    DICONDE
VerticalOffsetOfSensor                  = 0x00143026, // DS M1    DICONDE
SensorTemperature                       = 0x00143028, // DS M1    DICONDE
DarkCurrentSequence                     = 0x00143040, // SQ M1    DICONDE
DarkCurrentCounts                       = 0x00143050, // OX M1    DICONDE
GainCorrectionReferenceSequence         = 0x00143060, // SQ M1    DICONDE
AirCounts                               = 0x00143070, // OX M1    DICONDE
KVUsedInGainCalibration                 = 0x00143071, // DS M1    DICONDE
MAUsedInGainCalibration                 = 0x00143072, // DS M1    DICONDE
NumberOfFramesUsedForIntegration        = 0x00143073, // DS M1    DICONDE
FilterMaterialUsedInGainCalibration     = 0x00143074, // LO M1    DICONDE
FilterThicknessUsedInGainCalibration    = 0x00143075, // DS M1    DICONDE
DateOfGainCalibration                   = 0x00143076, // DA M1    DICONDE
TimeOfGainCalibration                   = 0x00143077, // TM M1    DICONDE
BadPixelImage                           = 0x00143080, // OB M1    DICONDE
CalibrationNotes                        = 0x00143099, // LT M1    DICONDE
PulserEquipmentSequence                 = 0x00144002, // SQ M1    DICONDE
PulserType                              = 0x00144004, // CS M1    DICONDE
PulserNotes                             = 0x00144006, // LT M1    DICONDE
ReceiverEquipmentSequence               = 0x00144008, // SQ M1    DICONDE
AmplifierType                           = 0x0014400A, // CS M1    DICONDE
ReceiverNotes                           = 0x0014400C, // LT M1    DICONDE
PreAmplifierEquipmentSequence           = 0x0014400E, // SQ M1    DICONDE
PreAmplifierNotes                       = 0x0014400F, // LT M1    DICONDE
TransmitTransducerSequence              = 0x00144010, // SQ M1    DICONDE
ReceiveTransducerSequence               = 0x00144011, // SQ M1    DICONDE
NumberOfElements                        = 0x00144012, // US M1    DICONDE
ElementShape                            = 0x00144013, // CS M1    DICONDE
ElementDimensionA                       = 0x00144014, // DS M1    DICONDE
ElementDimensionB                       = 0x00144015, // DS M1    DICONDE
ElementPitchA                           = 0x00144016, // DS M1    DICONDE
MeasuredBeamDimensionA                  = 0x00144017, // DS M1    DICONDE
MeasuredBeamDimensionB                  = 0x00144018, // DS M1    DICONDE
LocationOfMeasuredBeamDiameter          = 0x00144019, // DS M1    DICONDE
NominalFrequency                        = 0x0014401A, // DS M1    DICONDE
MeasuredCenterFrequency                 = 0x0014401B, // DS M1    DICONDE
MeasuredBandwidth                       = 0x0014401C, // DS M1    DICONDE
ElementPitchB                           = 0x0014401D, // DS M1    DICONDE
PulserSettingsSequence                  = 0x00144020, // SQ M1    DICONDE
PulseWidth                              = 0x00144022, // DS M1    DICONDE
ExcitationFrequency                     = 0x00144024, // DS M1    DICONDE
ModulationType                          = 0x00144026, // CS M1    DICONDE
Damping                                 = 0x00144028, // DS M1    DICONDE
ReceiverSettingsSequence                = 0x00144030, // SQ M1    DICONDE
AcquiredSoundpathLength                 = 0x00144031, // DS M1    DICONDE
AcquisitionCompressionType              = 0x00144032, // CS M1    DICONDE
AcquisitionSampleSize                   = 0x00144033, // IS M1    DICONDE
RectifierSmoothing                      = 0x00144034, // DS M1    DICONDE
DACSequence                             = 0x00144035, // SQ M1    DICONDE
DACType                                 = 0x00144036, // CS M1    DICONDE
DACGainPoints                           = 0x00144038, // DS M1TN  DICONDE
DACTimePoints                           = 0x0014403A, // DS M1TN  DICONDE
DACAmplitude                            = 0x0014403C, // DS M1TN  DICONDE
PreAmplifierSettingsSequence            = 0x00144040, // SQ M1    DICONDE
TransmitTransducerSettingsSequence      = 0x00144050, // SQ M1    DICONDE
ReceiveTransducerSettingsSequence       = 0x00144051, // SQ M1    DICONDE
IncidentAngle                           = 0x00144052, // DS M1    DICONDE
CouplingTechnique                       = 0x00144054, // ST M1    DICONDE
CouplingMedium                          = 0x00144056, // ST M1    DICONDE
CouplingVelocity                        = 0x00144057, // DS M1    DICONDE
ProbeCenterLocationX                    = 0x00144058, // DS M1    DICONDE
ProbeCenterLocationZ                    = 0x00144059, // DS M1    DICONDE
SoundPathLength                         = 0x0014405A, // DS M1    DICONDE
DelayLawIdentifier                      = 0x0014405C, // ST M1    DICONDE
GateSettingsSequence                    = 0x00144060, // SQ M1    DICONDE
GateThreshold                           = 0x00144062, // DS M1    DICONDE
VelocityOfSound                         = 0x00144064, // DS M1    DICONDE
CalibrationSettingsSequence             = 0x00144070, // SQ M1    DICONDE
CalibrationProcedure                    = 0x00144072, // ST M1    DICONDE
ProcedureVersion                        = 0x00144074, // SH M1    DICONDE
ProcedureCreationDate                   = 0x00144076, // DA M1    DICONDE
ProcedureExpirationDate                 = 0x00144078, // DA M1    DICONDE
ProcedureLastModifiedDate               = 0x0014407A, // DA M1    DICONDE
CalibrationTime                         = 0x0014407C, // TM M1TN  DICONDE
CalibrationDate                         = 0x0014407E, // DA M1TN  DICONDE
ProbeDriveEquipmentSequence             = 0x00144080, // SQ M1    DICONDE
DriveType                               = 0x00144081, // CS M1    DICONDE
ProbeDriveNotes                         = 0x00144082, // LT M1    DICONDE
DriveProbeSequence                      = 0x00144083, // SQ M1    DICONDE
ProbeInductance                         = 0x00144084, // DS M1    DICONDE
ProbeResistance                         = 0x00144085, // DS M1    DICONDE
ReceiveProbeSequence                    = 0x00144086, // SQ M1    DICONDE
ProbeDriveSettingsSequence              = 0x00144087, // SQ M1    DICONDE
BridgeResistors                         = 0x00144088, // DS M1    DICONDE
ProbeOrientationAngle                   = 0x00144089, // DS M1    DICONDE
UserSelectedGainY                       = 0x0014408B, // DS M1    DICONDE
UserSelectedPhase                       = 0x0014408C, // DS M1    DICONDE
UserSelectedOffsetX                     = 0x0014408D, // DS M1    DICONDE
UserSelectedOffsetY                     = 0x0014408E, // DS M1    DICONDE
ChannelSettingsSequence                 = 0x00144091, // SQ M1    DICONDE
ChannelThreshold                        = 0x00144092, // DS M1    DICONDE
ScannerSettingsSequence                 = 0x0014409A, // SQ M1    DICONDE
ScanProcedure                           = 0x0014409B, // ST M1    DICONDE
TranslationRateX                        = 0x0014409C, // DS M1    DICONDE
TranslationRateY                        = 0x0014409D, // DS M1    DICONDE
ChannelOverlap                          = 0x0014409F, // DS M1    DICONDE
ImageQualityIndicatorType               = 0x001440A0, // LO M1    DICONDE
ImageQualityIndicatorMaterial           = 0x001440A1, // LO M1    DICONDE
ImageQualityIndicatorSize               = 0x001440A2, // LO M1    DICONDE
LINACEnergy                             = 0x00145002, // IS M1    DICONDE
LINACOutput                             = 0x00145004, // IS M1    DICONDE
ActiveAperture                          = 0x00145100, // US M1    DICONDE
TotalAperture                           = 0x00145101, // DS M1    DICONDE
ApertureElevation                       = 0x00145102, // DS M1    DICONDE
MainLobeAngle                           = 0x00145103, // DS M1    DICONDE
MainRoofAngle                           = 0x00145104, // DS M1    DICONDE
ConnectorType                           = 0x00145105, // CS M1    DICONDE
WedgeModelNumber                        = 0x00145106, // SH M1    DICONDE
WedgeAngleFloat                         = 0x00145107, // DS M1    DICONDE
WedgeRoofAngle                          = 0x00145108, // DS M1    DICONDE
WedgeElement1Position                   = 0x00145109, // CS M1    DICONDE
WedgeMaterialVelocity                   = 0x0014510A, // DS M1    DICONDE
WedgeMaterial                           = 0x0014510B, // SH M1    DICONDE
WedgeOffsetZ                            = 0x0014510C, // DS M1    DICONDE
WedgeOriginOffsetX                      = 0x0014510D, // DS M1    DICONDE
WedgeTimeDelay                          = 0x0014510E, // DS M1    DICONDE
WedgeName                               = 0x0014510F, // SH M1    DICONDE
WedgeManufacturerName                   = 0x00145110, // SH M1    DICONDE
WedgeDescription                        = 0x00145111, // LO M1    DICONDE
NominalBeamAngle                        = 0x00145112, // DS M1    DICONDE
WedgeOffsetX                            = 0x00145113, // DS M1    DICONDE
WedgeOffsetY                            = 0x00145114, // DS M1    DICONDE
WedgeTotalLength                        = 0x00145115, // DS M1    DICONDE
WedgeInContactLength                    = 0x00145116, // DS M1    DICONDE
WedgeFrontGap                           = 0x00145117, // DS M1    DICONDE
WedgeTotalHeight                        = 0x00145118, // DS M1    DICONDE
WedgeFrontHeight                        = 0x00145119, // DS M1    DICONDE
WedgeRearHeight                         = 0x0014511A, // DS M1    DICONDE
WedgeTotalWidth                         = 0x0014511B, // DS M1    DICONDE
WedgeInContactWidth                     = 0x0014511C, // DS M1    DICONDE
WedgeChamferHeight                      = 0x0014511D, // DS M1    DICONDE
WedgeCurve                              = 0x0014511E, // CS M1    DICONDE
RadiusAlongWedge                        = 0x0014511F, // DS M1    DICONDE
ContrastBolusAgent                      = 0x00180010, // LO M1    0
ContrastBolusAgentSequence              = 0x00180012, // SQ M1    0
ContrastBolusT1Relaxivity               = 0x00180013, // FL M1    0
ContrastBolusAdministrationRouteSequence = 0x00180014, // SQ M1    0
BodyPartExamined                        = 0x00180015, // CS M1    0
ScanningSequence                        = 0x00180020, // CS M1TN  0
SequenceVariant                         = 0x00180021, // CS M1TN  0
ScanOptions                             = 0x00180022, // CS M1TN  0
MRAcquisitionType                       = 0x00180023, // CS M1    0
SequenceName                            = 0x00180024, // SH M1    0
AngioFlag                               = 0x00180025, // CS M1    0
InterventionDrugInformationSequence     = 0x00180026, // SQ M1    0
InterventionDrugStopTime                = 0x00180027, // TM M1    0
InterventionDrugDose                    = 0x00180028, // DS M1    0
InterventionDrugCodeSequence            = 0x00180029, // SQ M1    0
AdditionalDrugSequence                  = 0x0018002A, // SQ M1    0
Radionuclide                            = 0x00180030, // LO M1TN  1
Radiopharmaceutical                     = 0x00180031, // LO M1    0
EnergyWindowCenterline                  = 0x00180032, // DS M1    1
EnergyWindowTotalWidth                  = 0x00180033, // DS M1TN  1
InterventionDrugName                    = 0x00180034, // LO M1    0
InterventionDrugStartTime               = 0x00180035, // TM M1    0
InterventionSequence                    = 0x00180036, // SQ M1    0
TherapyType                             = 0x00180037, // CS M1    1
InterventionStatus                      = 0x00180038, // CS M1    0
TherapyDescription                      = 0x00180039, // CS M1    1
InterventionDescription                 = 0x0018003A, // ST M1    0
CineRate                                = 0x00180040, // IS M1    0
InitialCineRunState                     = 0x00180042, // CS M1    0
SliceThickness                          = 0x00180050, // DS M1    0
KVP                                     = 0x00180060, // DS M1    0
CountsAccumulated                       = 0x00180070, // IS M1    0
AcquisitionTerminationCondition         = 0x00180071, // CS M1    0
EffectiveDuration                       = 0x00180072, // DS M1    0
AcquisitionStartCondition               = 0x00180073, // CS M1    0
AcquisitionStartConditionData           = 0x00180074, // IS M1    0
AcquisitionTerminationConditionData     = 0x00180075, // IS M1    0
RepetitionTime                          = 0x00180080, // DS M1    0
EchoTime                                = 0x00180081, // DS M1    0
InversionTime                           = 0x00180082, // DS M1    0
NumberOfAverages                        = 0x00180083, // DS M1    0
ImagingFrequency                        = 0x00180084, // DS M1    0
ImagedNucleus                           = 0x00180085, // SH M1    0
EchoNumbers                             = 0x00180086, // IS M1TN  0
MagneticFieldStrength                   = 0x00180087, // DS M1    0
SpacingBetweenSlices                    = 0x00180088, // DS M1    0
NumberOfPhaseEncodingSteps              = 0x00180089, // IS M1    0
DataCollectionDiameter                  = 0x00180090, // DS M1    0
EchoTrainLength                         = 0x00180091, // IS M1    0
PercentSampling                         = 0x00180093, // DS M1    0
PercentPhaseFieldOfView                 = 0x00180094, // DS M1    0
PixelBandwidth                          = 0x00180095, // DS M1    0
DeviceSerialNumber                      = 0x00181000, // LO M1    0
DeviceUID                               = 0x00181002, // UI M1    0
DeviceID                                = 0x00181003, // LO M1    0
PlateID                                 = 0x00181004, // LO M1    0
GeneratorID                             = 0x00181005, // LO M1    0
GridID                                  = 0x00181006, // LO M1    0
CassetteID                              = 0x00181007, // LO M1    0
GantryID                                = 0x00181008, // LO M1    0
SecondaryCaptureDeviceID                = 0x00181010, // LO M1    0
HardcopyCreationDeviceID                = 0x00181011, // LO M1    1
DateOfSecondaryCapture                  = 0x00181012, // DA M1    0
TimeOfSecondaryCapture                  = 0x00181014, // TM M1    0
SecondaryCaptureDeviceManufacturer      = 0x00181016, // LO M1    0
HardcopyDeviceManufacturer              = 0x00181017, // LO M1    1
SecondaryCaptureDeviceManufacturerModelName = 0x00181018, // LO M1    0
SecondaryCaptureDeviceSoftwareVersions  = 0x00181019, // LO M1TN  0
HardcopyDeviceSoftwareVersion           = 0x0018101A, // LO M1TN  1
HardcopyDeviceManufacturerModelName     = 0x0018101B, // LO M1    1
SoftwareVersions                        = 0x00181020, // LO M1TN  0
VideoImageFormatAcquired                = 0x00181022, // SH M1    0
DigitalImageFormatAcquired              = 0x00181023, // LO M1    0
ProtocolName                            = 0x00181030, // LO M1    0
ContrastBolusRoute                      = 0x00181040, // LO M1    0
ContrastBolusVolume                     = 0x00181041, // DS M1    0
ContrastBolusStartTime                  = 0x00181042, // TM M1    0
ContrastBolusStopTime                   = 0x00181043, // TM M1    0
ContrastBolusTotalDose                  = 0x00181044, // DS M1    0
SyringeCounts                           = 0x00181045, // IS M1    0
ContrastFlowRate                        = 0x00181046, // DS M1TN  0
ContrastFlowDuration                    = 0x00181047, // DS M1TN  0
ContrastBolusIngredient                 = 0x00181048, // CS M1    0
ContrastBolusIngredientConcentration    = 0x00181049, // DS M1    0
SpatialResolution                       = 0x00181050, // DS M1    0
TriggerTime                             = 0x00181060, // DS M1    0
TriggerSourceOrType                     = 0x00181061, // LO M1    0
NominalInterval                         = 0x00181062, // IS M1    0
FrameTime                               = 0x00181063, // DS M1    0
CardiacFramingType                      = 0x00181064, // LO M1    0
FrameTimeVector                         = 0x00181065, // DS M1TN  0
FrameDelay                              = 0x00181066, // DS M1    0
ImageTriggerDelay                       = 0x00181067, // DS M1    0
MultiplexGroupTimeOffset                = 0x00181068, // DS M1    0
TriggerTimeOffset                       = 0x00181069, // DS M1    0
SynchronizationTrigger                  = 0x0018106A, // CS M1    0
SynchronizationChannel                  = 0x0018106C, // US M2    0
TriggerSamplePosition                   = 0x0018106E, // UL M1    0
RadiopharmaceuticalRoute                = 0x00181070, // LO M1    0
RadiopharmaceuticalVolume               = 0x00181071, // DS M1    0
RadiopharmaceuticalStartTime            = 0x00181072, // TM M1    0
RadiopharmaceuticalStopTime             = 0x00181073, // TM M1    0
RadionuclideTotalDose                   = 0x00181074, // DS M1    0
RadionuclideHalfLife                    = 0x00181075, // DS M1    0
RadionuclidePositronFraction            = 0x00181076, // DS M1    0
RadiopharmaceuticalSpecificActivity     = 0x00181077, // DS M1    0
RadiopharmaceuticalStartDateTime        = 0x00181078, // DT M1    0
RadiopharmaceuticalStopDateTime         = 0x00181079, // DT M1    0
BeatRejectionFlag                       = 0x00181080, // CS M1    0
LowRRValue                              = 0x00181081, // IS M1    0
HighRRValue                             = 0x00181082, // IS M1    0
IntervalsAcquired                       = 0x00181083, // IS M1    0
IntervalsRejected                       = 0x00181084, // IS M1    0
PVCRejection                            = 0x00181085, // LO M1    0
SkipBeats                               = 0x00181086, // IS M1    0
HeartRate                               = 0x00181088, // IS M1    0
CardiacNumberOfImages                   = 0x00181090, // IS M1    0
TriggerWindow                           = 0x00181094, // IS M1    0
ReconstructionDiameter                  = 0x00181100, // DS M1    0
DistanceSourceToDetector                = 0x00181110, // DS M1    0
DistanceSourceToPatient                 = 0x00181111, // DS M1    0
EstimatedRadiographicMagnificationFactor = 0x00181114, // DS M1    0
GantryDetectorTilt                      = 0x00181120, // DS M1    0
GantryDetectorSlew                      = 0x00181121, // DS M1    0
TableHeight                             = 0x00181130, // DS M1    0
TableTraverse                           = 0x00181131, // DS M1    0
TableMotion                             = 0x00181134, // CS M1    0
TableVerticalIncrement                  = 0x00181135, // DS M1TN  0
TableLateralIncrement                   = 0x00181136, // DS M1TN  0
TableLongitudinalIncrement              = 0x00181137, // DS M1TN  0
TableAngle                              = 0x00181138, // DS M1    0
TableType                               = 0x0018113A, // CS M1    0
RotationDirection                       = 0x00181140, // CS M1    0
AngularPosition                         = 0x00181141, // DS M1    1
RadialPosition                          = 0x00181142, // DS M1TN  0
ScanArc                                 = 0x00181143, // DS M1    0
AngularStep                             = 0x00181144, // DS M1    0
CenterOfRotationOffset                  = 0x00181145, // DS M1    0
RotationOffset                          = 0x00181146, // DS M1TN  1
FieldOfViewShape                        = 0x00181147, // CS M1    0
FieldOfViewDimensions                   = 0x00181149, // IS M1T2  0
ExposureTime                            = 0x00181150, // IS M1    0
XRayTubeCurrent                         = 0x00181151, // IS M1    0
Exposure                                = 0x00181152, // IS M1    0
ExposureInuAs                           = 0x00181153, // IS M1    0
AveragePulseWidth                       = 0x00181154, // DS M1    0
RadiationSetting                        = 0x00181155, // CS M1    0
RectificationType                       = 0x00181156, // CS M1    0
RadiationMode                           = 0x0018115A, // CS M1    0
ImageAndFluoroscopyAreaDoseProduct      = 0x0018115E, // DS M1    0
FilterType                              = 0x00181160, // SH M1    0
TypeOfFilters                           = 0x00181161, // LO M1TN  0
IntensifierSize                         = 0x00181162, // DS M1    0
ImagerPixelSpacing                      = 0x00181164, // DS M2    0
Grid                                    = 0x00181166, // CS M1TN  0
GeneratorPower                          = 0x00181170, // IS M1    0
CollimatorGridName                      = 0x00181180, // SH M1    0
CollimatorType                          = 0x00181181, // CS M1    0
FocalDistance                           = 0x00181182, // IS M1T2  0
XFocusCenter                            = 0x00181183, // DS M1T2  0
YFocusCenter                            = 0x00181184, // DS M1T2  0
FocalSpots                              = 0x00181190, // DS M1TN  0
AnodeTargetMaterial                     = 0x00181191, // CS M1    0
BodyPartThickness                       = 0x001811A0, // DS M1    0
CompressionForce                        = 0x001811A2, // DS M1    0
PaddleDescription                       = 0x001811A4, // LO M1    0
DateOfLastCalibration                   = 0x00181200, // DA M1TN  0
TimeOfLastCalibration                   = 0x00181201, // TM M1TN  0
DateTimeOfLastCalibration               = 0x00181202, // DT M1    0
ConvolutionKernel                       = 0x00181210, // SH M1TN  0
UpperLowerPixelValues                   = 0x00181240, // IS M1TN  1
ActualFrameDuration                     = 0x00181242, // IS M1    0
CountRate                               = 0x00181243, // IS M1    0
PreferredPlaybackSequencing             = 0x00181244, // US M1    0
ReceiveCoilName                         = 0x00181250, // SH M1    0
TransmitCoilName                        = 0x00181251, // SH M1    0
PlateType                               = 0x00181260, // SH M1    0
PhosphorType                            = 0x00181261, // LO M1    0
ScanVelocity                            = 0x00181300, // DS M1    0
WholeBodyTechnique                      = 0x00181301, // CS M1TN  0
ScanLength                              = 0x00181302, // IS M1    0
AcquisitionMatrix                       = 0x00181310, // US M4    0
InPlanePhaseEncodingDirection           = 0x00181312, // CS M1    0
FlipAngle                               = 0x00181314, // DS M1    0
VariableFlipAngleFlag                   = 0x00181315, // CS M1    0
SAR                                     = 0x00181316, // DS M1    0
dBdt                                    = 0x00181318, // DS M1    0
B1rms                                   = 0x00181320, // FL M1    0
AcquisitionDeviceProcessingDescription  = 0x00181400, // LO M1    0
AcquisitionDeviceProcessingCode         = 0x00181401, // LO M1    0
CassetteOrientation                     = 0x00181402, // CS M1    0
CassetteSize                            = 0x00181403, // CS M1    0
ExposuresOnPlate                        = 0x00181404, // US M1    0
RelativeXRayExposure                    = 0x00181405, // IS M1    0
ExposureIndex                           = 0x00181411, // DS M1    0
TargetExposureIndex                     = 0x00181412, // DS M1    0
DeviationIndex                          = 0x00181413, // DS M1    0
ColumnAngulation                        = 0x00181450, // DS M1    0
TomoLayerHeight                         = 0x00181460, // DS M1    0
TomoAngle                               = 0x00181470, // DS M1    0
TomoTime                                = 0x00181480, // DS M1    0
TomoType                                = 0x00181490, // CS M1    0
TomoClass                               = 0x00181491, // CS M1    0
NumberOfTomosynthesisSourceImages       = 0x00181495, // IS M1    0
PositionerMotion                        = 0x00181500, // CS M1    0
PositionerType                          = 0x00181508, // CS M1    0
PositionerPrimaryAngle                  = 0x00181510, // DS M1    0
PositionerSecondaryAngle                = 0x00181511, // DS M1    0
PositionerPrimaryAngleIncrement         = 0x00181520, // DS M1TN  0
PositionerSecondaryAngleIncrement       = 0x00181521, // DS M1TN  0
DetectorPrimaryAngle                    = 0x00181530, // DS M1    0
DetectorSecondaryAngle                  = 0x00181531, // DS M1    0
ShutterShape                            = 0x00181600, // CS M1T3  0
ShutterLeftVerticalEdge                 = 0x00181602, // IS M1    0
ShutterRightVerticalEdge                = 0x00181604, // IS M1    0
ShutterUpperHorizontalEdge              = 0x00181606, // IS M1    0
ShutterLowerHorizontalEdge              = 0x00181608, // IS M1    0
CenterOfCircularShutter                 = 0x00181610, // IS M2    0
RadiusOfCircularShutter                 = 0x00181612, // IS M1    0
VerticesOfThePolygonalShutter           = 0x00181620, // IS M2T2N 0
ShutterPresentationValue                = 0x00181622, // US M1    0
ShutterOverlayGroup                     = 0x00181623, // US M1    0
ShutterPresentationColorCIELabValue     = 0x00181624, // US M3    0
CollimatorShape                         = 0x00181700, // CS M1T3  0
CollimatorLeftVerticalEdge              = 0x00181702, // IS M1    0
CollimatorRightVerticalEdge             = 0x00181704, // IS M1    0
CollimatorUpperHorizontalEdge           = 0x00181706, // IS M1    0
CollimatorLowerHorizontalEdge           = 0x00181708, // IS M1    0
CenterOfCircularCollimator              = 0x00181710, // IS M2    0
RadiusOfCircularCollimator              = 0x00181712, // IS M1    0
VerticesOfThePolygonalCollimator        = 0x00181720, // IS M2T2N 0
AcquisitionTimeSynchronized             = 0x00181800, // CS M1    0
TimeSource                              = 0x00181801, // SH M1    0
TimeDistributionProtocol                = 0x00181802, // CS M1    0
NTPSourceAddress                        = 0x00181803, // LO M1    0
PageNumberVector                        = 0x00182001, // IS M1TN  0
FrameLabelVector                        = 0x00182002, // SH M1TN  0
FramePrimaryAngleVector                 = 0x00182003, // DS M1TN  0
FrameSecondaryAngleVector               = 0x00182004, // DS M1TN  0
SliceLocationVector                     = 0x00182005, // DS M1TN  0
DisplayWindowLabelVector                = 0x00182006, // SH M1TN  0
NominalScannedPixelSpacing              = 0x00182010, // DS M2    0
DigitizingDeviceTransportDirection      = 0x00182020, // CS M1    0
RotationOfScannedFilm                   = 0x00182030, // DS M1    0
BiopsyTargetSequence                    = 0x00182041, // SQ M1    0
TargetUID                               = 0x00182042, // UI M1    0
LocalizingCursorPosition                = 0x00182043, // FL M2    0
CalculatedTargetPosition                = 0x00182044, // FL M3    0
TargetLabel                             = 0x00182045, // SH M1    0
DisplayedZValue                         = 0x00182046, // FL M1    0
IVUSAcquisition                         = 0x00183100, // CS M1    0
IVUSPullbackRate                        = 0x00183101, // DS M1    0
IVUSGatedRate                           = 0x00183102, // DS M1    0
IVUSPullbackStartFrameNumber            = 0x00183103, // IS M1    0
IVUSPullbackStopFrameNumber             = 0x00183104, // IS M1    0
LesionNumber                            = 0x00183105, // IS M1TN  0
AcquisitionComments                     = 0x00184000, // LT M1    1
OutputPower                             = 0x00185000, // SH M1TN  0
TransducerData                          = 0x00185010, // LO M1TN  0
FocusDepth                              = 0x00185012, // DS M1    0
ProcessingFunction                      = 0x00185020, // LO M1    0
PostprocessingFunction                  = 0x00185021, // LO M1    1
MechanicalIndex                         = 0x00185022, // DS M1    0
BoneThermalIndex                        = 0x00185024, // DS M1    0
CranialThermalIndex                     = 0x00185026, // DS M1    0
SoftTissueThermalIndex                  = 0x00185027, // DS M1    0
SoftTissueFocusThermalIndex             = 0x00185028, // DS M1    0
SoftTissueSurfaceThermalIndex           = 0x00185029, // DS M1    0
DynamicRange                            = 0x00185030, // DS M1    1
TotalGain                               = 0x00185040, // DS M1    1
DepthOfScanField                        = 0x00185050, // IS M1    0
PatientPosition                         = 0x00185100, // CS M1    0
ViewPosition                            = 0x00185101, // CS M1    0
ProjectionEponymousNameCodeSequence     = 0x00185104, // SQ M1    0
ImageTransformationMatrix               = 0x00185210, // DS M6    1
ImageTranslationVector                  = 0x00185212, // DS M3    1
Sensitivity                             = 0x00186000, // DS M1    0
SequenceOfUltrasoundRegions             = 0x00186011, // SQ M1    0
RegionSpatialFormat                     = 0x00186012, // US M1    0
RegionDataType                          = 0x00186014, // US M1    0
RegionFlags                             = 0x00186016, // UL M1    0
RegionLocationMinX0                     = 0x00186018, // UL M1    0
RegionLocationMinY0                     = 0x0018601A, // UL M1    0
RegionLocationMaxX1                     = 0x0018601C, // UL M1    0
RegionLocationMaxY1                     = 0x0018601E, // UL M1    0
ReferencePixelX0                        = 0x00186020, // SL M1    0
ReferencePixelY0                        = 0x00186022, // SL M1    0
PhysicalUnitsXDirection                 = 0x00186024, // US M1    0
PhysicalUnitsYDirection                 = 0x00186026, // US M1    0
ReferencePixelPhysicalValueX            = 0x00186028, // FD M1    0
ReferencePixelPhysicalValueY            = 0x0018602A, // FD M1    0
PhysicalDeltaX                          = 0x0018602C, // FD M1    0
PhysicalDeltaY                          = 0x0018602E, // FD M1    0
TransducerFrequency                     = 0x00186030, // UL M1    0
TransducerType                          = 0x00186031, // CS M1    0
PulseRepetitionFrequency                = 0x00186032, // UL M1    0
DopplerCorrectionAngle                  = 0x00186034, // FD M1    0
SteeringAngle                           = 0x00186036, // FD M1    0
DopplerSampleVolumeXPositionRetired     = 0x00186038, // UL M1    1
DopplerSampleVolumeXPosition            = 0x00186039, // SL M1    0
DopplerSampleVolumeYPositionRetired     = 0x0018603A, // UL M1    1
DopplerSampleVolumeYPosition            = 0x0018603B, // SL M1    0
TMLinePositionX0Retired                 = 0x0018603C, // UL M1    1
TMLinePositionX0                        = 0x0018603D, // SL M1    0
TMLinePositionY0Retired                 = 0x0018603E, // UL M1    1
TMLinePositionY0                        = 0x0018603F, // SL M1    0
TMLinePositionX1Retired                 = 0x00186040, // UL M1    1
TMLinePositionX1                        = 0x00186041, // SL M1    0
TMLinePositionY1Retired                 = 0x00186042, // UL M1    1
TMLinePositionY1                        = 0x00186043, // SL M1    0
PixelComponentOrganization              = 0x00186044, // US M1    0
PixelComponentMask                      = 0x00186046, // UL M1    0
PixelComponentRangeStart                = 0x00186048, // UL M1    0
PixelComponentRangeStop                 = 0x0018604A, // UL M1    0
PixelComponentPhysicalUnits             = 0x0018604C, // US M1    0
PixelComponentDataType                  = 0x0018604E, // US M1    0
NumberOfTableBreakPoints                = 0x00186050, // UL M1    0
TableOfXBreakPoints                     = 0x00186052, // UL M1TN  0
TableOfYBreakPoints                     = 0x00186054, // FD M1TN  0
NumberOfTableEntries                    = 0x00186056, // UL M1    0
TableOfPixelValues                      = 0x00186058, // UL M1TN  0
TableOfParameterValues                  = 0x0018605A, // FL M1TN  0
RWaveTimeVector                         = 0x00186060, // FL M1TN  0
DetectorConditionsNominalFlag           = 0x00187000, // CS M1    0
DetectorTemperature                     = 0x00187001, // DS M1    0
DetectorType                            = 0x00187004, // CS M1    0
DetectorConfiguration                   = 0x00187005, // CS M1    0
DetectorDescription                     = 0x00187006, // LT M1    0
DetectorMode                            = 0x00187008, // LT M1    0
DetectorID                              = 0x0018700A, // SH M1    0
DateOfLastDetectorCalibration           = 0x0018700C, // DA M1    0
TimeOfLastDetectorCalibration           = 0x0018700E, // TM M1    0
ExposuresOnDetectorSinceLastCalibration = 0x00187010, // IS M1    0
ExposuresOnDetectorSinceManufactured    = 0x00187011, // IS M1    0
DetectorTimeSinceLastExposure           = 0x00187012, // DS M1    0
DetectorActiveTime                      = 0x00187014, // DS M1    0
DetectorActivationOffsetFromExposure    = 0x00187016, // DS M1    0
DetectorBinning                         = 0x0018701A, // DS M2    0
DetectorElementPhysicalSize             = 0x00187020, // DS M2    0
DetectorElementSpacing                  = 0x00187022, // DS M2    0
DetectorActiveShape                     = 0x00187024, // CS M1    0
DetectorActiveDimensions                = 0x00187026, // DS M1T2  0
DetectorActiveOrigin                    = 0x00187028, // DS M2    0
DetectorManufacturerName                = 0x0018702A, // LO M1    0
DetectorManufacturerModelName           = 0x0018702B, // LO M1    0
FieldOfViewOrigin                       = 0x00187030, // DS M2    0
FieldOfViewRotation                     = 0x00187032, // DS M1    0
FieldOfViewHorizontalFlip               = 0x00187034, // CS M1    0
PixelDataAreaOriginRelativeToFOV        = 0x00187036, // FL M2    0
PixelDataAreaRotationAngleRelativeToFOV = 0x00187038, // FL M1    0
GridAbsorbingMaterial                   = 0x00187040, // LT M1    0
GridSpacingMaterial                     = 0x00187041, // LT M1    0
GridThickness                           = 0x00187042, // DS M1    0
GridPitch                               = 0x00187044, // DS M1    0
GridAspectRatio                         = 0x00187046, // IS M2    0
GridPeriod                              = 0x00187048, // DS M1    0
GridFocalDistance                       = 0x0018704C, // DS M1    0
FilterMaterial                          = 0x00187050, // CS M1TN  0
FilterThicknessMinimum                  = 0x00187052, // DS M1TN  0
FilterThicknessMaximum                  = 0x00187054, // DS M1TN  0
FilterBeamPathLengthMinimum             = 0x00187056, // FL M1TN  0
FilterBeamPathLengthMaximum             = 0x00187058, // FL M1TN  0
ExposureControlMode                     = 0x00187060, // CS M1    0
ExposureControlModeDescription          = 0x00187062, // LT M1    0
ExposureStatus                          = 0x00187064, // CS M1    0
PhototimerSetting                       = 0x00187065, // DS M1    0
ExposureTimeInuS                        = 0x00188150, // DS M1    0
XRayTubeCurrentInuA                     = 0x00188151, // DS M1    0
ContentQualification                    = 0x00189004, // CS M1    0
PulseSequenceName                       = 0x00189005, // SH M1    0
MRImagingModifierSequence               = 0x00189006, // SQ M1    0
EchoPulseSequence                       = 0x00189008, // CS M1    0
InversionRecovery                       = 0x00189009, // CS M1    0
FlowCompensation                        = 0x00189010, // CS M1    0
MultipleSpinEcho                        = 0x00189011, // CS M1    0
MultiPlanarExcitation                   = 0x00189012, // CS M1    0
PhaseContrast                           = 0x00189014, // CS M1    0
TimeOfFlightContrast                    = 0x00189015, // CS M1    0
Spoiling                                = 0x00189016, // CS M1    0
SteadyStatePulseSequence                = 0x00189017, // CS M1    0
EchoPlanarPulseSequence                 = 0x00189018, // CS M1    0
TagAngleFirstAxis                       = 0x00189019, // FD M1    0
MagnetizationTransfer                   = 0x00189020, // CS M1    0
T2Preparation                           = 0x00189021, // CS M1    0
BloodSignalNulling                      = 0x00189022, // CS M1    0
SaturationRecovery                      = 0x00189024, // CS M1    0
SpectrallySelectedSuppression           = 0x00189025, // CS M1    0
SpectrallySelectedExcitation            = 0x00189026, // CS M1    0
SpatialPresaturation                    = 0x00189027, // CS M1    0
Tagging                                 = 0x00189028, // CS M1    0
OversamplingPhase                       = 0x00189029, // CS M1    0
TagSpacingFirstDimension                = 0x00189030, // FD M1    0
GeometryOfKSpaceTraversal               = 0x00189032, // CS M1    0
SegmentedKSpaceTraversal                = 0x00189033, // CS M1    0
RectilinearPhaseEncodeReordering        = 0x00189034, // CS M1    0
TagThickness                            = 0x00189035, // FD M1    0
PartialFourierDirection                 = 0x00189036, // CS M1    0
CardiacSynchronizationTechnique         = 0x00189037, // CS M1    0
ReceiveCoilManufacturerName             = 0x00189041, // LO M1    0
MRReceiveCoilSequence                   = 0x00189042, // SQ M1    0
ReceiveCoilType                         = 0x00189043, // CS M1    0
QuadratureReceiveCoil                   = 0x00189044, // CS M1    0
MultiCoilDefinitionSequence             = 0x00189045, // SQ M1    0
MultiCoilConfiguration                  = 0x00189046, // LO M1    0
MultiCoilElementName                    = 0x00189047, // SH M1    0
MultiCoilElementUsed                    = 0x00189048, // CS M1    0
MRTransmitCoilSequence                  = 0x00189049, // SQ M1    0
TransmitCoilManufacturerName            = 0x00189050, // LO M1    0
TransmitCoilType                        = 0x00189051, // CS M1    0
SpectralWidth                           = 0x00189052, // FD M1T2  0
ChemicalShiftReference                  = 0x00189053, // FD M1T2  0
VolumeLocalizationTechnique             = 0x00189054, // CS M1    0
MRAcquisitionFrequencyEncodingSteps     = 0x00189058, // US M1    0
Decoupling                              = 0x00189059, // CS M1    0
DecoupledNucleus                        = 0x00189060, // CS M1T2  0
DecouplingFrequency                     = 0x00189061, // FD M1T2  0
DecouplingMethod                        = 0x00189062, // CS M1    0
DecouplingChemicalShiftReference        = 0x00189063, // FD M1T2  0
KSpaceFiltering                         = 0x00189064, // CS M1    0
TimeDomainFiltering                     = 0x00189065, // CS M1T2  0
NumberOfZeroFills                       = 0x00189066, // US M1T2  0
BaselineCorrection                      = 0x00189067, // CS M1    0
ParallelReductionFactorInPlane          = 0x00189069, // FD M1    0
CardiacRRIntervalSpecified              = 0x00189070, // FD M1    0
AcquisitionDuration                     = 0x00189073, // FD M1    0
FrameAcquisitionDateTime                = 0x00189074, // DT M1    0
DiffusionDirectionality                 = 0x00189075, // CS M1    0
DiffusionGradientDirectionSequence      = 0x00189076, // SQ M1    0
ParallelAcquisition                     = 0x00189077, // CS M1    0
ParallelAcquisitionTechnique            = 0x00189078, // CS M1    0
InversionTimes                          = 0x00189079, // FD M1TN  0
MetaboliteMapDescription                = 0x00189080, // ST M1    0
PartialFourier                          = 0x00189081, // CS M1    0
EffectiveEchoTime                       = 0x00189082, // FD M1    0
MetaboliteMapCodeSequence               = 0x00189083, // SQ M1    0
ChemicalShiftSequence                   = 0x00189084, // SQ M1    0
CardiacSignalSource                     = 0x00189085, // CS M1    0
DiffusionBValue                         = 0x00189087, // FD M1    0
DiffusionGradientOrientation            = 0x00189089, // FD M3    0
VelocityEncodingDirection               = 0x00189090, // FD M3    0
VelocityEncodingMinimumValue            = 0x00189091, // FD M1    0
VelocityEncodingAcquisitionSequence     = 0x00189092, // SQ M1    0
NumberOfKSpaceTrajectories              = 0x00189093, // US M1    0
CoverageOfKSpace                        = 0x00189094, // CS M1    0
SpectroscopyAcquisitionPhaseRows        = 0x00189095, // UL M1    0
ParallelReductionFactorInPlaneRetired   = 0x00189096, // FD M1    1
TransmitterFrequency                    = 0x00189098, // FD M1T2  0
ResonantNucleus                         = 0x00189100, // CS M1T2  0
FrequencyCorrection                     = 0x00189101, // CS M1    0
MRSpectroscopyFOVGeometrySequence       = 0x00189103, // SQ M1    0
SlabThickness                           = 0x00189104, // FD M1    0
SlabOrientation                         = 0x00189105, // FD M3    0
MidSlabPosition                         = 0x00189106, // FD M3    0
MRSpatialSaturationSequence             = 0x00189107, // SQ M1    0
MRTimingAndRelatedParametersSequence    = 0x00189112, // SQ M1    0
MREchoSequence                          = 0x00189114, // SQ M1    0
MRModifierSequence                      = 0x00189115, // SQ M1    0
MRDiffusionSequence                     = 0x00189117, // SQ M1    0
CardiacSynchronizationSequence          = 0x00189118, // SQ M1    0
MRAveragesSequence                      = 0x00189119, // SQ M1    0
MRFOVGeometrySequence                   = 0x00189125, // SQ M1    0
VolumeLocalizationSequence              = 0x00189126, // SQ M1    0
SpectroscopyAcquisitionDataColumns      = 0x00189127, // UL M1    0
DiffusionAnisotropyType                 = 0x00189147, // CS M1    0
FrameReferenceDateTime                  = 0x00189151, // DT M1    0
MRMetaboliteMapSequence                 = 0x00189152, // SQ M1    0
ParallelReductionFactorOutOfPlane       = 0x00189155, // FD M1    0
SpectroscopyAcquisitionOutOfPlanePhaseSteps = 0x00189159, // UL M1    0
BulkMotionStatus                        = 0x00189166, // CS M1    1
ParallelReductionFactorSecondInPlane    = 0x00189168, // FD M1    0
CardiacBeatRejectionTechnique           = 0x00189169, // CS M1    0
RespiratoryMotionCompensationTechnique  = 0x00189170, // CS M1    0
RespiratorySignalSource                 = 0x00189171, // CS M1    0
BulkMotionCompensationTechnique         = 0x00189172, // CS M1    0
BulkMotionSignalSource                  = 0x00189173, // CS M1    0
ApplicableSafetyStandardAgency          = 0x00189174, // CS M1    0
ApplicableSafetyStandardDescription     = 0x00189175, // LO M1    0
OperatingModeSequence                   = 0x00189176, // SQ M1    0
OperatingModeType                       = 0x00189177, // CS M1    0
OperatingMode                           = 0x00189178, // CS M1    0
SpecificAbsorptionRateDefinition        = 0x00189179, // CS M1    0
GradientOutputType                      = 0x00189180, // CS M1    0
SpecificAbsorptionRateValue             = 0x00189181, // FD M1    0
GradientOutput                          = 0x00189182, // FD M1    0
FlowCompensationDirection               = 0x00189183, // CS M1    0
TaggingDelay                            = 0x00189184, // FD M1    0
RespiratoryMotionCompensationTechniqueDescription = 0x00189185, // ST M1    0
RespiratorySignalSourceID               = 0x00189186, // SH M1    0
ChemicalShiftMinimumIntegrationLimitInHz = 0x00189195, // FD M1    1
ChemicalShiftMaximumIntegrationLimitInHz = 0x00189196, // FD M1    1
MRVelocityEncodingSequence              = 0x00189197, // SQ M1    0
FirstOrderPhaseCorrection               = 0x00189198, // CS M1    0
WaterReferencedPhaseCorrection          = 0x00189199, // CS M1    0
MRSpectroscopyAcquisitionType           = 0x00189200, // CS M1    0
RespiratoryCyclePosition                = 0x00189214, // CS M1    0
VelocityEncodingMaximumValue            = 0x00189217, // FD M1    0
TagSpacingSecondDimension               = 0x00189218, // FD M1    0
TagAngleSecondAxis                      = 0x00189219, // SS M1    0
FrameAcquisitionDuration                = 0x00189220, // FD M1    0
MRImageFrameTypeSequence                = 0x00189226, // SQ M1    0
MRSpectroscopyFrameTypeSequence         = 0x00189227, // SQ M1    0
MRAcquisitionPhaseEncodingStepsInPlane  = 0x00189231, // US M1    0
MRAcquisitionPhaseEncodingStepsOutOfPlane = 0x00189232, // US M1    0
SpectroscopyAcquisitionPhaseColumns     = 0x00189234, // UL M1    0
CardiacCyclePosition                    = 0x00189236, // CS M1    0
SpecificAbsorptionRateSequence          = 0x00189239, // SQ M1    0
RFEchoTrainLength                       = 0x00189240, // US M1    0
GradientEchoTrainLength                 = 0x00189241, // US M1    0
ArterialSpinLabelingContrast            = 0x00189250, // CS M1    0
MRArterialSpinLabelingSequence          = 0x00189251, // SQ M1    0
ASLTechniqueDescription                 = 0x00189252, // LO M1    0
ASLSlabNumber                           = 0x00189253, // US M1    0
ASLSlabThickness                        = 0x00189254, // FD M1    0
ASLSlabOrientation                      = 0x00189255, // FD M3    0
ASLMidSlabPosition                      = 0x00189256, // FD M3    0
ASLContext                              = 0x00189257, // CS M1    0
ASLPulseTrainDuration                   = 0x00189258, // UL M1    0
ASLCrusherFlag                          = 0x00189259, // CS M1    0
ASLCrusherFlowLimit                     = 0x0018925A, // FD M1    0
ASLCrusherDescription                   = 0x0018925B, // LO M1    0
ASLBolusCutoffFlag                      = 0x0018925C, // CS M1    0
ASLBolusCutoffTimingSequence            = 0x0018925D, // SQ M1    0
ASLBolusCutoffTechnique                 = 0x0018925E, // LO M1    0
ASLBolusCutoffDelayTime                 = 0x0018925F, // UL M1    0
ASLSlabSequence                         = 0x00189260, // SQ M1    0
ChemicalShiftMinimumIntegrationLimitInppm = 0x00189295, // FD M1    0
ChemicalShiftMaximumIntegrationLimitInppm = 0x00189296, // FD M1    0
WaterReferenceAcquisition               = 0x00189297, // CS M1    0
EchoPeakPosition                        = 0x00189298, // IS M1    0
CTAcquisitionTypeSequence               = 0x00189301, // SQ M1    0
AcquisitionType                         = 0x00189302, // CS M1    0
TubeAngle                               = 0x00189303, // FD M1    0
CTAcquisitionDetailsSequence            = 0x00189304, // SQ M1    0
RevolutionTime                          = 0x00189305, // FD M1    0
SingleCollimationWidth                  = 0x00189306, // FD M1    0
TotalCollimationWidth                   = 0x00189307, // FD M1    0
CTTableDynamicsSequence                 = 0x00189308, // SQ M1    0
TableSpeed                              = 0x00189309, // FD M1    0
TableFeedPerRotation                    = 0x00189310, // FD M1    0
SpiralPitchFactor                       = 0x00189311, // FD M1    0
CTGeometrySequence                      = 0x00189312, // SQ M1    0
DataCollectionCenterPatient             = 0x00189313, // FD M3    0
CTReconstructionSequence                = 0x00189314, // SQ M1    0
ReconstructionAlgorithm                 = 0x00189315, // CS M1    0
ConvolutionKernelGroup                  = 0x00189316, // CS M1    0
ReconstructionFieldOfView               = 0x00189317, // FD M2    0
ReconstructionTargetCenterPatient       = 0x00189318, // FD M3    0
ReconstructionAngle                     = 0x00189319, // FD M1    0
ImageFilter                             = 0x00189320, // SH M1    0
CTExposureSequence                      = 0x00189321, // SQ M1    0
ReconstructionPixelSpacing              = 0x00189322, // FD M2    0
ExposureModulationType                  = 0x00189323, // CS M1    0
EstimatedDoseSaving                     = 0x00189324, // FD M1    0
CTXRayDetailsSequence                   = 0x00189325, // SQ M1    0
CTPositionSequence                      = 0x00189326, // SQ M1    0
TablePosition                           = 0x00189327, // FD M1    0
ExposureTimeInms                        = 0x00189328, // FD M1    0
CTImageFrameTypeSequence                = 0x00189329, // SQ M1    0
XRayTubeCurrentInmA                     = 0x00189330, // FD M1    0
ExposureInmAs                           = 0x00189332, // FD M1    0
ConstantVolumeFlag                      = 0x00189333, // CS M1    0
FluoroscopyFlag                         = 0x00189334, // CS M1    0
DistanceSourceToDataCollectionCenter    = 0x00189335, // FD M1    0
ContrastBolusAgentNumber                = 0x00189337, // US M1    0
ContrastBolusIngredientCodeSequence     = 0x00189338, // SQ M1    0
ContrastAdministrationProfileSequence   = 0x00189340, // SQ M1    0
ContrastBolusUsageSequence              = 0x00189341, // SQ M1    0
ContrastBolusAgentAdministered          = 0x00189342, // CS M1    0
ContrastBolusAgentDetected              = 0x00189343, // CS M1    0
ContrastBolusAgentPhase                 = 0x00189344, // CS M1    0
CTDIvol                                 = 0x00189345, // FD M1    0
CTDIPhantomTypeCodeSequence             = 0x00189346, // SQ M1    0
CalciumScoringMassFactorPatient         = 0x00189351, // FL M1    0
CalciumScoringMassFactorDevice          = 0x00189352, // FL M3    0
EnergyWeightingFactor                   = 0x00189353, // FL M1    0
CTAdditionalXRaySourceSequence          = 0x00189360, // SQ M1    0
ProjectionPixelCalibrationSequence      = 0x00189401, // SQ M1    0
DistanceSourceToIsocenter               = 0x00189402, // FL M1    0
DistanceObjectToTableTop                = 0x00189403, // FL M1    0
ObjectPixelSpacingInCenterOfBeam        = 0x00189404, // FL M2    0
PositionerPositionSequence              = 0x00189405, // SQ M1    0
TablePositionSequence                   = 0x00189406, // SQ M1    0
CollimatorShapeSequence                 = 0x00189407, // SQ M1    0
PlanesInAcquisition                     = 0x00189410, // CS M1    0
XAXRFFrameCharacteristicsSequence       = 0x00189412, // SQ M1    0
FrameAcquisitionSequence                = 0x00189417, // SQ M1    0
XRayReceptorType                        = 0x00189420, // CS M1    0
AcquisitionProtocolName                 = 0x00189423, // LO M1    0
AcquisitionProtocolDescription          = 0x00189424, // LT M1    0
ContrastBolusIngredientOpaque           = 0x00189425, // CS M1    0
DistanceReceptorPlaneToDetectorHousing  = 0x00189426, // FL M1    0
IntensifierActiveShape                  = 0x00189427, // CS M1    0
IntensifierActiveDimensions             = 0x00189428, // FL M1T2  0
PhysicalDetectorSize                    = 0x00189429, // FL M2    0
PositionOfIsocenterProjection           = 0x00189430, // FL M2    0
FieldOfViewSequence                     = 0x00189432, // SQ M1    0
FieldOfViewDescription                  = 0x00189433, // LO M1    0
ExposureControlSensingRegionsSequence   = 0x00189434, // SQ M1    0
ExposureControlSensingRegionShape       = 0x00189435, // CS M1    0
ExposureControlSensingRegionLeftVerticalEdge = 0x00189436, // SS M1    0
ExposureControlSensingRegionRightVerticalEdge = 0x00189437, // SS M1    0
ExposureControlSensingRegionUpperHorizontalEdge = 0x00189438, // SS M1    0
ExposureControlSensingRegionLowerHorizontalEdge = 0x00189439, // SS M1    0
CenterOfCircularExposureControlSensingRegion = 0x00189440, // SS M2    0
RadiusOfCircularExposureControlSensingRegion = 0x00189441, // US M1    0
VerticesOfThePolygonalExposureControlSensingRegion = 0x00189442, // SS M2TN  0
ColumnAngulationPatient                 = 0x00189447, // FL M1    0
BeamAngle                               = 0x00189449, // FL M1    0
FrameDetectorParametersSequence         = 0x00189451, // SQ M1    0
CalculatedAnatomyThickness              = 0x00189452, // FL M1    0
CalibrationSequence                     = 0x00189455, // SQ M1    0
ObjectThicknessSequence                 = 0x00189456, // SQ M1    0
PlaneIdentification                     = 0x00189457, // CS M1    0
FieldOfViewDimensionsInFloat            = 0x00189461, // FL M1T2  0
IsocenterReferenceSystemSequence        = 0x00189462, // SQ M1    0
PositionerIsocenterPrimaryAngle         = 0x00189463, // FL M1    0
PositionerIsocenterSecondaryAngle       = 0x00189464, // FL M1    0
PositionerIsocenterDetectorRotationAngle = 0x00189465, // FL M1    0
TableXPositionToIsocenter               = 0x00189466, // FL M1    0
TableYPositionToIsocenter               = 0x00189467, // FL M1    0
TableZPositionToIsocenter               = 0x00189468, // FL M1    0
TableHorizontalRotationAngle            = 0x00189469, // FL M1    0
TableHeadTiltAngle                      = 0x00189470, // FL M1    0
TableCradleTiltAngle                    = 0x00189471, // FL M1    0
FrameDisplayShutterSequence             = 0x00189472, // SQ M1    0
AcquiredImageAreaDoseProduct            = 0x00189473, // FL M1    0
CArmPositionerTabletopRelationship      = 0x00189474, // CS M1    0
XRayGeometrySequence                    = 0x00189476, // SQ M1    0
IrradiationEventIdentificationSequence  = 0x00189477, // SQ M1    0
XRay3DFrameTypeSequence                 = 0x00189504, // SQ M1    0
ContributingSourcesSequence             = 0x00189506, // SQ M1    0
XRay3DAcquisitionSequence               = 0x00189507, // SQ M1    0
PrimaryPositionerScanArc                = 0x00189508, // FL M1    0
SecondaryPositionerScanArc              = 0x00189509, // FL M1    0
PrimaryPositionerScanStartAngle         = 0x00189510, // FL M1    0
SecondaryPositionerScanStartAngle       = 0x00189511, // FL M1    0
PrimaryPositionerIncrement              = 0x00189514, // FL M1    0
SecondaryPositionerIncrement            = 0x00189515, // FL M1    0
StartAcquisitionDateTime                = 0x00189516, // DT M1    0
EndAcquisitionDateTime                  = 0x00189517, // DT M1    0
PrimaryPositionerIncrementSign          = 0x00189518, // SS M1    0
SecondaryPositionerIncrementSign        = 0x00189519, // SS M1    0
ApplicationName                         = 0x00189524, // LO M1    0
ApplicationVersion                      = 0x00189525, // LO M1    0
ApplicationManufacturer                 = 0x00189526, // LO M1    0
AlgorithmType                           = 0x00189527, // CS M1    0
AlgorithmDescription                    = 0x00189528, // LO M1    0
XRay3DReconstructionSequence            = 0x00189530, // SQ M1    0
ReconstructionDescription               = 0x00189531, // LO M1    0
PerProjectionAcquisitionSequence        = 0x00189538, // SQ M1    0
DetectorPositionSequence                = 0x00189541, // SQ M1    0
XRayAcquisitionDoseSequence             = 0x00189542, // SQ M1    0
XRaySourceIsocenterPrimaryAngle         = 0x00189543, // FD M1    0
XRaySourceIsocenterSecondaryAngle       = 0x00189544, // FD M1    0
BreastSupportIsocenterPrimaryAngle      = 0x00189545, // FD M1    0
BreastSupportIsocenterSecondaryAngle    = 0x00189546, // FD M1    0
BreastSupportXPositionToIsocenter       = 0x00189547, // FD M1    0
BreastSupportYPositionToIsocenter       = 0x00189548, // FD M1    0
BreastSupportZPositionToIsocenter       = 0x00189549, // FD M1    0
DetectorIsocenterPrimaryAngle           = 0x00189550, // FD M1    0
DetectorIsocenterSecondaryAngle         = 0x00189551, // FD M1    0
DetectorXPositionToIsocenter            = 0x00189552, // FD M1    0
DetectorYPositionToIsocenter            = 0x00189553, // FD M1    0
DetectorZPositionToIsocenter            = 0x00189554, // FD M1    0
XRayGridSequence                        = 0x00189555, // SQ M1    0
XRayFilterSequence                      = 0x00189556, // SQ M1    0
DetectorActiveAreaTLHCPosition          = 0x00189557, // FD M3    0
DetectorActiveAreaOrientation           = 0x00189558, // FD M6    0
PositionerPrimaryAngleDirection         = 0x00189559, // CS M1    0
DiffusionBMatrixSequence                = 0x00189601, // SQ M1    0
DiffusionBValueXX                       = 0x00189602, // FD M1    0
DiffusionBValueXY                       = 0x00189603, // FD M1    0
DiffusionBValueXZ                       = 0x00189604, // FD M1    0
DiffusionBValueYY                       = 0x00189605, // FD M1    0
DiffusionBValueYZ                       = 0x00189606, // FD M1    0
DiffusionBValueZZ                       = 0x00189607, // FD M1    0
DecayCorrectionDateTime                 = 0x00189701, // DT M1    0
StartDensityThreshold                   = 0x00189715, // FD M1    0
StartRelativeDensityDifferenceThreshold = 0x00189716, // FD M1    0
StartCardiacTriggerCountThreshold       = 0x00189717, // FD M1    0
StartRespiratoryTriggerCountThreshold   = 0x00189718, // FD M1    0
TerminationCountsThreshold              = 0x00189719, // FD M1    0
TerminationDensityThreshold             = 0x00189720, // FD M1    0
TerminationRelativeDensityThreshold     = 0x00189721, // FD M1    0
TerminationTimeThreshold                = 0x00189722, // FD M1    0
TerminationCardiacTriggerCountThreshold = 0x00189723, // FD M1    0
TerminationRespiratoryTriggerCountThreshold = 0x00189724, // FD M1    0
DetectorGeometry                        = 0x00189725, // CS M1    0
TransverseDetectorSeparation            = 0x00189726, // FD M1    0
AxialDetectorDimension                  = 0x00189727, // FD M1    0
RadiopharmaceuticalAgentNumber          = 0x00189729, // US M1    0
PETFrameAcquisitionSequence             = 0x00189732, // SQ M1    0
PETDetectorMotionDetailsSequence        = 0x00189733, // SQ M1    0
PETTableDynamicsSequence                = 0x00189734, // SQ M1    0
PETPositionSequence                     = 0x00189735, // SQ M1    0
PETFrameCorrectionFactorsSequence       = 0x00189736, // SQ M1    0
RadiopharmaceuticalUsageSequence        = 0x00189737, // SQ M1    0
AttenuationCorrectionSource             = 0x00189738, // CS M1    0
NumberOfIterations                      = 0x00189739, // US M1    0
NumberOfSubsets                         = 0x00189740, // US M1    0
PETReconstructionSequence               = 0x00189749, // SQ M1    0
PETFrameTypeSequence                    = 0x00189751, // SQ M1    0
TimeOfFlightInformationUsed             = 0x00189755, // CS M1    0
ReconstructionType                      = 0x00189756, // CS M1    0
DecayCorrected                          = 0x00189758, // CS M1    0
AttenuationCorrected                    = 0x00189759, // CS M1    0
ScatterCorrected                        = 0x00189760, // CS M1    0
DeadTimeCorrected                       = 0x00189761, // CS M1    0
GantryMotionCorrected                   = 0x00189762, // CS M1    0
PatientMotionCorrected                  = 0x00189763, // CS M1    0
CountLossNormalizationCorrected         = 0x00189764, // CS M1    0
RandomsCorrected                        = 0x00189765, // CS M1    0
NonUniformRadialSamplingCorrected       = 0x00189766, // CS M1    0
SensitivityCalibrated                   = 0x00189767, // CS M1    0
DetectorNormalizationCorrection         = 0x00189768, // CS M1    0
IterativeReconstructionMethod           = 0x00189769, // CS M1    0
AttenuationCorrectionTemporalRelationship = 0x00189770, // CS M1    0
PatientPhysiologicalStateSequence       = 0x00189771, // SQ M1    0
PatientPhysiologicalStateCodeSequence   = 0x00189772, // SQ M1    0
DepthsOfFocus                           = 0x00189801, // FD M1TN  0
ExcludedIntervalsSequence               = 0x00189803, // SQ M1    0
ExclusionStartDateTime                  = 0x00189804, // DT M1    0
ExclusionDuration                       = 0x00189805, // FD M1    0
USImageDescriptionSequence              = 0x00189806, // SQ M1    0
ImageDataTypeSequence                   = 0x00189807, // SQ M1    0
DataType                                = 0x00189808, // CS M1    0
TransducerScanPatternCodeSequence       = 0x00189809, // SQ M1    0
AliasedDataType                         = 0x0018980B, // CS M1    0
PositionMeasuringDeviceUsed             = 0x0018980C, // CS M1    0
TransducerGeometryCodeSequence          = 0x0018980D, // SQ M1    0
TransducerBeamSteeringCodeSequence      = 0x0018980E, // SQ M1    0
TransducerApplicationCodeSequence       = 0x0018980F, // SQ M1    0
ZeroVelocityPixelValue                  = 0x00189810, // XS M1    0
ContributingEquipmentSequence           = 0x0018A001, // SQ M1    0
ContributionDateTime                    = 0x0018A002, // DT M1    0
ContributionDescription                 = 0x0018A003, // ST M1    0
StudyInstanceUID                        = 0x0020000D, // UI M1    0
SeriesInstanceUID                       = 0x0020000E, // UI M1    0
StudyID                                 = 0x00200010, // SH M1    0
SeriesNumber                            = 0x00200011, // IS M1    0
AcquisitionNumber                       = 0x00200012, // IS M1    0
InstanceNumber                          = 0x00200013, // IS M1    0
IsotopeNumber                           = 0x00200014, // IS M1    1
PhaseNumber                             = 0x00200015, // IS M1    1
IntervalNumber                          = 0x00200016, // IS M1    1
TimeSlotNumber                          = 0x00200017, // IS M1    1
AngleNumber                             = 0x00200018, // IS M1    1
ItemNumber                              = 0x00200019, // IS M1    0
PatientOrientation                      = 0x00200020, // CS M2    0
OverlayNumber                           = 0x00200022, // IS M1    1
CurveNumber                             = 0x00200024, // IS M1    1
LUTNumber                               = 0x00200026, // IS M1    1
ImagePosition                           = 0x00200030, // DS M3    1
ImagePositionPatient                    = 0x00200032, // DS M3    0
ImageOrientation                        = 0x00200035, // DS M6    1
ImageOrientationPatient                 = 0x00200037, // DS M6    0
Location                                = 0x00200050, // DS M1    1
FrameOfReferenceUID                     = 0x00200052, // UI M1    0
Laterality                              = 0x00200060, // CS M1    0
ImageLaterality                         = 0x00200062, // CS M1    0
ImageGeometryType                       = 0x00200070, // LO M1    1
MaskingImage                            = 0x00200080, // CS M1TN  1
ReportNumber                            = 0x002000AA, // IS M1    1
TemporalPositionIdentifier              = 0x00200100, // IS M1    0
NumberOfTemporalPositions               = 0x00200105, // IS M1    0
TemporalResolution                      = 0x00200110, // DS M1    0
SynchronizationFrameOfReferenceUID      = 0x00200200, // UI M1    0
SOPInstanceUIDOfConcatenationSource     = 0x00200242, // UI M1    0
SeriesInStudy                           = 0x00201000, // IS M1    1
AcquisitionsInSeries                    = 0x00201001, // IS M1    1
ImagesInAcquisition                     = 0x00201002, // IS M1    0
ImagesInSeries                          = 0x00201003, // IS M1    1
AcquisitionsInStudy                     = 0x00201004, // IS M1    1
ImagesInStudy                           = 0x00201005, // IS M1    1
Reference                               = 0x00201020, // LO M1TN  1
PositionReferenceIndicator              = 0x00201040, // LO M1    0
SliceLocation                           = 0x00201041, // DS M1    0
OtherStudyNumbers                       = 0x00201070, // IS M1TN  1
NumberOfPatientRelatedStudies           = 0x00201200, // IS M1    0
NumberOfPatientRelatedSeries            = 0x00201202, // IS M1    0
NumberOfPatientRelatedInstances         = 0x00201204, // IS M1    0
NumberOfStudyRelatedSeries              = 0x00201206, // IS M1    0
NumberOfStudyRelatedInstances           = 0x00201208, // IS M1    0
NumberOfSeriesRelatedInstances          = 0x00201209, // IS M1    0
SourceImageIDs                          = 0x00203100, // CS M1TN  1
ModifyingDeviceID                       = 0x00203401, // CS M1    1
ModifiedImageID                         = 0x00203402, // CS M1    1
ModifiedImageDate                       = 0x00203403, // DA M1    1
ModifyingDeviceManufacturer             = 0x00203404, // LO M1    1
ModifiedImageTime                       = 0x00203405, // TM M1    1
ModifiedImageDescription                = 0x00203406, // LO M1    1
ImageComments                           = 0x00204000, // LT M1    0
OriginalImageIdentification             = 0x00205000, // AT M1TN  1
OriginalImageIdentificationNomenclature = 0x00205002, // LO M1TN  1
StackID                                 = 0x00209056, // SH M1    0
InStackPositionNumber                   = 0x00209057, // UL M1    0
FrameAnatomySequence                    = 0x00209071, // SQ M1    0
FrameLaterality                         = 0x00209072, // CS M1    0
FrameContentSequence                    = 0x00209111, // SQ M1    0
PlanePositionSequence                   = 0x00209113, // SQ M1    0
PlaneOrientationSequence                = 0x00209116, // SQ M1    0
TemporalPositionIndex                   = 0x00209128, // UL M1    0
NominalCardiacTriggerDelayTime          = 0x00209153, // FD M1    0
NominalCardiacTriggerTimePriorToRPeak   = 0x00209154, // FL M1    0
ActualCardiacTriggerTimePriorToRPeak    = 0x00209155, // FL M1    0
FrameAcquisitionNumber                  = 0x00209156, // US M1    0
DimensionIndexValues                    = 0x00209157, // UL M1TN  0
FrameComments                           = 0x00209158, // LT M1    0
ConcatenationUID                        = 0x00209161, // UI M1    0
InConcatenationNumber                   = 0x00209162, // US M1    0
InConcatenationTotalNumber              = 0x00209163, // US M1    0
DimensionOrganizationUID                = 0x00209164, // UI M1    0
DimensionIndexPointer                   = 0x00209165, // AT M1    0
FunctionalGroupPointer                  = 0x00209167, // AT M1    0
UnassignedSharedConvertedAttributesSequence = 0x00209170, // SQ M1    0
UnassignedPerFrameConvertedAttributesSequence = 0x00209171, // SQ M1    0
ConversionSourceAttributesSequence      = 0x00209172, // SQ M1    0
DimensionIndexPrivateCreator            = 0x00209213, // LO M1    0
DimensionOrganizationSequence           = 0x00209221, // SQ M1    0
DimensionIndexSequence                  = 0x00209222, // SQ M1    0
ConcatenationFrameOffsetNumber          = 0x00209228, // UL M1    0
FunctionalGroupPrivateCreator           = 0x00209238, // LO M1    0
NominalPercentageOfCardiacPhase         = 0x00209241, // FL M1    0
NominalPercentageOfRespiratoryPhase     = 0x00209245, // FL M1    0
StartingRespiratoryAmplitude            = 0x00209246, // FL M1    0
StartingRespiratoryPhase                = 0x00209247, // CS M1    0
EndingRespiratoryAmplitude              = 0x00209248, // FL M1    0
EndingRespiratoryPhase                  = 0x00209249, // CS M1    0
RespiratoryTriggerType                  = 0x00209250, // CS M1    0
RRIntervalTimeNominal                   = 0x00209251, // FD M1    0
ActualCardiacTriggerDelayTime           = 0x00209252, // FD M1    0
RespiratorySynchronizationSequence      = 0x00209253, // SQ M1    0
RespiratoryIntervalTime                 = 0x00209254, // FD M1    0
NominalRespiratoryTriggerDelayTime      = 0x00209255, // FD M1    0
RespiratoryTriggerDelayThreshold        = 0x00209256, // FD M1    0
ActualRespiratoryTriggerDelayTime       = 0x00209257, // FD M1    0
ImagePositionVolume                     = 0x00209301, // FD M3    0
ImageOrientationVolume                  = 0x00209302, // FD M6    0
UltrasoundAcquisitionGeometry           = 0x00209307, // CS M1    0
ApexPosition                            = 0x00209308, // FD M3    0
VolumeToTransducerMappingMatrix         = 0x00209309, // FD M16   0
VolumeToTableMappingMatrix              = 0x0020930A, // FD M16   0
VolumeToTransducerRelationship          = 0x0020930B, // CS M1    0
PatientFrameOfReferenceSource           = 0x0020930C, // CS M1    0
TemporalPositionTimeOffset              = 0x0020930D, // FD M1    0
PlanePositionVolumeSequence             = 0x0020930E, // SQ M1    0
PlaneOrientationVolumeSequence          = 0x0020930F, // SQ M1    0
TemporalPositionSequence                = 0x00209310, // SQ M1    0
DimensionOrganizationType               = 0x00209311, // CS M1    0
VolumeFrameOfReferenceUID               = 0x00209312, // UI M1    0
TableFrameOfReferenceUID                = 0x00209313, // UI M1    0
DimensionDescriptionLabel               = 0x00209421, // LO M1    0
PatientOrientationInFrameSequence       = 0x00209450, // SQ M1    0
FrameLabel                              = 0x00209453, // LO M1    0
AcquisitionIndex                        = 0x00209518, // US M1TN  0
ContributingSOPInstancesReferenceSequence = 0x00209529, // SQ M1    0
ReconstructionIndex                     = 0x00209536, // US M1    0
LightPathFilterPassThroughWavelength    = 0x00220001, // US M1    0
LightPathFilterPassBand                 = 0x00220002, // US M2    0
ImagePathFilterPassThroughWavelength    = 0x00220003, // US M1    0
ImagePathFilterPassBand                 = 0x00220004, // US M2    0
PatientEyeMovementCommanded             = 0x00220005, // CS M1    0
PatientEyeMovementCommandCodeSequence   = 0x00220006, // SQ M1    0
SphericalLensPower                      = 0x00220007, // FL M1    0
CylinderLensPower                       = 0x00220008, // FL M1    0
CylinderAxis                            = 0x00220009, // FL M1    0
EmmetropicMagnification                 = 0x0022000A, // FL M1    0
IntraOcularPressure                     = 0x0022000B, // FL M1    0
HorizontalFieldOfView                   = 0x0022000C, // FL M1    0
PupilDilated                            = 0x0022000D, // CS M1    0
DegreeOfDilation                        = 0x0022000E, // FL M1    0
StereoBaselineAngle                     = 0x00220010, // FL M1    0
StereoBaselineDisplacement              = 0x00220011, // FL M1    0
StereoHorizontalPixelOffset             = 0x00220012, // FL M1    0
StereoVerticalPixelOffset               = 0x00220013, // FL M1    0
StereoRotation                          = 0x00220014, // FL M1    0
AcquisitionDeviceTypeCodeSequence       = 0x00220015, // SQ M1    0
IlluminationTypeCodeSequence            = 0x00220016, // SQ M1    0
LightPathFilterTypeStackCodeSequence    = 0x00220017, // SQ M1    0
ImagePathFilterTypeStackCodeSequence    = 0x00220018, // SQ M1    0
LensesCodeSequence                      = 0x00220019, // SQ M1    0
ChannelDescriptionCodeSequence          = 0x0022001A, // SQ M1    0
RefractiveStateSequence                 = 0x0022001B, // SQ M1    0
MydriaticAgentCodeSequence              = 0x0022001C, // SQ M1    0
RelativeImagePositionCodeSequence       = 0x0022001D, // SQ M1    0
CameraAngleOfView                       = 0x0022001E, // FL M1    0
StereoPairsSequence                     = 0x00220020, // SQ M1    0
LeftImageSequence                       = 0x00220021, // SQ M1    0
RightImageSequence                      = 0x00220022, // SQ M1    0
StereoPairsPresent                      = 0x00220028, // CS M1    0
AxialLengthOfTheEye                     = 0x00220030, // FL M1    0
OphthalmicFrameLocationSequence         = 0x00220031, // SQ M1    0
ReferenceCoordinates                    = 0x00220032, // FL M2T2N 0
DepthSpatialResolution                  = 0x00220035, // FL M1    0
MaximumDepthDistortion                  = 0x00220036, // FL M1    0
AlongScanSpatialResolution              = 0x00220037, // FL M1    0
MaximumAlongScanDistortion              = 0x00220038, // FL M1    0
OphthalmicImageOrientation              = 0x00220039, // CS M1    0
DepthOfTransverseImage                  = 0x00220041, // FL M1    0
MydriaticAgentConcentrationUnitsSequence = 0x00220042, // SQ M1    0
AcrossScanSpatialResolution             = 0x00220048, // FL M1    0
MaximumAcrossScanDistortion             = 0x00220049, // FL M1    0
MydriaticAgentConcentration             = 0x0022004E, // DS M1    0
IlluminationWaveLength                  = 0x00220055, // FL M1    0
IlluminationPower                       = 0x00220056, // FL M1    0
IlluminationBandwidth                   = 0x00220057, // FL M1    0
MydriaticAgentSequence                  = 0x00220058, // SQ M1    0
OphthalmicAxialMeasurementsRightEyeSequence = 0x00221007, // SQ M1    0
OphthalmicAxialMeasurementsLeftEyeSequence = 0x00221008, // SQ M1    0
OphthalmicAxialMeasurementsDeviceType   = 0x00221009, // CS M1    0
OphthalmicAxialLengthMeasurementsType   = 0x00221010, // CS M1    0
OphthalmicAxialLengthSequence           = 0x00221012, // SQ M1    0
OphthalmicAxialLength                   = 0x00221019, // FL M1    0
LensStatusCodeSequence                  = 0x00221024, // SQ M1    0
VitreousStatusCodeSequence              = 0x00221025, // SQ M1    0
IOLFormulaCodeSequence                  = 0x00221028, // SQ M1    0
IOLFormulaDetail                        = 0x00221029, // LO M1    0
KeratometerIndex                        = 0x00221033, // FL M1    0
SourceOfOphthalmicAxialLengthCodeSequence = 0x00221035, // SQ M1    0
TargetRefraction                        = 0x00221037, // FL M1    0
RefractiveProcedureOccurred             = 0x00221039, // CS M1    0
RefractiveSurgeryTypeCodeSequence       = 0x00221040, // SQ M1    0
OphthalmicUltrasoundMethodCodeSequence  = 0x00221044, // SQ M1    0
OphthalmicAxialLengthMeasurementsSequence = 0x00221050, // SQ M1    0
IOLPower                                = 0x00221053, // FL M1    0
PredictedRefractiveError                = 0x00221054, // FL M1    0
OphthalmicAxialLengthVelocity           = 0x00221059, // FL M1    0
LensStatusDescription                   = 0x00221065, // LO M1    0
VitreousStatusDescription               = 0x00221066, // LO M1    0
IOLPowerSequence                        = 0x00221090, // SQ M1    0
LensConstantSequence                    = 0x00221092, // SQ M1    0
IOLManufacturer                         = 0x00221093, // LO M1    0
LensConstantDescription                 = 0x00221094, // LO M1    1
ImplantName                             = 0x00221095, // LO M1    0
KeratometryMeasurementTypeCodeSequence  = 0x00221096, // SQ M1    0
ImplantPartNumber                       = 0x00221097, // LO M1    0
ReferencedOphthalmicAxialMeasurementsSequence = 0x00221100, // SQ M1    0
OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence = 0x00221101, // SQ M1    0
RefractiveErrorBeforeRefractiveSurgeryCodeSequence = 0x00221103, // SQ M1    0
IOLPowerForExactEmmetropia              = 0x00221121, // FL M1    0
IOLPowerForExactTargetRefraction        = 0x00221122, // FL M1    0
AnteriorChamberDepthDefinitionCodeSequence = 0x00221125, // SQ M1    0
LensThicknessSequence                   = 0x00221127, // SQ M1    0
AnteriorChamberDepthSequence            = 0x00221128, // SQ M1    0
LensThickness                           = 0x00221130, // FL M1    0
AnteriorChamberDepth                    = 0x00221131, // FL M1    0
SourceOfLensThicknessDataCodeSequence   = 0x00221132, // SQ M1    0
SourceOfAnteriorChamberDepthDataCodeSequence = 0x00221133, // SQ M1    0
SourceOfRefractiveMeasurementsSequence  = 0x00221134, // SQ M1    0
SourceOfRefractiveMeasurementsCodeSequence = 0x00221135, // SQ M1    0
OphthalmicAxialLengthMeasurementModified = 0x00221140, // CS M1    0
OphthalmicAxialLengthDataSourceCodeSequence = 0x00221150, // SQ M1    0
OphthalmicAxialLengthAcquisitionMethodCodeSequence = 0x00221153, // SQ M1    1
SignalToNoiseRatio                      = 0x00221155, // FL M1    0
OphthalmicAxialLengthDataSourceDescription = 0x00221159, // LO M1    0
OphthalmicAxialLengthMeasurementsTotalLengthSequence = 0x00221210, // SQ M1    0
OphthalmicAxialLengthMeasurementsSegmentalLengthSequence = 0x00221211, // SQ M1    0
OphthalmicAxialLengthMeasurementsLengthSummationSequence = 0x00221212, // SQ M1    0
UltrasoundOphthalmicAxialLengthMeasurementsSequence = 0x00221220, // SQ M1    0
OpticalOphthalmicAxialLengthMeasurementsSequence = 0x00221225, // SQ M1    0
UltrasoundSelectedOphthalmicAxialLengthSequence = 0x00221230, // SQ M1    0
OphthalmicAxialLengthSelectionMethodCodeSequence = 0x00221250, // SQ M1    0
OpticalSelectedOphthalmicAxialLengthSequence = 0x00221255, // SQ M1    0
SelectedSegmentalOphthalmicAxialLengthSequence = 0x00221257, // SQ M1    0
SelectedTotalOphthalmicAxialLengthSequence = 0x00221260, // SQ M1    0
OphthalmicAxialLengthQualityMetricSequence = 0x00221262, // SQ M1    0
OphthalmicAxialLengthQualityMetricTypeCodeSequence = 0x00221265, // SQ M1    1
OphthalmicAxialLengthQualityMetricTypeDescription = 0x00221273, // LO M1    1
IntraocularLensCalculationsRightEyeSequence = 0x00221300, // SQ M1    0
IntraocularLensCalculationsLeftEyeSequence = 0x00221310, // SQ M1    0
ReferencedOphthalmicAxialLengthMeasurementQCImageSequence = 0x00221330, // SQ M1    0
OphthalmicMappingDeviceType             = 0x00221415, // CS M1    0
AcquisitionMethodCodeSequence           = 0x00221420, // SQ M1    0
AcquisitionMethodAlgorithmSequence      = 0x00221423, // SQ M1    0
OphthalmicThicknessMapTypeCodeSequence  = 0x00221436, // SQ M1    0
OphthalmicThicknessMappingNormalsSequence = 0x00221443, // SQ M1    0
RetinalThicknessDefinitionCodeSequence  = 0x00221445, // SQ M1    0
PixelValueMappingToCodedConceptSequence = 0x00221450, // SQ M1    0
MappedPixelValue                        = 0x00221452, // XS M1    0
PixelValueMappingExplanation            = 0x00221454, // LO M1    0
OphthalmicThicknessMapQualityThresholdSequence = 0x00221458, // SQ M1    0
OphthalmicThicknessMapThresholdQualityRating = 0x00221460, // FL M1    0
AnatomicStructureReferencePoint         = 0x00221463, // FL M2    0
RegistrationToLocalizerSequence         = 0x00221465, // SQ M1    0
RegisteredLocalizerUnits                = 0x00221466, // CS M1    0
RegisteredLocalizerTopLeftHandCorner    = 0x00221467, // FL M2    0
RegisteredLocalizerBottomRightHandCorner = 0x00221468, // FL M2    0
OphthalmicThicknessMapQualityRatingSequence = 0x00221470, // SQ M1    0
RelevantOPTAttributesSequence           = 0x00221472, // SQ M1    0
TransformationMethodCodeSequence        = 0x00221512, // SQ M1    0
TransformationAlgorithmSequence         = 0x00221513, // SQ M1    0
OphthalmicAxialLengthMethod             = 0x00221515, // CS M1    0
OphthalmicFOV                           = 0x00221517, // FL M1    0
TwoDimensionalToThreeDimensionalMapSequence = 0x00221518, // SQ M1    0
WideFieldOphthalmicPhotographyQualityRatingSequence = 0x00221525, // SQ M1    0
WideFieldOphthalmicPhotographyQualityThresholdSequence = 0x00221526, // SQ M1    0
WideFieldOphthalmicPhotographyThresholdQualityRating = 0x00221527, // FL M1    0
XCoordinatesCenterPixelViewAngle        = 0x00221528, // FL M1    0
YCoordinatesCenterPixelViewAngle        = 0x00221529, // FL M1    0
NumberOfMapPoints                       = 0x00221530, // UL M1    0
TwoDimensionalToThreeDimensionalMapData = 0x00221531, // OF M1    0
VisualFieldHorizontalExtent             = 0x00240010, // FL M1    0
VisualFieldVerticalExtent               = 0x00240011, // FL M1    0
VisualFieldShape                        = 0x00240012, // CS M1    0
ScreeningTestModeCodeSequence           = 0x00240016, // SQ M1    0
MaximumStimulusLuminance                = 0x00240018, // FL M1    0
BackgroundLuminance                     = 0x00240020, // FL M1    0
StimulusColorCodeSequence               = 0x00240021, // SQ M1    0
BackgroundIlluminationColorCodeSequence = 0x00240024, // SQ M1    0
StimulusArea                            = 0x00240025, // FL M1    0
StimulusPresentationTime                = 0x00240028, // FL M1    0
FixationSequence                        = 0x00240032, // SQ M1    0
FixationMonitoringCodeSequence          = 0x00240033, // SQ M1    0
VisualFieldCatchTrialSequence           = 0x00240034, // SQ M1    0
FixationCheckedQuantity                 = 0x00240035, // US M1    0
PatientNotProperlyFixatedQuantity       = 0x00240036, // US M1    0
PresentedVisualStimuliDataFlag          = 0x00240037, // CS M1    0
NumberOfVisualStimuli                   = 0x00240038, // US M1    0
ExcessiveFixationLossesDataFlag         = 0x00240039, // CS M1    0
ExcessiveFixationLosses                 = 0x00240040, // CS M1    0
StimuliRetestingQuantity                = 0x00240042, // US M1    0
CommentsOnPatientPerformanceOfVisualField = 0x00240044, // LT M1    0
FalseNegativesEstimateFlag              = 0x00240045, // CS M1    0
FalseNegativesEstimate                  = 0x00240046, // FL M1    0
NegativeCatchTrialsQuantity             = 0x00240048, // US M1    0
FalseNegativesQuantity                  = 0x00240050, // US M1    0
ExcessiveFalseNegativesDataFlag         = 0x00240051, // CS M1    0
ExcessiveFalseNegatives                 = 0x00240052, // CS M1    0
FalsePositivesEstimateFlag              = 0x00240053, // CS M1    0
FalsePositivesEstimate                  = 0x00240054, // FL M1    0
CatchTrialsDataFlag                     = 0x00240055, // CS M1    0
PositiveCatchTrialsQuantity             = 0x00240056, // US M1    0
TestPointNormalsDataFlag                = 0x00240057, // CS M1    0
TestPointNormalsSequence                = 0x00240058, // SQ M1    0
GlobalDeviationProbabilityNormalsFlag   = 0x00240059, // CS M1    0
FalsePositivesQuantity                  = 0x00240060, // US M1    0
ExcessiveFalsePositivesDataFlag         = 0x00240061, // CS M1    0
ExcessiveFalsePositives                 = 0x00240062, // CS M1    0
VisualFieldTestNormalsFlag              = 0x00240063, // CS M1    0
ResultsNormalsSequence                  = 0x00240064, // SQ M1    0
AgeCorrectedSensitivityDeviationAlgorithmSequence = 0x00240065, // SQ M1    0
GlobalDeviationFromNormal               = 0x00240066, // FL M1    0
GeneralizedDefectSensitivityDeviationAlgorithmSequence = 0x00240067, // SQ M1    0
LocalizedDeviationFromNormal            = 0x00240068, // FL M1    0
PatientReliabilityIndicator             = 0x00240069, // LO M1    0
VisualFieldMeanSensitivity              = 0x00240070, // FL M1    0
GlobalDeviationProbability              = 0x00240071, // FL M1    0
LocalDeviationProbabilityNormalsFlag    = 0x00240072, // CS M1    0
LocalizedDeviationProbability           = 0x00240073, // FL M1    0
ShortTermFluctuationCalculated          = 0x00240074, // CS M1    0
ShortTermFluctuation                    = 0x00240075, // FL M1    0
ShortTermFluctuationProbabilityCalculated = 0x00240076, // CS M1    0
ShortTermFluctuationProbability         = 0x00240077, // FL M1    0
CorrectedLocalizedDeviationFromNormalCalculated = 0x00240078, // CS M1    0
CorrectedLocalizedDeviationFromNormal   = 0x00240079, // FL M1    0
CorrectedLocalizedDeviationFromNormalProbabilityCalculated = 0x00240080, // CS M1    0
CorrectedLocalizedDeviationFromNormalProbability = 0x00240081, // FL M1    0
GlobalDeviationProbabilitySequence      = 0x00240083, // SQ M1    0
LocalizedDeviationProbabilitySequence   = 0x00240085, // SQ M1    0
FovealSensitivityMeasured               = 0x00240086, // CS M1    0
FovealSensitivity                       = 0x00240087, // FL M1    0
VisualFieldTestDuration                 = 0x00240088, // FL M1    0
VisualFieldTestPointSequence            = 0x00240089, // SQ M1    0
VisualFieldTestPointXCoordinate         = 0x00240090, // FL M1    0
VisualFieldTestPointYCoordinate         = 0x00240091, // FL M1    0
AgeCorrectedSensitivityDeviationValue   = 0x00240092, // FL M1    0
StimulusResults                         = 0x00240093, // CS M1    0
SensitivityValue                        = 0x00240094, // FL M1    0
RetestStimulusSeen                      = 0x00240095, // CS M1    0
RetestSensitivityValue                  = 0x00240096, // FL M1    0
VisualFieldTestPointNormalsSequence     = 0x00240097, // SQ M1    0
QuantifiedDefect                        = 0x00240098, // FL M1    0
AgeCorrectedSensitivityDeviationProbabilityValue = 0x00240100, // FL M1    0
GeneralizedDefectCorrectedSensitivityDeviationFlag = 0x00240102, // CS M1    0
GeneralizedDefectCorrectedSensitivityDeviationValue = 0x00240103, // FL M1    0
GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue = 0x00240104, // FL M1    0
MinimumSensitivityValue                 = 0x00240105, // FL M1    0
BlindSpotLocalized                      = 0x00240106, // CS M1    0
BlindSpotXCoordinate                    = 0x00240107, // FL M1    0
BlindSpotYCoordinate                    = 0x00240108, // FL M1    0
VisualAcuityMeasurementSequence         = 0x00240110, // SQ M1    0
RefractiveParametersUsedOnPatientSequence = 0x00240112, // SQ M1    0
MeasurementLaterality                   = 0x00240113, // CS M1    0
OphthalmicPatientClinicalInformationLeftEyeSequence = 0x00240114, // SQ M1    0
OphthalmicPatientClinicalInformationRightEyeSequence = 0x00240115, // SQ M1    0
FovealPointNormativeDataFlag            = 0x00240117, // CS M1    0
FovealPointProbabilityValue             = 0x00240118, // FL M1    0
ScreeningBaselineMeasured               = 0x00240120, // CS M1    0
ScreeningBaselineMeasuredSequence       = 0x00240122, // SQ M1    0
ScreeningBaselineType                   = 0x00240124, // CS M1    0
ScreeningBaselineValue                  = 0x00240126, // FL M1    0
AlgorithmSource                         = 0x00240202, // LO M1    0
DataSetName                             = 0x00240306, // LO M1    0
DataSetVersion                          = 0x00240307, // LO M1    0
DataSetSource                           = 0x00240308, // LO M1    0
DataSetDescription                      = 0x00240309, // LO M1    0
VisualFieldTestReliabilityGlobalIndexSequence = 0x00240317, // SQ M1    0
VisualFieldGlobalResultsIndexSequence   = 0x00240320, // SQ M1    0
DataObservationSequence                 = 0x00240325, // SQ M1    0
IndexNormalsFlag                        = 0x00240338, // CS M1    0
IndexProbability                        = 0x00240341, // FL M1    0
IndexProbabilitySequence                = 0x00240344, // SQ M1    0
SamplesPerPixel                         = 0x00280002, // US M1    0
SamplesPerPixelUsed                     = 0x00280003, // US M1    0
PhotometricInterpretation               = 0x00280004, // CS M1    0
ImageDimensions                         = 0x00280005, // US M1    1
PlanarConfiguration                     = 0x00280006, // US M1    0
NumberOfFrames                          = 0x00280008, // IS M1    0
FrameIncrementPointer                   = 0x00280009, // AT M1TN  0
FrameDimensionPointer                   = 0x0028000A, // AT M1TN  0
Rows                                    = 0x00280010, // US M1    0
Columns                                 = 0x00280011, // US M1    0
Planes                                  = 0x00280012, // US M1    1
UltrasoundColorDataPresent              = 0x00280014, // US M1    0
PixelSpacing                            = 0x00280030, // DS M2    0
ZoomFactor                              = 0x00280031, // DS M2    0
ZoomCenter                              = 0x00280032, // DS M2    0
PixelAspectRatio                        = 0x00280034, // IS M2    0
ImageFormat                             = 0x00280040, // CS M1    1
ManipulatedImage                        = 0x00280050, // LO M1TN  1
CorrectedImage                          = 0x00280051, // CS M1TN  0
CompressionRecognitionCode              = 0x0028005F, // LO M1    1
CompressionCode                         = 0x00280060, // CS M1    1
CompressionOriginator                   = 0x00280061, // SH M1    1
CompressionLabel                        = 0x00280062, // LO M1    1
CompressionDescription                  = 0x00280063, // SH M1    1
CompressionSequence                     = 0x00280065, // CS M1TN  1
CompressionStepPointers                 = 0x00280066, // AT M1TN  1
RepeatInterval                          = 0x00280068, // US M1    1
BitsGrouped                             = 0x00280069, // US M1    1
PerimeterTable                          = 0x00280070, // US M1TN  1
PerimeterValue                          = 0x00280071, // XS M1    1
PredictorRows                           = 0x00280080, // US M1    1
PredictorColumns                        = 0x00280081, // US M1    1
PredictorConstants                      = 0x00280082, // US M1TN  1
BlockedPixels                           = 0x00280090, // CS M1    1
BlockRows                               = 0x00280091, // US M1    1
BlockColumns                            = 0x00280092, // US M1    1
RowOverlap                              = 0x00280093, // US M1    1
ColumnOverlap                           = 0x00280094, // US M1    1
BitsAllocated                           = 0x00280100, // US M1    0
BitsStored                              = 0x00280101, // US M1    0
HighBit                                 = 0x00280102, // US M1    0
PixelRepresentation                     = 0x00280103, // US M1    0
SmallestValidPixelValue                 = 0x00280104, // XS M1    1
LargestValidPixelValue                  = 0x00280105, // XS M1    1
SmallestImagePixelValue                 = 0x00280106, // XS M1    0
LargestImagePixelValue                  = 0x00280107, // XS M1    0
SmallestPixelValueInSeries              = 0x00280108, // XS M1    0
LargestPixelValueInSeries               = 0x00280109, // XS M1    0
SmallestImagePixelValueInPlane          = 0x00280110, // XS M1    1
LargestImagePixelValueInPlane           = 0x00280111, // XS M1    1
PixelPaddingValue                       = 0x00280120, // XS M1    0
PixelPaddingRangeLimit                  = 0x00280121, // XS M1    0
FloatPixelPaddingValue                  = 0x00280122, // FL M1    0
DoubleFloatPixelPaddingValue            = 0x00280123, // FD M1    0
FloatPixelPaddingRangeLimit             = 0x00280124, // FL M1    0
DoubleFloatPixelPaddingRangeLimit       = 0x00280125, // FD M1    0
ImageLocation                           = 0x00280200, // US M1    1
QualityControlImage                     = 0x00280300, // CS M1    0
BurnedInAnnotation                      = 0x00280301, // CS M1    0
RecognizableVisualFeatures              = 0x00280302, // CS M1    0
LongitudinalTemporalInformationModified = 0x00280303, // CS M1    0
ReferencedColorPaletteInstanceUID       = 0x00280304, // UI M1    0
TransformLabel                          = 0x00280400, // LO M1    1
TransformVersionNumber                  = 0x00280401, // LO M1    1
NumberOfTransformSteps                  = 0x00280402, // US M1    1
SequenceOfCompressedData                = 0x00280403, // LO M1TN  1
DetailsOfCoefficients                   = 0x00280404, // AT M1TN  1
RowsForNthOrderCoefficients             = 0x00280410, // US M1    1
ColumnsForNthOrderCoefficients          = 0x00280411, // US M1    1
CoefficientCoding                       = 0x00280412, // LO M1TN  1
CoefficientCodingPointers               = 0x00280413, // AT M1TN  1
DCTLabel                                = 0x00280700, // LO M1    1
DataBlockDescription                    = 0x00280701, // CS M1TN  1
DataBlock                               = 0x00280702, // AT M1TN  1
NormalizationFactorFormat               = 0x00280710, // US M1    1
ZonalMapNumberFormat                    = 0x00280720, // US M1    1
ZonalMapLocation                        = 0x00280721, // AT M1TN  1
ZonalMapFormat                          = 0x00280722, // US M1    1
AdaptiveMapFormat                       = 0x00280730, // US M1    1
CodeNumberFormat                        = 0x00280740, // US M1    1
CodeLabel                               = 0x00280810, // CS M1TN  1
NumberOfTables                          = 0x00280812, // US M1    1
CodeTableLocation                       = 0x00280813, // AT M1TN  1
BitsForCodeWord                         = 0x00280814, // US M1    1
ImageDataLocation                       = 0x00280818, // AT M1TN  1
PixelSpacingCalibrationType             = 0x00280A02, // CS M1    0
PixelSpacingCalibrationDescription      = 0x00280A04, // LO M1    0
PixelIntensityRelationship              = 0x00281040, // CS M1    0
PixelIntensityRelationshipSign          = 0x00281041, // SS M1    0
WindowCenter                            = 0x00281050, // DS M1TN  0
WindowWidth                             = 0x00281051, // DS M1TN  0
RescaleIntercept                        = 0x00281052, // DS M1    0
RescaleSlope                            = 0x00281053, // DS M1    0
RescaleType                             = 0x00281054, // LO M1    0
WindowCenterWidthExplanation            = 0x00281055, // LO M1TN  0
VOILUTFunction                          = 0x00281056, // CS M1    0
GrayScale                               = 0x00281080, // CS M1    1
RecommendedViewingMode                  = 0x00281090, // CS M1    0
GrayLookupTableDescriptor               = 0x00281100, // XS M3    1
RedPaletteColorLookupTableDescriptor    = 0x00281101, // XS M3    0
GreenPaletteColorLookupTableDescriptor  = 0x00281102, // XS M3    0
BluePaletteColorLookupTableDescriptor   = 0x00281103, // XS M3    0
AlphaPaletteColorLookupTableDescriptor  = 0x00281104, // US M3    0
LargeRedPaletteColorLookupTableDescriptor = 0x00281111, // XS M4    1
LargeGreenPaletteColorLookupTableDescriptor = 0x00281112, // XS M4    1
LargeBluePaletteColorLookupTableDescriptor = 0x00281113, // XS M4    1
PaletteColorLookupTableUID              = 0x00281199, // UI M1    0
GrayLookupTableData                     = 0x00281200, // OW M1    1
RedPaletteColorLookupTableData          = 0x00281201, // OW M1    0
GreenPaletteColorLookupTableData        = 0x00281202, // OW M1    0
BluePaletteColorLookupTableData         = 0x00281203, // OW M1    0
AlphaPaletteColorLookupTableData        = 0x00281204, // OW M1    0
LargeRedPaletteColorLookupTableData     = 0x00281211, // OW M1    1
LargeGreenPaletteColorLookupTableData   = 0x00281212, // OW M1    1
LargeBluePaletteColorLookupTableData    = 0x00281213, // OW M1    1
LargePaletteColorLookupTableUID         = 0x00281214, // UI M1    1
SegmentedRedPaletteColorLookupTableData = 0x00281221, // OW M1    0
SegmentedGreenPaletteColorLookupTableData = 0x00281222, // OW M1    0
SegmentedBluePaletteColorLookupTableData = 0x00281223, // OW M1    0
SegmentedAlphaPaletteColorLookupTableData = 0x00281224, // OW M1    0
BreastImplantPresent                    = 0x00281300, // CS M1    0
PartialView                             = 0x00281350, // CS M1    0
PartialViewDescription                  = 0x00281351, // ST M1    0
PartialViewCodeSequence                 = 0x00281352, // SQ M1    0
SpatialLocationsPreserved               = 0x0028135A, // CS M1    0
DataFrameAssignmentSequence             = 0x00281401, // SQ M1    0
DataPathAssignment                      = 0x00281402, // CS M1    0
BitsMappedToColorLookupTable            = 0x00281403, // US M1    0
BlendingLUT1Sequence                    = 0x00281404, // SQ M1    0
BlendingLUT1TransferFunction            = 0x00281405, // CS M1    0
BlendingWeightConstant                  = 0x00281406, // FD M1    0
BlendingLookupTableDescriptor           = 0x00281407, // US M3    0
BlendingLookupTableData                 = 0x00281408, // OW M1    0
EnhancedPaletteColorLookupTableSequence = 0x0028140B, // SQ M1    0
BlendingLUT2Sequence                    = 0x0028140C, // SQ M1    0
BlendingLUT2TransferFunction            = 0x0028140D, // CS M1    0
DataPathID                              = 0x0028140E, // CS M1    0
RGBLUTTransferFunction                  = 0x0028140F, // CS M1    0
AlphaLUTTransferFunction                = 0x00281410, // CS M1    0
ICCProfile                              = 0x00282000, // OB M1    0
ColorSpace                              = 0x00282002, // CS M1    0
LossyImageCompression                   = 0x00282110, // CS M1    0
LossyImageCompressionRatio              = 0x00282112, // DS M1TN  0
LossyImageCompressionMethod             = 0x00282114, // CS M1TN  0
ModalityLUTSequence                     = 0x00283000, // SQ M1    0
LUTDescriptor                           = 0x00283002, // XS M3    0
LUTExplanation                          = 0x00283003, // LO M1    0
ModalityLUTType                         = 0x00283004, // LO M1    0
LUTData                                 = 0x00283006, // OW M1    0
VOILUTSequence                          = 0x00283010, // SQ M1    0
SoftcopyVOILUTSequence                  = 0x00283110, // SQ M1    0
ImagePresentationComments               = 0x00284000, // LT M1    1
BiPlaneAcquisitionSequence              = 0x00285000, // SQ M1    1
RepresentativeFrameNumber               = 0x00286010, // US M1    0
FrameNumbersOfInterest                  = 0x00286020, // US M1TN  0
FrameOfInterestDescription              = 0x00286022, // LO M1TN  0
FrameOfInterestType                     = 0x00286023, // CS M1TN  0
MaskPointers                            = 0x00286030, // US M1TN  1
RWavePointer                            = 0x00286040, // US M1TN  0
MaskSubtractionSequence                 = 0x00286100, // SQ M1    0
MaskOperation                           = 0x00286101, // CS M1    0
ApplicableFrameRange                    = 0x00286102, // US M2T2N 0
MaskFrameNumbers                        = 0x00286110, // US M1TN  0
ContrastFrameAveraging                  = 0x00286112, // US M1    0
MaskSubPixelShift                       = 0x00286114, // FL M2    0
TIDOffset                               = 0x00286120, // SS M1    0
MaskOperationExplanation                = 0x00286190, // ST M1    0
EquipmentAdministratorSequence          = 0x00287000, // SQ M1    0
NumberOfDisplaySubsystems               = 0x00287001, // US M1    0
CurrentConfigurationID                  = 0x00287002, // US M1    0
DisplaySubsystemID                      = 0x00287003, // US M1    0
DisplaySubsystemName                    = 0x00287004, // SH M1    0
DisplaySubsystemDescription             = 0x00287005, // LO M1    0
SystemStatus                            = 0x00287006, // CS M1    0
SystemStatusComment                     = 0x00287007, // LO M1    0
TargetLuminanceCharacteristicsSequence  = 0x00287008, // SQ M1    0
LuminanceCharacteristicsID              = 0x00287009, // US M1    0
DisplaySubsystemConfigurationSequence   = 0x0028700A, // SQ M1    0
ConfigurationID                         = 0x0028700B, // US M1    0
ConfigurationName                       = 0x0028700C, // SH M1    0
ConfigurationDescription                = 0x0028700D, // LO M1    0
ReferencedTargetLuminanceCharacteristicsID = 0x0028700E, // US M1    0
QAResultsSequence                       = 0x0028700F, // SQ M1    0
DisplaySubsystemQAResultsSequence       = 0x00287010, // SQ M1    0
ConfigurationQAResultsSequence          = 0x00287011, // SQ M1    0
MeasurementEquipmentSequence            = 0x00287012, // SQ M1    0
MeasurementFunctions                    = 0x00287013, // CS M1TN  0
MeasurementEquipmentType                = 0x00287014, // CS M1    0
VisualEvaluationResultSequence          = 0x00287015, // SQ M1    0
DisplayCalibrationResultSequence        = 0x00287016, // SQ M1    0
DDLValue                                = 0x00287017, // US M1    0
CIExyWhitePoint                         = 0x00287018, // FL M2    0
DisplayFunctionType                     = 0x00287019, // CS M1    0
GammaValue                              = 0x0028701A, // FL M1    0
NumberOfLuminancePoints                 = 0x0028701B, // US M1    0
LuminanceResponseSequence               = 0x0028701C, // SQ M1    0
TargetMinimumLuminance                  = 0x0028701D, // FL M1    0
TargetMaximumLuminance                  = 0x0028701E, // FL M1    0
LuminanceValue                          = 0x0028701F, // FL M1    0
LuminanceResponseDescription            = 0x00287020, // LO M1    0
WhitePointFlag                          = 0x00287021, // CS M1    0
DisplayDeviceTypeCodeSequence           = 0x00287022, // SQ M1    0
DisplaySubsystemSequence                = 0x00287023, // SQ M1    0
LuminanceResultSequence                 = 0x00287024, // SQ M1    0
AmbientLightValueSource                 = 0x00287025, // CS M1    0
MeasuredCharacteristics                 = 0x00287026, // CS M1TN  0
LuminanceUniformityResultSequence       = 0x00287027, // SQ M1    0
VisualEvaluationTestSequence            = 0x00287028, // SQ M1    0
TestResult                              = 0x00287029, // CS M1    0
TestResultComment                       = 0x0028702A, // LO M1    0
TestImageValidation                     = 0x0028702B, // CS M1    0
TestPatternCodeSequence                 = 0x0028702C, // SQ M1    0
MeasurementPatternCodeSequence          = 0x0028702D, // SQ M1    0
VisualEvaluationMethodCodeSequence      = 0x0028702E, // SQ M1    0
PixelDataProviderURL                    = 0x00287FE0, // UR M1    0
DataPointRows                           = 0x00289001, // UL M1    0
DataPointColumns                        = 0x00289002, // UL M1    0
SignalDomainColumns                     = 0x00289003, // CS M1    0
LargestMonochromePixelValue             = 0x00289099, // US M1    1
DataRepresentation                      = 0x00289108, // CS M1    0
PixelMeasuresSequence                   = 0x00289110, // SQ M1    0
FrameVOILUTSequence                     = 0x00289132, // SQ M1    0
PixelValueTransformationSequence        = 0x00289145, // SQ M1    0
SignalDomainRows                        = 0x00289235, // CS M1    0
DisplayFilterPercentage                 = 0x00289411, // FL M1    0
FramePixelShiftSequence                 = 0x00289415, // SQ M1    0
SubtractionItemID                       = 0x00289416, // US M1    0
PixelIntensityRelationshipLUTSequence   = 0x00289422, // SQ M1    0
FramePixelDataPropertiesSequence        = 0x00289443, // SQ M1    0
GeometricalProperties                   = 0x00289444, // CS M1    0
GeometricMaximumDistortion              = 0x00289445, // FL M1    0
ImageProcessingApplied                  = 0x00289446, // CS M1TN  0
MaskSelectionMode                       = 0x00289454, // CS M1    0
LUTFunction                             = 0x00289474, // CS M1    0
MaskVisibilityPercentage                = 0x00289478, // FL M1    0
PixelShiftSequence                      = 0x00289501, // SQ M1    0
RegionPixelShiftSequence                = 0x00289502, // SQ M1    0
VerticesOfTheRegion                     = 0x00289503, // SS M2T2N 0
MultiFramePresentationSequence          = 0x00289505, // SQ M1    0
PixelShiftFrameRange                    = 0x00289506, // US M2T2N 0
LUTFrameRange                           = 0x00289507, // US M2T2N 0
ImageToEquipmentMappingMatrix           = 0x00289520, // DS M16   0
EquipmentCoordinateSystemIdentification = 0x00289537, // CS M1    0
StudyStatusID                           = 0x0032000A, // CS M1    1
StudyPriorityID                         = 0x0032000C, // CS M1    1
StudyIDIssuer                           = 0x00320012, // LO M1    1
StudyVerifiedDate                       = 0x00320032, // DA M1    1
StudyVerifiedTime                       = 0x00320033, // TM M1    1
StudyReadDate                           = 0x00320034, // DA M1    1
StudyReadTime                           = 0x00320035, // TM M1    1
ScheduledStudyStartDate                 = 0x00321000, // DA M1    1
ScheduledStudyStartTime                 = 0x00321001, // TM M1    1
ScheduledStudyStopDate                  = 0x00321010, // DA M1    1
ScheduledStudyStopTime                  = 0x00321011, // TM M1    1
ScheduledStudyLocation                  = 0x00321020, // LO M1    1
ScheduledStudyLocationAETitle           = 0x00321021, // AE M1TN  1
ReasonForStudy                          = 0x00321030, // LO M1    1
RequestingPhysicianIdentificationSequence = 0x00321031, // SQ M1    0
RequestingPhysician                     = 0x00321032, // PN M1    0
RequestingService                       = 0x00321033, // LO M1    0
RequestingServiceCodeSequence           = 0x00321034, // SQ M1    0
StudyArrivalDate                        = 0x00321040, // DA M1    1
StudyArrivalTime                        = 0x00321041, // TM M1    1
StudyCompletionDate                     = 0x00321050, // DA M1    1
StudyCompletionTime                     = 0x00321051, // TM M1    1
StudyComponentStatusID                  = 0x00321055, // CS M1    1
RequestedProcedureDescription           = 0x00321060, // LO M1    0
RequestedProcedureCodeSequence          = 0x00321064, // SQ M1    0
RequestedContrastAgent                  = 0x00321070, // LO M1    0
StudyComments                           = 0x00324000, // LT M1    1
ReferencedPatientAliasSequence          = 0x00380004, // SQ M1    0
VisitStatusID                           = 0x00380008, // CS M1    0
AdmissionID                             = 0x00380010, // LO M1    0
IssuerOfAdmissionID                     = 0x00380011, // LO M1    1
IssuerOfAdmissionIDSequence             = 0x00380014, // SQ M1    0
RouteOfAdmissions                       = 0x00380016, // LO M1    0
ScheduledAdmissionDate                  = 0x0038001A, // DA M1    1
ScheduledAdmissionTime                  = 0x0038001B, // TM M1    1
ScheduledDischargeDate                  = 0x0038001C, // DA M1    1
ScheduledDischargeTime                  = 0x0038001D, // TM M1    1
ScheduledPatientInstitutionResidence    = 0x0038001E, // LO M1    1
AdmittingDate                           = 0x00380020, // DA M1    0
AdmittingTime                           = 0x00380021, // TM M1    0
DischargeDate                           = 0x00380030, // DA M1    1
DischargeTime                           = 0x00380032, // TM M1    1
DischargeDiagnosisDescription           = 0x00380040, // LO M1    1
DischargeDiagnosisCodeSequence          = 0x00380044, // SQ M1    1
SpecialNeeds                            = 0x00380050, // LO M1    0
ServiceEpisodeID                        = 0x00380060, // LO M1    0
IssuerOfServiceEpisodeID                = 0x00380061, // LO M1    1
ServiceEpisodeDescription               = 0x00380062, // LO M1    0
IssuerOfServiceEpisodeIDSequence        = 0x00380064, // SQ M1    0
PertinentDocumentsSequence              = 0x00380100, // SQ M1    0
PertinentResourcesSequence              = 0x00380101, // SQ M1    0
ResourceDescription                     = 0x00380102, // LO M1    0
CurrentPatientLocation                  = 0x00380300, // LO M1    0
PatientInstitutionResidence             = 0x00380400, // LO M1    0
PatientState                            = 0x00380500, // LO M1    0
PatientClinicalTrialParticipationSequence = 0x00380502, // SQ M1    0
VisitComments                           = 0x00384000, // LT M1    0
WaveformOriginality                     = 0x003A0004, // CS M1    0
NumberOfWaveformChannels                = 0x003A0005, // US M1    0
NumberOfWaveformSamples                 = 0x003A0010, // UL M1    0
SamplingFrequency                       = 0x003A001A, // DS M1    0
MultiplexGroupLabel                     = 0x003A0020, // SH M1    0
ChannelDefinitionSequence               = 0x003A0200, // SQ M1    0
WaveformChannelNumber                   = 0x003A0202, // IS M1    0
ChannelLabel                            = 0x003A0203, // SH M1    0
ChannelStatus                           = 0x003A0205, // CS M1TN  0
ChannelSourceSequence                   = 0x003A0208, // SQ M1    0
ChannelSourceModifiersSequence          = 0x003A0209, // SQ M1    0
SourceWaveformSequence                  = 0x003A020A, // SQ M1    0
ChannelDerivationDescription            = 0x003A020C, // LO M1    0
ChannelSensitivity                      = 0x003A0210, // DS M1    0
ChannelSensitivityUnitsSequence         = 0x003A0211, // SQ M1    0
ChannelSensitivityCorrectionFactor      = 0x003A0212, // DS M1    0
ChannelBaseline                         = 0x003A0213, // DS M1    0
ChannelTimeSkew                         = 0x003A0214, // DS M1    0
ChannelSampleSkew                       = 0x003A0215, // DS M1    0
ChannelOffset                           = 0x003A0218, // DS M1    0
WaveformBitsStored                      = 0x003A021A, // US M1    0
FilterLowFrequency                      = 0x003A0220, // DS M1    0
FilterHighFrequency                     = 0x003A0221, // DS M1    0
NotchFilterFrequency                    = 0x003A0222, // DS M1    0
NotchFilterBandwidth                    = 0x003A0223, // DS M1    0
WaveformDataDisplayScale                = 0x003A0230, // FL M1    0
WaveformDisplayBackgroundCIELabValue    = 0x003A0231, // US M3    0
WaveformPresentationGroupSequence       = 0x003A0240, // SQ M1    0
PresentationGroupNumber                 = 0x003A0241, // US M1    0
ChannelDisplaySequence                  = 0x003A0242, // SQ M1    0
ChannelRecommendedDisplayCIELabValue    = 0x003A0244, // US M3    0
ChannelPosition                         = 0x003A0245, // FL M1    0
DisplayShadingFlag                      = 0x003A0246, // CS M1    0
FractionalChannelDisplayScale           = 0x003A0247, // FL M1    0
AbsoluteChannelDisplayScale             = 0x003A0248, // FL M1    0
MultiplexedAudioChannelsDescriptionCodeSequence = 0x003A0300, // SQ M1    0
ChannelIdentificationCode               = 0x003A0301, // IS M1    0
ChannelMode                             = 0x003A0302, // CS M1    0
ScheduledStationAETitle                 = 0x00400001, // AE M1TN  0
ScheduledProcedureStepStartDate         = 0x00400002, // DA M1    0
ScheduledProcedureStepStartTime         = 0x00400003, // TM M1    0
ScheduledProcedureStepEndDate           = 0x00400004, // DA M1    0
ScheduledProcedureStepEndTime           = 0x00400005, // TM M1    0
ScheduledPerformingPhysicianName        = 0x00400006, // PN M1    0
ScheduledProcedureStepDescription       = 0x00400007, // LO M1    0
ScheduledProtocolCodeSequence           = 0x00400008, // SQ M1    0
ScheduledProcedureStepID                = 0x00400009, // SH M1    0
StageCodeSequence                       = 0x0040000A, // SQ M1    0
ScheduledPerformingPhysicianIdentificationSequence = 0x0040000B, // SQ M1    0
ScheduledStationName                    = 0x00400010, // SH M1TN  0
ScheduledProcedureStepLocation          = 0x00400011, // SH M1    0
PreMedication                           = 0x00400012, // LO M1    0
ScheduledProcedureStepStatus            = 0x00400020, // CS M1    0
OrderPlacerIdentifierSequence           = 0x00400026, // SQ M1    0
OrderFillerIdentifierSequence           = 0x00400027, // SQ M1    0
LocalNamespaceEntityID                  = 0x00400031, // UT M1    0
UniversalEntityID                       = 0x00400032, // UT M1    0
UniversalEntityIDType                   = 0x00400033, // CS M1    0
IdentifierTypeCode                      = 0x00400035, // CS M1    0
AssigningFacilitySequence               = 0x00400036, // SQ M1    0
AssigningJurisdictionCodeSequence       = 0x00400039, // SQ M1    0
AssigningAgencyOrDepartmentCodeSequence = 0x0040003A, // SQ M1    0
ScheduledProcedureStepSequence          = 0x00400100, // SQ M1    0
ReferencedNonImageCompositeSOPInstanceSequence = 0x00400220, // SQ M1    0
PerformedStationAETitle                 = 0x00400241, // AE M1    0
PerformedStationName                    = 0x00400242, // SH M1    0
PerformedLocation                       = 0x00400243, // SH M1    0
PerformedProcedureStepStartDate         = 0x00400244, // DA M1    0
PerformedProcedureStepStartTime         = 0x00400245, // TM M1    0
PerformedProcedureStepEndDate           = 0x00400250, // DA M1    0
PerformedProcedureStepEndTime           = 0x00400251, // TM M1    0
PerformedProcedureStepStatus            = 0x00400252, // CS M1    0
PerformedProcedureStepID                = 0x00400253, // SH M1    0
PerformedProcedureStepDescription       = 0x00400254, // LO M1    0
PerformedProcedureTypeDescription       = 0x00400255, // LO M1    0
PerformedProtocolCodeSequence           = 0x00400260, // SQ M1    0
PerformedProtocolType                   = 0x00400261, // CS M1    0
ScheduledStepAttributesSequence         = 0x00400270, // SQ M1    0
RequestAttributesSequence               = 0x00400275, // SQ M1    0
CommentsOnThePerformedProcedureStep     = 0x00400280, // ST M1    0
PerformedProcedureStepDiscontinuationReasonCodeSequence = 0x00400281, // SQ M1    0
QuantitySequence                        = 0x00400293, // SQ M1    0
Quantity                                = 0x00400294, // DS M1    0
MeasuringUnitsSequence                  = 0x00400295, // SQ M1    0
BillingItemSequence                     = 0x00400296, // SQ M1    0
TotalTimeOfFluoroscopy                  = 0x00400300, // US M1    0
TotalNumberOfExposures                  = 0x00400301, // US M1    0
EntranceDose                            = 0x00400302, // US M1    0
ExposedArea                             = 0x00400303, // US M1T2  0
DistanceSourceToEntrance                = 0x00400306, // DS M1    0
DistanceSourceToSupport                 = 0x00400307, // DS M1    1
ExposureDoseSequence                    = 0x0040030E, // SQ M1    0
CommentsOnRadiationDose                 = 0x00400310, // ST M1    0
XRayOutput                              = 0x00400312, // DS M1    0
HalfValueLayer                          = 0x00400314, // DS M1    0
OrganDose                               = 0x00400316, // DS M1    0
OrganExposed                            = 0x00400318, // CS M1    0
BillingProcedureStepSequence            = 0x00400320, // SQ M1    0
FilmConsumptionSequence                 = 0x00400321, // SQ M1    0
BillingSuppliesAndDevicesSequence       = 0x00400324, // SQ M1    0
ReferencedProcedureStepSequence         = 0x00400330, // SQ M1    1
PerformedSeriesSequence                 = 0x00400340, // SQ M1    0
CommentsOnTheScheduledProcedureStep     = 0x00400400, // LT M1    0
ProtocolContextSequence                 = 0x00400440, // SQ M1    0
ContentItemModifierSequence             = 0x00400441, // SQ M1    0
ScheduledSpecimenSequence               = 0x00400500, // SQ M1    0
SpecimenAccessionNumber                 = 0x0040050A, // LO M1    1
ContainerIdentifier                     = 0x00400512, // LO M1    0
IssuerOfTheContainerIdentifierSequence  = 0x00400513, // SQ M1    0
AlternateContainerIdentifierSequence    = 0x00400515, // SQ M1    0
ContainerTypeCodeSequence               = 0x00400518, // SQ M1    0
ContainerDescription                    = 0x0040051A, // LO M1    0
ContainerComponentSequence              = 0x00400520, // SQ M1    0
SpecimenSequence                        = 0x00400550, // SQ M1    1
SpecimenIdentifier                      = 0x00400551, // LO M1    0
SpecimenDescriptionSequenceTrial        = 0x00400552, // SQ M1    1
SpecimenDescriptionTrial                = 0x00400553, // ST M1    1
SpecimenUID                             = 0x00400554, // UI M1    0
AcquisitionContextSequence              = 0x00400555, // SQ M1    0
AcquisitionContextDescription           = 0x00400556, // ST M1    0
SpecimenTypeCodeSequence                = 0x0040059A, // SQ M1    0
SpecimenDescriptionSequence             = 0x00400560, // SQ M1    0
IssuerOfTheSpecimenIdentifierSequence   = 0x00400562, // SQ M1    0
SpecimenShortDescription                = 0x00400600, // LO M1    0
SpecimenDetailedDescription             = 0x00400602, // UT M1    0
SpecimenPreparationSequence             = 0x00400610, // SQ M1    0
SpecimenPreparationStepContentItemSequence = 0x00400612, // SQ M1    0
SpecimenLocalizationContentItemSequence = 0x00400620, // SQ M1    0
SlideIdentifier                         = 0x004006FA, // LO M1    1
ImageCenterPointCoordinatesSequence     = 0x0040071A, // SQ M1    0
XOffsetInSlideCoordinateSystem          = 0x0040072A, // DS M1    0
YOffsetInSlideCoordinateSystem          = 0x0040073A, // DS M1    0
ZOffsetInSlideCoordinateSystem          = 0x0040074A, // DS M1    0
PixelSpacingSequence                    = 0x004008D8, // SQ M1    1
CoordinateSystemAxisCodeSequence        = 0x004008DA, // SQ M1    1
MeasurementUnitsCodeSequence            = 0x004008EA, // SQ M1    0
VitalStainCodeSequenceTrial             = 0x004009F8, // SQ M1    1
RequestedProcedureID                    = 0x00401001, // SH M1    0
ReasonForTheRequestedProcedure          = 0x00401002, // LO M1    0
RequestedProcedurePriority              = 0x00401003, // SH M1    0
PatientTransportArrangements            = 0x00401004, // LO M1    0
RequestedProcedureLocation              = 0x00401005, // LO M1    0
PlacerOrderNumberProcedure              = 0x00401006, // SH M1    1
FillerOrderNumberProcedure              = 0x00401007, // SH M1    1
ConfidentialityCode                     = 0x00401008, // LO M1    0
ReportingPriority                       = 0x00401009, // SH M1    0
ReasonForRequestedProcedureCodeSequence = 0x0040100A, // SQ M1    0
NamesOfIntendedRecipientsOfResults      = 0x00401010, // PN M1TN  0
IntendedRecipientsOfResultsIdentificationSequence = 0x00401011, // SQ M1    0
ReasonForPerformedProcedureCodeSequence = 0x00401012, // SQ M1    0
RequestedProcedureDescriptionTrial      = 0x00401060, // LO M1    1
PersonIdentificationCodeSequence        = 0x00401101, // SQ M1    0
PersonAddress                           = 0x00401102, // ST M1    0
PersonTelephoneNumbers                  = 0x00401103, // LO M1TN  0
PersonTelecomInformation                = 0x00401104, // LT M1    0
RequestedProcedureComments              = 0x00401400, // LT M1    0
ReasonForTheImagingServiceRequest       = 0x00402001, // LO M1    1
IssueDateOfImagingServiceRequest        = 0x00402004, // DA M1    0
IssueTimeOfImagingServiceRequest        = 0x00402005, // TM M1    0
PlacerOrderNumberImagingServiceRequestRetired = 0x00402006, // SH M1    1
FillerOrderNumberImagingServiceRequestRetired = 0x00402007, // SH M1    1
OrderEnteredBy                          = 0x00402008, // PN M1    0
OrderEntererLocation                    = 0x00402009, // SH M1    0
OrderCallbackPhoneNumber                = 0x00402010, // SH M1    0
OrderCallbackTelecomInformation         = 0x00402011, // LT M1    0
PlacerOrderNumberImagingServiceRequest  = 0x00402016, // LO M1    0
FillerOrderNumberImagingServiceRequest  = 0x00402017, // LO M1    0
ImagingServiceRequestComments           = 0x00402400, // LT M1    0
ConfidentialityConstraintOnPatientDataDescription = 0x00403001, // LO M1    0
GeneralPurposeScheduledProcedureStepStatus = 0x00404001, // CS M1    1
GeneralPurposePerformedProcedureStepStatus = 0x00404002, // CS M1    1
GeneralPurposeScheduledProcedureStepPriority = 0x00404003, // CS M1    1
ScheduledProcessingApplicationsCodeSequence = 0x00404004, // SQ M1    1
ScheduledProcedureStepStartDateTime     = 0x00404005, // DT M1    0
MultipleCopiesFlag                      = 0x00404006, // CS M1    1
PerformedProcessingApplicationsCodeSequence = 0x00404007, // SQ M1    0
HumanPerformerCodeSequence              = 0x00404009, // SQ M1    0
ScheduledProcedureStepModificationDateTime = 0x00404010, // DT M1    0
ExpectedCompletionDateTime              = 0x00404011, // DT M1    0
ResultingGeneralPurposePerformedProcedureStepsSequence = 0x00404015, // SQ M1    1
ReferencedGeneralPurposeScheduledProcedureStepSequence = 0x00404016, // SQ M1    1
ScheduledWorkitemCodeSequence           = 0x00404018, // SQ M1    0
PerformedWorkitemCodeSequence           = 0x00404019, // SQ M1    0
InputAvailabilityFlag                   = 0x00404020, // CS M1    0
InputInformationSequence                = 0x00404021, // SQ M1    0
RelevantInformationSequence             = 0x00404022, // SQ M1    1
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID = 0x00404023, // UI M1    1
ScheduledStationNameCodeSequence        = 0x00404025, // SQ M1    0
ScheduledStationClassCodeSequence       = 0x00404026, // SQ M1    0
ScheduledStationGeographicLocationCodeSequence = 0x00404027, // SQ M1    0
PerformedStationNameCodeSequence        = 0x00404028, // SQ M1    0
PerformedStationClassCodeSequence       = 0x00404029, // SQ M1    0
PerformedStationGeographicLocationCodeSequence = 0x00404030, // SQ M1    0
RequestedSubsequentWorkitemCodeSequence = 0x00404031, // SQ M1    1
NonDICOMOutputCodeSequence              = 0x00404032, // SQ M1    1
OutputInformationSequence               = 0x00404033, // SQ M1    0
ScheduledHumanPerformersSequence        = 0x00404034, // SQ M1    0
ActualHumanPerformersSequence           = 0x00404035, // SQ M1    0
HumanPerformerOrganization              = 0x00404036, // LO M1    0
HumanPerformerName                      = 0x00404037, // PN M1    0
RawDataHandling                         = 0x00404040, // CS M1    0
InputReadinessState                     = 0x00404041, // CS M1    0
PerformedProcedureStepStartDateTime     = 0x00404050, // DT M1    0
PerformedProcedureStepEndDateTime       = 0x00404051, // DT M1    0
ProcedureStepCancellationDateTime       = 0x00404052, // DT M1    0
EntranceDoseInmGy                       = 0x00408302, // DS M1    0
ParametricMapFrameTypeSequence          = 0x00409092, // SQ M1    0
ReferencedImageRealWorldValueMappingSequence = 0x00409094, // SQ M1    0
RealWorldValueMappingSequence           = 0x00409096, // SQ M1    0
PixelValueMappingCodeSequence           = 0x00409098, // SQ M1    0
LUTLabel                                = 0x00409210, // SH M1    0
RealWorldValueLastValueMapped           = 0x00409211, // XS M1    0
RealWorldValueLUTData                   = 0x00409212, // FD M1TN  0
RealWorldValueFirstValueMapped          = 0x00409216, // XS M1    0
QuantityDefinitionSequence              = 0x00409220, // SQ M1    0
RealWorldValueIntercept                 = 0x00409224, // FD M1    0
RealWorldValueSlope                     = 0x00409225, // FD M1    0
FindingsFlagTrial                       = 0x0040A007, // CS M1    1
RelationshipType                        = 0x0040A010, // CS M1    0
FindingsSequenceTrial                   = 0x0040A020, // SQ M1    1
FindingsGroupUIDTrial                   = 0x0040A021, // UI M1    1
ReferencedFindingsGroupUIDTrial         = 0x0040A022, // UI M1    1
FindingsGroupRecordingDateTrial         = 0x0040A023, // DA M1    1
FindingsGroupRecordingTimeTrial         = 0x0040A024, // TM M1    1
FindingsSourceCategoryCodeSequenceTrial = 0x0040A026, // SQ M1    1
VerifyingOrganization                   = 0x0040A027, // LO M1    0
DocumentingOrganizationIdentifierCodeSequenceTrial = 0x0040A028, // SQ M1    1
VerificationDateTime                    = 0x0040A030, // DT M1    0
ObservationDateTime                     = 0x0040A032, // DT M1    0
ValueType                               = 0x0040A040, // CS M1    0
ConceptNameCodeSequence                 = 0x0040A043, // SQ M1    0
MeasurementPrecisionDescriptionTrial    = 0x0040A047, // LO M1    1
ContinuityOfContent                     = 0x0040A050, // CS M1    0
UrgencyOrPriorityAlertsTrial            = 0x0040A057, // CS M1TN  1
SequencingIndicatorTrial                = 0x0040A060, // LO M1    1
DocumentIdentifierCodeSequenceTrial     = 0x0040A066, // SQ M1    1
DocumentAuthorTrial                     = 0x0040A067, // PN M1    1
DocumentAuthorIdentifierCodeSequenceTrial = 0x0040A068, // SQ M1    1
IdentifierCodeSequenceTrial             = 0x0040A070, // SQ M1    1
VerifyingObserverSequence               = 0x0040A073, // SQ M1    0
ObjectBinaryIdentifierTrial             = 0x0040A074, // OB M1    1
VerifyingObserverName                   = 0x0040A075, // PN M1    0
DocumentingObserverIdentifierCodeSequenceTrial = 0x0040A076, // SQ M1    1
AuthorObserverSequence                  = 0x0040A078, // SQ M1    0
ParticipantSequence                     = 0x0040A07A, // SQ M1    0
CustodialOrganizationSequence           = 0x0040A07C, // SQ M1    0
ParticipationType                       = 0x0040A080, // CS M1    0
ParticipationDateTime                   = 0x0040A082, // DT M1    0
ObserverType                            = 0x0040A084, // CS M1    0
ProcedureIdentifierCodeSequenceTrial    = 0x0040A085, // SQ M1    1
VerifyingObserverIdentificationCodeSequence = 0x0040A088, // SQ M1    0
ObjectDirectoryBinaryIdentifierTrial    = 0x0040A089, // OB M1    1
EquivalentCDADocumentSequence           = 0x0040A090, // SQ M1    1
ReferencedWaveformChannels              = 0x0040A0B0, // US M2T2N 0
DateOfDocumentOrVerbalTransactionTrial  = 0x0040A110, // DA M1    1
TimeOfDocumentCreationOrVerbalTransactionTrial = 0x0040A112, // TM M1    1
DateTime                                = 0x0040A120, // DT M1    0
Date                                    = 0x0040A121, // DA M1    0
Time                                    = 0x0040A122, // TM M1    0
PersonName                              = 0x0040A123, // PN M1    0
UID                                     = 0x0040A124, // UI M1    0
ReportStatusIDTrial                     = 0x0040A125, // CS M2    1
TemporalRangeType                       = 0x0040A130, // CS M1    0
ReferencedSamplePositions               = 0x0040A132, // UL M1TN  0
ReferencedFrameNumbers                  = 0x0040A136, // US M1TN  0
ReferencedTimeOffsets                   = 0x0040A138, // DS M1TN  0
ReferencedDateTime                      = 0x0040A13A, // DT M1TN  0
TextValue                               = 0x0040A160, // UT M1    0
FloatingPointValue                      = 0x0040A161, // FD M1TN  0
RationalNumeratorValue                  = 0x0040A162, // SL M1TN  0
RationalDenominatorValue                = 0x0040A163, // UL M1TN  0
ObservationCategoryCodeSequenceTrial    = 0x0040A167, // SQ M1    1
ConceptCodeSequence                     = 0x0040A168, // SQ M1    0
BibliographicCitationTrial              = 0x0040A16A, // ST M1    1
PurposeOfReferenceCodeSequence          = 0x0040A170, // SQ M1    0
ObservationUID                          = 0x0040A171, // UI M1    0
ReferencedObservationUIDTrial           = 0x0040A172, // UI M1    1
ReferencedObservationClassTrial         = 0x0040A173, // CS M1    1
ReferencedObjectObservationClassTrial   = 0x0040A174, // CS M1    1
AnnotationGroupNumber                   = 0x0040A180, // US M1    0
ObservationDateTrial                    = 0x0040A192, // DA M1    1
ObservationTimeTrial                    = 0x0040A193, // TM M1    1
MeasurementAutomationTrial              = 0x0040A194, // CS M1    1
ModifierCodeSequence                    = 0x0040A195, // SQ M1    0
IdentificationDescriptionTrial          = 0x0040A224, // ST M1    1
CoordinatesSetGeometricTypeTrial        = 0x0040A290, // CS M1    1
AlgorithmCodeSequenceTrial              = 0x0040A296, // SQ M1    1
AlgorithmDescriptionTrial               = 0x0040A297, // ST M1    1
PixelCoordinatesSetTrial                = 0x0040A29A, // SL M2T2N 1
MeasuredValueSequence                   = 0x0040A300, // SQ M1    0
NumericValueQualifierCodeSequence       = 0x0040A301, // SQ M1    0
CurrentObserverTrial                    = 0x0040A307, // PN M1    1
NumericValue                            = 0x0040A30A, // DS M1TN  0
ReferencedAccessionSequenceTrial        = 0x0040A313, // SQ M1    1
ReportStatusCommentTrial                = 0x0040A33A, // ST M1    1
ProcedureContextSequenceTrial           = 0x0040A340, // SQ M1    1
VerbalSourceTrial                       = 0x0040A352, // PN M1    1
AddressTrial                            = 0x0040A353, // ST M1    1
TelephoneNumberTrial                    = 0x0040A354, // LO M1    1
VerbalSourceIdentifierCodeSequenceTrial = 0x0040A358, // SQ M1    1
PredecessorDocumentsSequence            = 0x0040A360, // SQ M1    0
ReferencedRequestSequence               = 0x0040A370, // SQ M1    0
PerformedProcedureCodeSequence          = 0x0040A372, // SQ M1    0
CurrentRequestedProcedureEvidenceSequence = 0x0040A375, // SQ M1    0
ReportDetailSequenceTrial               = 0x0040A380, // SQ M1    1
PertinentOtherEvidenceSequence          = 0x0040A385, // SQ M1    0
HL7StructuredDocumentReferenceSequence  = 0x0040A390, // SQ M1    0
ObservationSubjectUIDTrial              = 0x0040A402, // UI M1    1
ObservationSubjectClassTrial            = 0x0040A403, // CS M1    1
ObservationSubjectTypeCodeSequenceTrial = 0x0040A404, // SQ M1    1
CompletionFlag                          = 0x0040A491, // CS M1    0
CompletionFlagDescription               = 0x0040A492, // LO M1    0
VerificationFlag                        = 0x0040A493, // CS M1    0
ArchiveRequested                        = 0x0040A494, // CS M1    0
PreliminaryFlag                         = 0x0040A496, // CS M1    0
ContentTemplateSequence                 = 0x0040A504, // SQ M1    0
IdenticalDocumentsSequence              = 0x0040A525, // SQ M1    0
ObservationSubjectContextFlagTrial      = 0x0040A600, // CS M1    1
ObserverContextFlagTrial                = 0x0040A601, // CS M1    1
ProcedureContextFlagTrial               = 0x0040A603, // CS M1    1
ContentSequence                         = 0x0040A730, // SQ M1    0
RelationshipSequenceTrial               = 0x0040A731, // SQ M1    1
RelationshipTypeCodeSequenceTrial       = 0x0040A732, // SQ M1    1
LanguageCodeSequenceTrial               = 0x0040A744, // SQ M1    1
UniformResourceLocatorTrial             = 0x0040A992, // ST M1    1
WaveformAnnotationSequence              = 0x0040B020, // SQ M1    0
TemplateIdentifier                      = 0x0040DB00, // CS M1    0
TemplateVersion                         = 0x0040DB06, // DT M1    1
TemplateLocalVersion                    = 0x0040DB07, // DT M1    1
TemplateExtensionFlag                   = 0x0040DB0B, // CS M1    1
TemplateExtensionOrganizationUID        = 0x0040DB0C, // UI M1    1
TemplateExtensionCreatorUID             = 0x0040DB0D, // UI M1    1
ReferencedContentItemIdentifier         = 0x0040DB73, // UL M1TN  0
HL7InstanceIdentifier                   = 0x0040E001, // ST M1    0
HL7DocumentEffectiveTime                = 0x0040E004, // DT M1    0
HL7DocumentTypeCodeSequence             = 0x0040E006, // SQ M1    0
DocumentClassCodeSequence               = 0x0040E008, // SQ M1    0
RetrieveURI                             = 0x0040E010, // UR M1    0
RetrieveLocationUID                     = 0x0040E011, // UI M1    0
TypeOfInstances                         = 0x0040E020, // CS M1    0
DICOMRetrievalSequence                  = 0x0040E021, // SQ M1    0
DICOMMediaRetrievalSequence             = 0x0040E022, // SQ M1    0
WADORetrievalSequence                   = 0x0040E023, // SQ M1    0
XDSRetrievalSequence                    = 0x0040E024, // SQ M1    0
WADORSRetrievalSequence                 = 0x0040E025, // SQ M1    0
RepositoryUniqueID                      = 0x0040E030, // UI M1    0
HomeCommunityID                         = 0x0040E031, // UI M1    0
DocumentTitle                           = 0x00420010, // ST M1    0
EncapsulatedDocument                    = 0x00420011, // OB M1    0
MIMETypeOfEncapsulatedDocument          = 0x00420012, // LO M1    0
SourceInstanceSequence                  = 0x00420013, // SQ M1    0
ListOfMIMETypes                         = 0x00420014, // LO M1TN  0
ProductPackageIdentifier                = 0x00440001, // ST M1    0
SubstanceAdministrationApproval         = 0x00440002, // CS M1    0
ApprovalStatusFurtherDescription        = 0x00440003, // LT M1    0
ApprovalStatusDateTime                  = 0x00440004, // DT M1    0
ProductTypeCodeSequence                 = 0x00440007, // SQ M1    0
ProductName                             = 0x00440008, // LO M1TN  0
ProductDescription                      = 0x00440009, // LT M1    0
ProductLotIdentifier                    = 0x0044000A, // LO M1    0
ProductExpirationDateTime               = 0x0044000B, // DT M1    0
SubstanceAdministrationDateTime         = 0x00440010, // DT M1    0
SubstanceAdministrationNotes            = 0x00440011, // LO M1    0
SubstanceAdministrationDeviceID         = 0x00440012, // LO M1    0
ProductParameterSequence                = 0x00440013, // SQ M1    0
SubstanceAdministrationParameterSequence = 0x00440019, // SQ M1    0
LensDescription                         = 0x00460012, // LO M1    0
RightLensSequence                       = 0x00460014, // SQ M1    0
LeftLensSequence                        = 0x00460015, // SQ M1    0
UnspecifiedLateralityLensSequence       = 0x00460016, // SQ M1    0
CylinderSequence                        = 0x00460018, // SQ M1    0
PrismSequence                           = 0x00460028, // SQ M1    0
HorizontalPrismPower                    = 0x00460030, // FD M1    0
HorizontalPrismBase                     = 0x00460032, // CS M1    0
VerticalPrismPower                      = 0x00460034, // FD M1    0
VerticalPrismBase                       = 0x00460036, // CS M1    0
LensSegmentType                         = 0x00460038, // CS M1    0
OpticalTransmittance                    = 0x00460040, // FD M1    0
ChannelWidth                            = 0x00460042, // FD M1    0
PupilSize                               = 0x00460044, // FD M1    0
CornealSize                             = 0x00460046, // FD M1    0
AutorefractionRightEyeSequence          = 0x00460050, // SQ M1    0
AutorefractionLeftEyeSequence           = 0x00460052, // SQ M1    0
DistancePupillaryDistance               = 0x00460060, // FD M1    0
NearPupillaryDistance                   = 0x00460062, // FD M1    0
IntermediatePupillaryDistance           = 0x00460063, // FD M1    0
OtherPupillaryDistance                  = 0x00460064, // FD M1    0
KeratometryRightEyeSequence             = 0x00460070, // SQ M1    0
KeratometryLeftEyeSequence              = 0x00460071, // SQ M1    0
SteepKeratometricAxisSequence           = 0x00460074, // SQ M1    0
RadiusOfCurvature                       = 0x00460075, // FD M1    0
KeratometricPower                       = 0x00460076, // FD M1    0
KeratometricAxis                        = 0x00460077, // FD M1    0
FlatKeratometricAxisSequence            = 0x00460080, // SQ M1    0
BackgroundColor                         = 0x00460092, // CS M1    0
Optotype                                = 0x00460094, // CS M1    0
OptotypePresentation                    = 0x00460095, // CS M1    0
SubjectiveRefractionRightEyeSequence    = 0x00460097, // SQ M1    0
SubjectiveRefractionLeftEyeSequence     = 0x00460098, // SQ M1    0
AddNearSequence                         = 0x00460100, // SQ M1    0
AddIntermediateSequence                 = 0x00460101, // SQ M1    0
AddOtherSequence                        = 0x00460102, // SQ M1    0
AddPower                                = 0x00460104, // FD M1    0
ViewingDistance                         = 0x00460106, // FD M1    0
VisualAcuityTypeCodeSequence            = 0x00460121, // SQ M1    0
VisualAcuityRightEyeSequence            = 0x00460122, // SQ M1    0
VisualAcuityLeftEyeSequence             = 0x00460123, // SQ M1    0
VisualAcuityBothEyesOpenSequence        = 0x00460124, // SQ M1    0
ViewingDistanceType                     = 0x00460125, // CS M1    0
VisualAcuityModifiers                   = 0x00460135, // SS M2    0
DecimalVisualAcuity                     = 0x00460137, // FD M1    0
OptotypeDetailedDefinition              = 0x00460139, // LO M1    0
ReferencedRefractiveMeasurementsSequence = 0x00460145, // SQ M1    0
SpherePower                             = 0x00460146, // FD M1    0
CylinderPower                           = 0x00460147, // FD M1    0
CornealTopographySurface                = 0x00460201, // CS M1    0
CornealVertexLocation                   = 0x00460202, // FL M2    0
PupilCentroidXCoordinate                = 0x00460203, // FL M1    0
PupilCentroidYCoordinate                = 0x00460204, // FL M1    0
EquivalentPupilRadius                   = 0x00460205, // FL M1    0
CornealTopographyMapTypeCodeSequence    = 0x00460207, // SQ M1    0
VerticesOfTheOutlineOfPupil             = 0x00460208, // IS M2T2N 0
CornealTopographyMappingNormalsSequence = 0x00460210, // SQ M1    0
MaximumCornealCurvatureSequence         = 0x00460211, // SQ M1    0
MaximumCornealCurvature                 = 0x00460212, // FL M1    0
MaximumCornealCurvatureLocation         = 0x00460213, // FL M2    0
MinimumKeratometricSequence             = 0x00460215, // SQ M1    0
SimulatedKeratometricCylinderSequence   = 0x00460218, // SQ M1    0
AverageCornealPower                     = 0x00460220, // FL M1    0
CornealISValue                          = 0x00460224, // FL M1    0
AnalyzedArea                            = 0x00460227, // FL M1    0
SurfaceRegularityIndex                  = 0x00460230, // FL M1    0
SurfaceAsymmetryIndex                   = 0x00460232, // FL M1    0
CornealEccentricityIndex                = 0x00460234, // FL M1    0
KeratoconusPredictionIndex              = 0x00460236, // FL M1    0
DecimalPotentialVisualAcuity            = 0x00460238, // FL M1    0
CornealTopographyMapQualityEvaluation   = 0x00460242, // CS M1    0
SourceImageCornealProcessedDataSequence = 0x00460244, // SQ M1    0
CornealPointLocation                    = 0x00460247, // FL M3    0
CornealPointEstimated                   = 0x00460248, // CS M1    0
AxialPower                              = 0x00460249, // FL M1    0
TangentialPower                         = 0x00460250, // FL M1    0
RefractivePower                         = 0x00460251, // FL M1    0
RelativeElevation                       = 0x00460252, // FL M1    0
CornealWavefront                        = 0x00460253, // FL M1    0
ImagedVolumeWidth                       = 0x00480001, // FL M1    0
ImagedVolumeHeight                      = 0x00480002, // FL M1    0
ImagedVolumeDepth                       = 0x00480003, // FL M1    0
TotalPixelMatrixColumns                 = 0x00480006, // UL M1    0
TotalPixelMatrixRows                    = 0x00480007, // UL M1    0
TotalPixelMatrixOriginSequence          = 0x00480008, // SQ M1    0
SpecimenLabelInImage                    = 0x00480010, // CS M1    0
FocusMethod                             = 0x00480011, // CS M1    0
ExtendedDepthOfField                    = 0x00480012, // CS M1    0
NumberOfFocalPlanes                     = 0x00480013, // US M1    0
DistanceBetweenFocalPlanes              = 0x00480014, // FL M1    0
RecommendedAbsentPixelCIELabValue       = 0x00480015, // US M3    0
IlluminatorTypeCodeSequence             = 0x00480100, // SQ M1    0
ImageOrientationSlide                   = 0x00480102, // DS M6    0
OpticalPathSequence                     = 0x00480105, // SQ M1    0
OpticalPathIdentifier                   = 0x00480106, // SH M1    0
OpticalPathDescription                  = 0x00480107, // ST M1    0
IlluminationColorCodeSequence           = 0x00480108, // SQ M1    0
SpecimenReferenceSequence               = 0x00480110, // SQ M1    0
CondenserLensPower                      = 0x00480111, // DS M1    0
ObjectiveLensPower                      = 0x00480112, // DS M1    0
ObjectiveLensNumericalAperture          = 0x00480113, // DS M1    0
PaletteColorLookupTableSequence         = 0x00480120, // SQ M1    0
ReferencedImageNavigationSequence       = 0x00480200, // SQ M1    0
TopLeftHandCornerOfLocalizerArea        = 0x00480201, // US M2    0
BottomRightHandCornerOfLocalizerArea    = 0x00480202, // US M2    0
OpticalPathIdentificationSequence       = 0x00480207, // SQ M1    0
PlanePositionSlideSequence              = 0x0048021A, // SQ M1    0
ColumnPositionInTotalImagePixelMatrix   = 0x0048021E, // SL M1    0
RowPositionInTotalImagePixelMatrix      = 0x0048021F, // SL M1    0
PixelOriginInterpretation               = 0x00480301, // CS M1    0
CalibrationImage                        = 0x00500004, // CS M1    0
DeviceSequence                          = 0x00500010, // SQ M1    0
ContainerComponentTypeCodeSequence      = 0x00500012, // SQ M1    0
ContainerComponentThickness             = 0x00500013, // FD M1    0
DeviceLength                            = 0x00500014, // DS M1    0
ContainerComponentWidth                 = 0x00500015, // FD M1    0
DeviceDiameter                          = 0x00500016, // DS M1    0
DeviceDiameterUnits                     = 0x00500017, // CS M1    0
DeviceVolume                            = 0x00500018, // DS M1    0
InterMarkerDistance                     = 0x00500019, // DS M1    0
ContainerComponentMaterial              = 0x0050001A, // CS M1    0
ContainerComponentID                    = 0x0050001B, // LO M1    0
ContainerComponentLength                = 0x0050001C, // FD M1    0
ContainerComponentDiameter              = 0x0050001D, // FD M1    0
ContainerComponentDescription           = 0x0050001E, // LO M1    0
DeviceDescription                       = 0x00500020, // LO M1    0
ContrastBolusIngredientPercentByVolume  = 0x00520001, // FL M1    0
OCTFocalDistance                        = 0x00520002, // FD M1    0
BeamSpotSize                            = 0x00520003, // FD M1    0
EffectiveRefractiveIndex                = 0x00520004, // FD M1    0
OCTAcquisitionDomain                    = 0x00520006, // CS M1    0
OCTOpticalCenterWavelength              = 0x00520007, // FD M1    0
AxialResolution                         = 0x00520008, // FD M1    0
RangingDepth                            = 0x00520009, // FD M1    0
ALineRate                               = 0x00520011, // FD M1    0
ALinesPerFrame                          = 0x00520012, // US M1    0
CatheterRotationalRate                  = 0x00520013, // FD M1    0
ALinePixelSpacing                       = 0x00520014, // FD M1    0
ModeOfPercutaneousAccessSequence        = 0x00520016, // SQ M1    0
IntravascularOCTFrameTypeSequence       = 0x00520025, // SQ M1    0
OCTZOffsetApplied                       = 0x00520026, // CS M1    0
IntravascularFrameContentSequence       = 0x00520027, // SQ M1    0
IntravascularLongitudinalDistance       = 0x00520028, // FD M1    0
IntravascularOCTFrameContentSequence    = 0x00520029, // SQ M1    0
OCTZOffsetCorrection                    = 0x00520030, // SS M1    0
CatheterDirectionOfRotation             = 0x00520031, // CS M1    0
SeamLineLocation                        = 0x00520033, // FD M1    0
FirstALineLocation                      = 0x00520034, // FD M1    0
SeamLineIndex                           = 0x00520036, // US M1    0
NumberOfPaddedALines                    = 0x00520038, // US M1    0
InterpolationType                       = 0x00520039, // CS M1    0
RefractiveIndexApplied                  = 0x0052003A, // CS M1    0
EnergyWindowVector                      = 0x00540010, // US M1TN  0
NumberOfEnergyWindows                   = 0x00540011, // US M1    0
EnergyWindowInformationSequence         = 0x00540012, // SQ M1    0
EnergyWindowRangeSequence               = 0x00540013, // SQ M1    0
EnergyWindowLowerLimit                  = 0x00540014, // DS M1    0
EnergyWindowUpperLimit                  = 0x00540015, // DS M1    0
RadiopharmaceuticalInformationSequence  = 0x00540016, // SQ M1    0
ResidualSyringeCounts                   = 0x00540017, // IS M1    0
EnergyWindowName                        = 0x00540018, // SH M1    0
DetectorVector                          = 0x00540020, // US M1TN  0
NumberOfDetectors                       = 0x00540021, // US M1    0
DetectorInformationSequence             = 0x00540022, // SQ M1    0
PhaseVector                             = 0x00540030, // US M1TN  0
NumberOfPhases                          = 0x00540031, // US M1    0
PhaseInformationSequence                = 0x00540032, // SQ M1    0
NumberOfFramesInPhase                   = 0x00540033, // US M1    0
PhaseDelay                              = 0x00540036, // IS M1    0
PauseBetweenFrames                      = 0x00540038, // IS M1    0
PhaseDescription                        = 0x00540039, // CS M1    0
RotationVector                          = 0x00540050, // US M1TN  0
NumberOfRotations                       = 0x00540051, // US M1    0
RotationInformationSequence             = 0x00540052, // SQ M1    0
NumberOfFramesInRotation                = 0x00540053, // US M1    0
RRIntervalVector                        = 0x00540060, // US M1TN  0
NumberOfRRIntervals                     = 0x00540061, // US M1    0
GatedInformationSequence                = 0x00540062, // SQ M1    0
DataInformationSequence                 = 0x00540063, // SQ M1    0
TimeSlotVector                          = 0x00540070, // US M1TN  0
NumberOfTimeSlots                       = 0x00540071, // US M1    0
TimeSlotInformationSequence             = 0x00540072, // SQ M1    0
TimeSlotTime                            = 0x00540073, // DS M1    0
SliceVector                             = 0x00540080, // US M1TN  0
NumberOfSlices                          = 0x00540081, // US M1    0
AngularViewVector                       = 0x00540090, // US M1TN  0
TimeSliceVector                         = 0x00540100, // US M1TN  0
NumberOfTimeSlices                      = 0x00540101, // US M1    0
StartAngle                              = 0x00540200, // DS M1    0
TypeOfDetectorMotion                    = 0x00540202, // CS M1    0
TriggerVector                           = 0x00540210, // IS M1TN  0
NumberOfTriggersInPhase                 = 0x00540211, // US M1    0
ViewCodeSequence                        = 0x00540220, // SQ M1    0
ViewModifierCodeSequence                = 0x00540222, // SQ M1    0
RadionuclideCodeSequence                = 0x00540300, // SQ M1    0
AdministrationRouteCodeSequence         = 0x00540302, // SQ M1    0
RadiopharmaceuticalCodeSequence         = 0x00540304, // SQ M1    0
CalibrationDataSequence                 = 0x00540306, // SQ M1    0
EnergyWindowNumber                      = 0x00540308, // US M1    0
ImageID                                 = 0x00540400, // SH M1    0
PatientOrientationCodeSequence          = 0x00540410, // SQ M1    0
PatientOrientationModifierCodeSequence  = 0x00540412, // SQ M1    0
PatientGantryRelationshipCodeSequence   = 0x00540414, // SQ M1    0
SliceProgressionDirection               = 0x00540500, // CS M1    0
ScanProgressionDirection                = 0x00540501, // CS M1    0
SeriesType                              = 0x00541000, // CS M2    0
Units                                   = 0x00541001, // CS M1    0
CountsSource                            = 0x00541002, // CS M1    0
ReprojectionMethod                      = 0x00541004, // CS M1    0
SUVType                                 = 0x00541006, // CS M1    0
RandomsCorrectionMethod                 = 0x00541100, // CS M1    0
AttenuationCorrectionMethod             = 0x00541101, // LO M1    0
DecayCorrection                         = 0x00541102, // CS M1    0
ReconstructionMethod                    = 0x00541103, // LO M1    0
DetectorLinesOfResponseUsed             = 0x00541104, // LO M1    0
ScatterCorrectionMethod                 = 0x00541105, // LO M1    0
AxialAcceptance                         = 0x00541200, // DS M1    0
AxialMash                               = 0x00541201, // IS M2    0
TransverseMash                          = 0x00541202, // IS M1    0
DetectorElementSize                     = 0x00541203, // DS M2    0
CoincidenceWindowWidth                  = 0x00541210, // DS M1    0
SecondaryCountsType                     = 0x00541220, // CS M1TN  0
FrameReferenceTime                      = 0x00541300, // DS M1    0
PrimaryPromptsCountsAccumulated         = 0x00541310, // IS M1    0
SecondaryCountsAccumulated              = 0x00541311, // IS M1TN  0
SliceSensitivityFactor                  = 0x00541320, // DS M1    0
DecayFactor                             = 0x00541321, // DS M1    0
DoseCalibrationFactor                   = 0x00541322, // DS M1    0
ScatterFractionFactor                   = 0x00541323, // DS M1    0
DeadTimeFactor                          = 0x00541324, // DS M1    0
ImageIndex                              = 0x00541330, // US M1    0
CountsIncluded                          = 0x00541400, // CS M1TN  1
DeadTimeCorrectionFlag                  = 0x00541401, // CS M1    1
HistogramSequence                       = 0x00603000, // SQ M1    0
HistogramNumberOfBins                   = 0x00603002, // US M1    0
HistogramFirstBinValue                  = 0x00603004, // XS M1    0
HistogramLastBinValue                   = 0x00603006, // XS M1    0
HistogramBinWidth                       = 0x00603008, // US M1    0
HistogramExplanation                    = 0x00603010, // LO M1    0
HistogramData                           = 0x00603020, // UL M1TN  0
SegmentationType                        = 0x00620001, // CS M1    0
SegmentSequence                         = 0x00620002, // SQ M1    0
SegmentedPropertyCategoryCodeSequence   = 0x00620003, // SQ M1    0
SegmentNumber                           = 0x00620004, // US M1    0
SegmentLabel                            = 0x00620005, // LO M1    0
SegmentDescription                      = 0x00620006, // ST M1    0
SegmentAlgorithmType                    = 0x00620008, // CS M1    0
SegmentAlgorithmName                    = 0x00620009, // LO M1    0
SegmentIdentificationSequence           = 0x0062000A, // SQ M1    0
ReferencedSegmentNumber                 = 0x0062000B, // US M1TN  0
RecommendedDisplayGrayscaleValue        = 0x0062000C, // US M1    0
RecommendedDisplayCIELabValue           = 0x0062000D, // US M3    0
MaximumFractionalValue                  = 0x0062000E, // US M1    0
SegmentedPropertyTypeCodeSequence       = 0x0062000F, // SQ M1    0
SegmentationFractionalType              = 0x00620010, // CS M1    0
SegmentedPropertyTypeModifierCodeSequence = 0x00620011, // SQ M1    0
UsedSegmentsSequence                    = 0x00620012, // SQ M1    0
DeformableRegistrationSequence          = 0x00640002, // SQ M1    0
SourceFrameOfReferenceUID               = 0x00640003, // UI M1    0
DeformableRegistrationGridSequence      = 0x00640005, // SQ M1    0
GridDimensions                          = 0x00640007, // UL M3    0
GridResolution                          = 0x00640008, // FD M3    0
VectorGridData                          = 0x00640009, // OF M1    0
PreDeformationMatrixRegistrationSequence = 0x0064000F, // SQ M1    0
PostDeformationMatrixRegistrationSequence = 0x00640010, // SQ M1    0
NumberOfSurfaces                        = 0x00660001, // UL M1    0
SurfaceSequence                         = 0x00660002, // SQ M1    0
SurfaceNumber                           = 0x00660003, // UL M1    0
SurfaceComments                         = 0x00660004, // LT M1    0
SurfaceProcessing                       = 0x00660009, // CS M1    0
SurfaceProcessingRatio                  = 0x0066000A, // FL M1    0
SurfaceProcessingDescription            = 0x0066000B, // LO M1    0
RecommendedPresentationOpacity          = 0x0066000C, // FL M1    0
RecommendedPresentationType             = 0x0066000D, // CS M1    0
FiniteVolume                            = 0x0066000E, // CS M1    0
Manifold                                = 0x00660010, // CS M1    0
SurfacePointsSequence                   = 0x00660011, // SQ M1    0
SurfacePointsNormalsSequence            = 0x00660012, // SQ M1    0
SurfaceMeshPrimitivesSequence           = 0x00660013, // SQ M1    0
NumberOfSurfacePoints                   = 0x00660015, // UL M1    0
PointCoordinatesData                    = 0x00660016, // OF M1    0
PointPositionAccuracy                   = 0x00660017, // FL M3    0
MeanPointDistance                       = 0x00660018, // FL M1    0
MaximumPointDistance                    = 0x00660019, // FL M1    0
PointsBoundingBoxCoordinates            = 0x0066001A, // FL M6    0
AxisOfRotation                          = 0x0066001B, // FL M3    0
CenterOfRotation                        = 0x0066001C, // FL M3    0
NumberOfVectors                         = 0x0066001E, // UL M1    0
VectorDimensionality                    = 0x0066001F, // US M1    0
VectorAccuracy                          = 0x00660020, // FL M1TN  0
VectorCoordinateData                    = 0x00660021, // OF M1    0
TrianglePointIndexList                  = 0x00660023, // OW M1    0
EdgePointIndexList                      = 0x00660024, // OW M1    0
VertexPointIndexList                    = 0x00660025, // OW M1    0
TriangleStripSequence                   = 0x00660026, // SQ M1    0
TriangleFanSequence                     = 0x00660027, // SQ M1    0
LineSequence                            = 0x00660028, // SQ M1    0
PrimitivePointIndexList                 = 0x00660029, // OW M1    0
SurfaceCount                            = 0x0066002A, // UL M1    0
ReferencedSurfaceSequence               = 0x0066002B, // SQ M1    0
ReferencedSurfaceNumber                 = 0x0066002C, // UL M1    0
SegmentSurfaceGenerationAlgorithmIdentificationSequence = 0x0066002D, // SQ M1    0
SegmentSurfaceSourceInstanceSequence    = 0x0066002E, // SQ M1    0
AlgorithmFamilyCodeSequence             = 0x0066002F, // SQ M1    0
AlgorithmNameCodeSequence               = 0x00660030, // SQ M1    0
AlgorithmVersion                        = 0x00660031, // LO M1    0
AlgorithmParameters                     = 0x00660032, // LT M1    0
FacetSequence                           = 0x00660034, // SQ M1    0
SurfaceProcessingAlgorithmIdentificationSequence = 0x00660035, // SQ M1    0
AlgorithmName                           = 0x00660036, // LO M1    0
RecommendedPointRadius                  = 0x00660037, // FL M1    0
RecommendedLineThickness                = 0x00660038, // FL M1    0
LongPrimitivePointIndexList             = 0x00660040, // UL M1TN  0
LongTrianglePointIndexList              = 0x00660041, // UL M3T3N 0
LongEdgePointIndexList                  = 0x00660042, // UL M2T2N 0
LongVertexPointIndexList                = 0x00660043, // UL M1TN  0
TrackSetSequence                        = 0x00660101, // SQ M1    0
TrackSequence                           = 0x00660102, // SQ M1    0
RecommendedDisplayCIELabValueList       = 0x00660103, // OW M1    0
TrackingAlgorithmIdentificationSequence = 0x00660104, // SQ M1    0
TrackSetNumber                          = 0x00660105, // UL M1    0
TrackSetLabel                           = 0x00660106, // LO M1    0
TrackSetDescription                     = 0x00660107, // UT M1    0
TrackSetAnatomicalTypeCodeSequence      = 0x00660108, // SQ M1    0
MeasurementsSequence                    = 0x00660121, // SQ M1    0
TrackSetStatisticsSequence              = 0x00660124, // SQ M1    0
FloatingPointValues                     = 0x00660125, // OF M1    0
TrackPointIndexList                     = 0x00660129, // OL M1    0
TrackStatisticsSequence                 = 0x00660130, // SQ M1    0
MeasurementValuesSequence               = 0x00660132, // SQ M1    0
DiffusionAcquisitionCodeSequence        = 0x00660133, // SQ M1    0
DiffusionModelCodeSequence              = 0x00660134, // SQ M1    0
ImplantSize                             = 0x00686210, // LO M1    0
ImplantTemplateVersion                  = 0x00686221, // LO M1    0
ReplacedImplantTemplateSequence         = 0x00686222, // SQ M1    0
ImplantType                             = 0x00686223, // CS M1    0
DerivationImplantTemplateSequence       = 0x00686224, // SQ M1    0
OriginalImplantTemplateSequence         = 0x00686225, // SQ M1    0
EffectiveDateTime                       = 0x00686226, // DT M1    0
ImplantTargetAnatomySequence            = 0x00686230, // SQ M1    0
InformationFromManufacturerSequence     = 0x00686260, // SQ M1    0
NotificationFromManufacturerSequence    = 0x00686265, // SQ M1    0
InformationIssueDateTime                = 0x00686270, // DT M1    0
InformationSummary                      = 0x00686280, // ST M1    0
ImplantRegulatoryDisapprovalCodeSequence = 0x006862A0, // SQ M1    0
OverallTemplateSpatialTolerance         = 0x006862A5, // FD M1    0
HPGLDocumentSequence                    = 0x006862C0, // SQ M1    0
HPGLDocumentID                          = 0x006862D0, // US M1    0
HPGLDocumentLabel                       = 0x006862D5, // LO M1    0
ViewOrientationCodeSequence             = 0x006862E0, // SQ M1    0
ViewOrientationModifier                 = 0x006862F0, // FD M9    0
HPGLDocumentScaling                     = 0x006862F2, // FD M1    0
HPGLDocument                            = 0x00686300, // OB M1    0
HPGLContourPenNumber                    = 0x00686310, // US M1    0
HPGLPenSequence                         = 0x00686320, // SQ M1    0
HPGLPenNumber                           = 0x00686330, // US M1    0
HPGLPenLabel                            = 0x00686340, // LO M1    0
HPGLPenDescription                      = 0x00686345, // ST M1    0
RecommendedRotationPoint                = 0x00686346, // FD M2    0
BoundingRectangle                       = 0x00686347, // FD M4    0
ImplantTemplate3DModelSurfaceNumber     = 0x00686350, // US M1TN  0
SurfaceModelDescriptionSequence         = 0x00686360, // SQ M1    0
SurfaceModelLabel                       = 0x00686380, // LO M1    0
SurfaceModelScalingFactor               = 0x00686390, // FD M1    0
MaterialsCodeSequence                   = 0x006863A0, // SQ M1    0
CoatingMaterialsCodeSequence            = 0x006863A4, // SQ M1    0
ImplantTypeCodeSequence                 = 0x006863A8, // SQ M1    0
FixationMethodCodeSequence              = 0x006863AC, // SQ M1    0
MatingFeatureSetsSequence               = 0x006863B0, // SQ M1    0
MatingFeatureSetID                      = 0x006863C0, // US M1    0
MatingFeatureSetLabel                   = 0x006863D0, // LO M1    0
MatingFeatureSequence                   = 0x006863E0, // SQ M1    0
MatingFeatureID                         = 0x006863F0, // US M1    0
MatingFeatureDegreeOfFreedomSequence    = 0x00686400, // SQ M1    0
DegreeOfFreedomID                       = 0x00686410, // US M1    0
DegreeOfFreedomType                     = 0x00686420, // CS M1    0
TwoDMatingFeatureCoordinatesSequence    = 0x00686430, // SQ M1    0
ReferencedHPGLDocumentID                = 0x00686440, // US M1    0
TwoDMatingPoint                         = 0x00686450, // FD M2    0
TwoDMatingAxes                          = 0x00686460, // FD M4    0
TwoDDegreeOfFreedomSequence             = 0x00686470, // SQ M1    0
ThreeDDegreeOfFreedomAxis               = 0x00686490, // FD M3    0
RangeOfFreedom                          = 0x006864A0, // FD M2    0
ThreeDMatingPoint                       = 0x006864C0, // FD M3    0
ThreeDMatingAxes                        = 0x006864D0, // FD M9    0
TwoDDegreeOfFreedomAxis                 = 0x006864F0, // FD M3    0
PlanningLandmarkPointSequence           = 0x00686500, // SQ M1    0
PlanningLandmarkLineSequence            = 0x00686510, // SQ M1    0
PlanningLandmarkPlaneSequence           = 0x00686520, // SQ M1    0
PlanningLandmarkID                      = 0x00686530, // US M1    0
PlanningLandmarkDescription             = 0x00686540, // LO M1    0
PlanningLandmarkIdentificationCodeSequence = 0x00686545, // SQ M1    0
TwoDPointCoordinatesSequence            = 0x00686550, // SQ M1    0
TwoDPointCoordinates                    = 0x00686560, // FD M2    0
ThreeDPointCoordinates                  = 0x00686590, // FD M3    0
TwoDLineCoordinatesSequence             = 0x006865A0, // SQ M1    0
TwoDLineCoordinates                     = 0x006865B0, // FD M4    0
ThreeDLineCoordinates                   = 0x006865D0, // FD M6    0
TwoDPlaneCoordinatesSequence            = 0x006865E0, // SQ M1    0
TwoDPlaneIntersection                   = 0x006865F0, // FD M4    0
ThreeDPlaneOrigin                       = 0x00686610, // FD M3    0
ThreeDPlaneNormal                       = 0x00686620, // FD M3    0
GraphicAnnotationSequence               = 0x00700001, // SQ M1    0
GraphicLayer                            = 0x00700002, // CS M1    0
BoundingBoxAnnotationUnits              = 0x00700003, // CS M1    0
AnchorPointAnnotationUnits              = 0x00700004, // CS M1    0
GraphicAnnotationUnits                  = 0x00700005, // CS M1    0
UnformattedTextValue                    = 0x00700006, // ST M1    0
TextObjectSequence                      = 0x00700008, // SQ M1    0
GraphicObjectSequence                   = 0x00700009, // SQ M1    0
BoundingBoxTopLeftHandCorner            = 0x00700010, // FL M2    0
BoundingBoxBottomRightHandCorner        = 0x00700011, // FL M2    0
BoundingBoxTextHorizontalJustification  = 0x00700012, // CS M1    0
AnchorPoint                             = 0x00700014, // FL M2    0
AnchorPointVisibility                   = 0x00700015, // CS M1    0
GraphicDimensions                       = 0x00700020, // US M1    0
NumberOfGraphicPoints                   = 0x00700021, // US M1    0
GraphicData                             = 0x00700022, // FL M2TN  0
GraphicType                             = 0x00700023, // CS M1    0
GraphicFilled                           = 0x00700024, // CS M1    0
ImageRotationRetired                    = 0x00700040, // IS M1    1
ImageHorizontalFlip                     = 0x00700041, // CS M1    0
ImageRotation                           = 0x00700042, // US M1    0
DisplayedAreaTopLeftHandCornerTrial     = 0x00700050, // US M2    1
DisplayedAreaBottomRightHandCornerTrial = 0x00700051, // US M2    1
DisplayedAreaTopLeftHandCorner          = 0x00700052, // SL M2    0
DisplayedAreaBottomRightHandCorner      = 0x00700053, // SL M2    0
DisplayedAreaSelectionSequence          = 0x0070005A, // SQ M1    0
GraphicLayerSequence                    = 0x00700060, // SQ M1    0
GraphicLayerOrder                       = 0x00700062, // IS M1    0
GraphicLayerRecommendedDisplayGrayscaleValue = 0x00700066, // US M1    0
GraphicLayerRecommendedDisplayRGBValue  = 0x00700067, // US M3    1
GraphicLayerDescription                 = 0x00700068, // LO M1    0
ContentLabel                            = 0x00700080, // CS M1    0
ContentDescription                      = 0x00700081, // LO M1    0
PresentationCreationDate                = 0x00700082, // DA M1    0
PresentationCreationTime                = 0x00700083, // TM M1    0
ContentCreatorName                      = 0x00700084, // PN M1    0
ContentCreatorIdentificationCodeSequence = 0x00700086, // SQ M1    0
AlternateContentDescriptionSequence     = 0x00700087, // SQ M1    0
PresentationSizeMode                    = 0x00700100, // CS M1    0
PresentationPixelSpacing                = 0x00700101, // DS M2    0
PresentationPixelAspectRatio            = 0x00700102, // IS M2    0
PresentationPixelMagnificationRatio     = 0x00700103, // FL M1    0
GraphicGroupLabel                       = 0x00700207, // LO M1    0
GraphicGroupDescription                 = 0x00700208, // ST M1    0
CompoundGraphicSequence                 = 0x00700209, // SQ M1    0
CompoundGraphicInstanceID               = 0x00700226, // UL M1    0
FontName                                = 0x00700227, // LO M1    0
FontNameType                            = 0x00700228, // CS M1    0
CSSFontName                             = 0x00700229, // LO M1    0
RotationAngle                           = 0x00700230, // FD M1    0
TextStyleSequence                       = 0x00700231, // SQ M1    0
LineStyleSequence                       = 0x00700232, // SQ M1    0
FillStyleSequence                       = 0x00700233, // SQ M1    0
GraphicGroupSequence                    = 0x00700234, // SQ M1    0
TextColorCIELabValue                    = 0x00700241, // US M3    0
HorizontalAlignment                     = 0x00700242, // CS M1    0
VerticalAlignment                       = 0x00700243, // CS M1    0
ShadowStyle                             = 0x00700244, // CS M1    0
ShadowOffsetX                           = 0x00700245, // FL M1    0
ShadowOffsetY                           = 0x00700246, // FL M1    0
ShadowColorCIELabValue                  = 0x00700247, // US M3    0
Underlined                              = 0x00700248, // CS M1    0
Bold                                    = 0x00700249, // CS M1    0
Italic                                  = 0x00700250, // CS M1    0
PatternOnColorCIELabValue               = 0x00700251, // US M3    0
PatternOffColorCIELabValue              = 0x00700252, // US M3    0
LineThickness                           = 0x00700253, // FL M1    0
LineDashingStyle                        = 0x00700254, // CS M1    0
LinePattern                             = 0x00700255, // UL M1    0
FillPattern                             = 0x00700256, // OB M1    0
FillMode                                = 0x00700257, // CS M1    0
ShadowOpacity                           = 0x00700258, // FL M1    0
GapLength                               = 0x00700261, // FL M1    0
DiameterOfVisibility                    = 0x00700262, // FL M1    0
RotationPoint                           = 0x00700273, // FL M2    0
TickAlignment                           = 0x00700274, // CS M1    0
ShowTickLabel                           = 0x00700278, // CS M1    0
TickLabelAlignment                      = 0x00700279, // CS M1    0
CompoundGraphicUnits                    = 0x00700282, // CS M1    0
PatternOnOpacity                        = 0x00700284, // FL M1    0
PatternOffOpacity                       = 0x00700285, // FL M1    0
MajorTicksSequence                      = 0x00700287, // SQ M1    0
TickPosition                            = 0x00700288, // FL M1    0
TickLabel                               = 0x00700289, // SH M1    0
CompoundGraphicType                     = 0x00700294, // CS M1    0
GraphicGroupID                          = 0x00700295, // UL M1    0
ShapeType                               = 0x00700306, // CS M1    0
RegistrationSequence                    = 0x00700308, // SQ M1    0
MatrixRegistrationSequence              = 0x00700309, // SQ M1    0
MatrixSequence                          = 0x0070030A, // SQ M1    0
FrameOfReferenceTransformationMatrixType = 0x0070030C, // CS M1    0
RegistrationTypeCodeSequence            = 0x0070030D, // SQ M1    0
FiducialDescription                     = 0x0070030F, // ST M1    0
FiducialIdentifier                      = 0x00700310, // SH M1    0
FiducialIdentifierCodeSequence          = 0x00700311, // SQ M1    0
ContourUncertaintyRadius                = 0x00700312, // FD M1    0
UsedFiducialsSequence                   = 0x00700314, // SQ M1    0
GraphicCoordinatesDataSequence          = 0x00700318, // SQ M1    0
FiducialUID                             = 0x0070031A, // UI M1    0
FiducialSetSequence                     = 0x0070031C, // SQ M1    0
FiducialSequence                        = 0x0070031E, // SQ M1    0
GraphicLayerRecommendedDisplayCIELabValue = 0x00700401, // US M3    0
BlendingSequence                        = 0x00700402, // SQ M1    0
RelativeOpacity                         = 0x00700403, // FL M1    0
ReferencedSpatialRegistrationSequence   = 0x00700404, // SQ M1    0
BlendingPosition                        = 0x00700405, // CS M1    0
PresentationDisplayCollectionUID        = 0x00701101, // UI M1    0
PresentationSequenceCollectionUID       = 0x00701102, // UI M1    0
PresentationSequencePositionIndex       = 0x00701103, // US M1    0
RenderedImageReferenceSequence          = 0x00701104, // SQ M1    0
VolumetricPresentationStateInputSequence = 0x00701201, // SQ M1    0
PresentationInputType                   = 0x00701202, // CS M1    0
InputSequencePositionIndex              = 0x00701203, // US M1    0
Crop                                    = 0x00701204, // CS M1    0
CroppingSpecificationIndex              = 0x00701205, // US M1TN  0
CompositingMethod                       = 0x00701206, // CS M1    0
VolumetricPresentationInputNumber       = 0x00701207, // US M1    0
ImageVolumeGeometry                     = 0x00701208, // CS M1    0
VolumeCroppingSequence                  = 0x00701301, // SQ M1    0
VolumeCroppingMethod                    = 0x00701302, // CS M1    0
BoundingBoxCrop                         = 0x00701303, // FD M6    0
ObliqueCroppingPlaneSequence            = 0x00701304, // SQ M1    0
ObliqueCroppingPlane                    = 0x00701305, // FD M4    0
ObliqueCroppingPlaneNormal              = 0x00701306, // FD M3    0
CroppingSpecificationNumber             = 0x00701309, // US M1    0
MultiPlanarReconstructionStyle          = 0x00701501, // CS M1    0
MPRThicknessType                        = 0x00701502, // CS M1    0
MPRSlabThickness                        = 0x00701503, // FD M1    0
MPRTopLeftHandCorner                    = 0x00701505, // FD M3    0
MPRViewWidthDirection                   = 0x00701507, // FD M3    0
MPRViewWidth                            = 0x00701508, // FD M1    0
NumberOfVolumetricCurvePoints           = 0x0070150C, // UL M1    0
VolumetricCurvePoints                   = 0x0070150D, // OD M1    0
MPRViewHeightDirection                  = 0x00701511, // FD M3    0
MPRViewHeight                           = 0x00701512, // FD M1    0
PresentationStateClassificationComponentSequence = 0x00701801, // SQ M1    0
ComponentType                           = 0x00701802, // CS M1    0
ComponentInputSequence                  = 0x00701803, // SQ M1    0
VolumetricPresentationInputIndex        = 0x00701804, // US M1    0
PresentationStateCompositorComponentSequence = 0x00701805, // SQ M1    0
WeightingTransferFunctionSequence       = 0x00701806, // SQ M1    0
WeightingLookupTableDescriptor          = 0x00701807, // US M3    0
WeightingLookupTableData                = 0x00701808, // OB M1    0
VolumetricAnnotationSequence            = 0x00701901, // SQ M1    0
ReferencedStructuredContextSequence     = 0x00701903, // SQ M1    0
ReferencedContentItem                   = 0x00701904, // UI M1    0
VolumetricPresentationInputAnnotationSequence = 0x00701905, // SQ M1    0
AnnotationClipping                      = 0x00701907, // CS M1    0
PresentationAnimationStyle              = 0x00701A01, // CS M1    0
RecommendedAnimationRate                = 0x00701A03, // FD M1    0
AnimationCurveSequence                  = 0x00701A04, // SQ M1    0
AnimationStepSize                       = 0x00701A05, // FD M1    0
HangingProtocolName                     = 0x00720002, // SH M1    0
HangingProtocolDescription              = 0x00720004, // LO M1    0
HangingProtocolLevel                    = 0x00720006, // CS M1    0
HangingProtocolCreator                  = 0x00720008, // LO M1    0
HangingProtocolCreationDateTime         = 0x0072000A, // DT M1    0
HangingProtocolDefinitionSequence       = 0x0072000C, // SQ M1    0
HangingProtocolUserIdentificationCodeSequence = 0x0072000E, // SQ M1    0
HangingProtocolUserGroupName            = 0x00720010, // LO M1    0
SourceHangingProtocolSequence           = 0x00720012, // SQ M1    0
NumberOfPriorsReferenced                = 0x00720014, // US M1    0
ImageSetsSequence                       = 0x00720020, // SQ M1    0
ImageSetSelectorSequence                = 0x00720022, // SQ M1    0
ImageSetSelectorUsageFlag               = 0x00720024, // CS M1    0
SelectorAttribute                       = 0x00720026, // AT M1    0
SelectorValueNumber                     = 0x00720028, // US M1    0
TimeBasedImageSetsSequence              = 0x00720030, // SQ M1    0
ImageSetNumber                          = 0x00720032, // US M1    0
ImageSetSelectorCategory                = 0x00720034, // CS M1    0
RelativeTime                            = 0x00720038, // US M2    0
RelativeTimeUnits                       = 0x0072003A, // CS M1    0
AbstractPriorValue                      = 0x0072003C, // SS M2    0
AbstractPriorCodeSequence               = 0x0072003E, // SQ M1    0
ImageSetLabel                           = 0x00720040, // LO M1    0
SelectorAttributeVR                     = 0x00720050, // CS M1    0
SelectorSequencePointer                 = 0x00720052, // AT M1TN  0
SelectorSequencePointerPrivateCreator   = 0x00720054, // LO M1TN  0
SelectorAttributePrivateCreator         = 0x00720056, // LO M1    0
SelectorATValue                         = 0x00720060, // AT M1TN  0
SelectorCSValue                         = 0x00720062, // CS M1TN  0
SelectorISValue                         = 0x00720064, // IS M1TN  0
SelectorLOValue                         = 0x00720066, // LO M1TN  0
SelectorLTValue                         = 0x00720068, // LT M1    0
SelectorPNValue                         = 0x0072006A, // PN M1TN  0
SelectorSHValue                         = 0x0072006C, // SH M1TN  0
SelectorSTValue                         = 0x0072006E, // ST M1    0
SelectorUTValue                         = 0x00720070, // UT M1    0
SelectorDSValue                         = 0x00720072, // DS M1TN  0
SelectorFDValue                         = 0x00720074, // FD M1TN  0
SelectorFLValue                         = 0x00720076, // FL M1TN  0
SelectorULValue                         = 0x00720078, // UL M1TN  0
SelectorUSValue                         = 0x0072007A, // US M1TN  0
SelectorSLValue                         = 0x0072007C, // SL M1TN  0
SelectorSSValue                         = 0x0072007E, // SS M1TN  0
SelectorUIValue                         = 0x0072007F, // UI M1TN  0
SelectorCodeSequenceValue               = 0x00720080, // SQ M1    0
NumberOfScreens                         = 0x00720100, // US M1    0
NominalScreenDefinitionSequence         = 0x00720102, // SQ M1    0
NumberOfVerticalPixels                  = 0x00720104, // US M1    0
NumberOfHorizontalPixels                = 0x00720106, // US M1    0
DisplayEnvironmentSpatialPosition       = 0x00720108, // FD M4    0
ScreenMinimumGrayscaleBitDepth          = 0x0072010A, // US M1    0
ScreenMinimumColorBitDepth              = 0x0072010C, // US M1    0
ApplicationMaximumRepaintTime           = 0x0072010E, // US M1    0
DisplaySetsSequence                     = 0x00720200, // SQ M1    0
DisplaySetNumber                        = 0x00720202, // US M1    0
DisplaySetLabel                         = 0x00720203, // LO M1    0
DisplaySetPresentationGroup             = 0x00720204, // US M1    0
DisplaySetPresentationGroupDescription  = 0x00720206, // LO M1    0
PartialDataDisplayHandling              = 0x00720208, // CS M1    0
SynchronizedScrollingSequence           = 0x00720210, // SQ M1    0
DisplaySetScrollingGroup                = 0x00720212, // US M2TN  0
NavigationIndicatorSequence             = 0x00720214, // SQ M1    0
NavigationDisplaySet                    = 0x00720216, // US M1    0
ReferenceDisplaySets                    = 0x00720218, // US M1TN  0
ImageBoxesSequence                      = 0x00720300, // SQ M1    0
ImageBoxNumber                          = 0x00720302, // US M1    0
ImageBoxLayoutType                      = 0x00720304, // CS M1    0
ImageBoxTileHorizontalDimension         = 0x00720306, // US M1    0
ImageBoxTileVerticalDimension           = 0x00720308, // US M1    0
ImageBoxScrollDirection                 = 0x00720310, // CS M1    0
ImageBoxSmallScrollType                 = 0x00720312, // CS M1    0
ImageBoxSmallScrollAmount               = 0x00720314, // US M1    0
ImageBoxLargeScrollType                 = 0x00720316, // CS M1    0
ImageBoxLargeScrollAmount               = 0x00720318, // US M1    0
ImageBoxOverlapPriority                 = 0x00720320, // US M1    0
CineRelativeToRealTime                  = 0x00720330, // FD M1    0
FilterOperationsSequence                = 0x00720400, // SQ M1    0
FilterByCategory                        = 0x00720402, // CS M1    0
FilterByAttributePresence               = 0x00720404, // CS M1    0
FilterByOperator                        = 0x00720406, // CS M1    0
StructuredDisplayBackgroundCIELabValue  = 0x00720420, // US M3    0
EmptyImageBoxCIELabValue                = 0x00720421, // US M3    0
StructuredDisplayImageBoxSequence       = 0x00720422, // SQ M1    0
StructuredDisplayTextBoxSequence        = 0x00720424, // SQ M1    0
ReferencedFirstFrameSequence            = 0x00720427, // SQ M1    0
ImageBoxSynchronizationSequence         = 0x00720430, // SQ M1    0
SynchronizedImageBoxList                = 0x00720432, // US M2TN  0
TypeOfSynchronization                   = 0x00720434, // CS M1    0
BlendingOperationType                   = 0x00720500, // CS M1    0
ReformattingOperationType               = 0x00720510, // CS M1    0
ReformattingThickness                   = 0x00720512, // FD M1    0
ReformattingInterval                    = 0x00720514, // FD M1    0
ReformattingOperationInitialViewDirection = 0x00720516, // CS M1    0
ThreeDRenderingType                     = 0x00720520, // CS M1TN  0
SortingOperationsSequence               = 0x00720600, // SQ M1    0
SortByCategory                          = 0x00720602, // CS M1    0
SortingDirection                        = 0x00720604, // CS M1    0
DisplaySetPatientOrientation            = 0x00720700, // CS M2    0
VOIType                                 = 0x00720702, // CS M1    0
PseudoColorType                         = 0x00720704, // CS M1    0
PseudoColorPaletteInstanceReferenceSequence = 0x00720705, // SQ M1    0
ShowGrayscaleInverted                   = 0x00720706, // CS M1    0
ShowImageTrueSizeFlag                   = 0x00720710, // CS M1    0
ShowGraphicAnnotationFlag               = 0x00720712, // CS M1    0
ShowPatientDemographicsFlag             = 0x00720714, // CS M1    0
ShowAcquisitionTechniquesFlag           = 0x00720716, // CS M1    0
DisplaySetHorizontalJustification       = 0x00720717, // CS M1    0
DisplaySetVerticalJustification         = 0x00720718, // CS M1    0
ContinuationStartMeterset               = 0x00740120, // FD M1    0
ContinuationEndMeterset                 = 0x00740121, // FD M1    0
ProcedureStepState                      = 0x00741000, // CS M1    0
ProcedureStepProgressInformationSequence = 0x00741002, // SQ M1    0
ProcedureStepProgress                   = 0x00741004, // DS M1    0
ProcedureStepProgressDescription        = 0x00741006, // ST M1    0
ProcedureStepCommunicationsURISequence  = 0x00741008, // SQ M1    0
ContactURI                              = 0x0074100A, // UR M1    0
ContactDisplayName                      = 0x0074100C, // LO M1    0
ProcedureStepDiscontinuationReasonCodeSequence = 0x0074100E, // SQ M1    0
BeamTaskSequence                        = 0x00741020, // SQ M1    0
BeamTaskType                            = 0x00741022, // CS M1    0
BeamOrderIndexTrial                     = 0x00741024, // IS M1    1
AutosequenceFlag                        = 0x00741025, // CS M1    0
TableTopVerticalAdjustedPosition        = 0x00741026, // FD M1    0
TableTopLongitudinalAdjustedPosition    = 0x00741027, // FD M1    0
TableTopLateralAdjustedPosition         = 0x00741028, // FD M1    0
PatientSupportAdjustedAngle             = 0x0074102A, // FD M1    0
TableTopEccentricAdjustedAngle          = 0x0074102B, // FD M1    0
TableTopPitchAdjustedAngle              = 0x0074102C, // FD M1    0
TableTopRollAdjustedAngle               = 0x0074102D, // FD M1    0
DeliveryVerificationImageSequence       = 0x00741030, // SQ M1    0
VerificationImageTiming                 = 0x00741032, // CS M1    0
DoubleExposureFlag                      = 0x00741034, // CS M1    0
DoubleExposureOrdering                  = 0x00741036, // CS M1    0
DoubleExposureMetersetTrial             = 0x00741038, // DS M1    1
DoubleExposureFieldDeltaTrial           = 0x0074103A, // DS M4    1
RelatedReferenceRTImageSequence         = 0x00741040, // SQ M1    0
GeneralMachineVerificationSequence      = 0x00741042, // SQ M1    0
ConventionalMachineVerificationSequence = 0x00741044, // SQ M1    0
IonMachineVerificationSequence          = 0x00741046, // SQ M1    0
FailedAttributesSequence                = 0x00741048, // SQ M1    0
OverriddenAttributesSequence            = 0x0074104A, // SQ M1    0
ConventionalControlPointVerificationSequence = 0x0074104C, // SQ M1    0
IonControlPointVerificationSequence     = 0x0074104E, // SQ M1    0
AttributeOccurrenceSequence             = 0x00741050, // SQ M1    0
AttributeOccurrencePointer              = 0x00741052, // AT M1    0
AttributeItemSelector                   = 0x00741054, // UL M1    0
AttributeOccurrencePrivateCreator       = 0x00741056, // LO M1    0
SelectorSequencePointerItems            = 0x00741057, // IS M1TN  0
ScheduledProcedureStepPriority          = 0x00741200, // CS M1    0
WorklistLabel                           = 0x00741202, // LO M1    0
ProcedureStepLabel                      = 0x00741204, // LO M1    0
ScheduledProcessingParametersSequence   = 0x00741210, // SQ M1    0
PerformedProcessingParametersSequence   = 0x00741212, // SQ M1    0
UnifiedProcedureStepPerformedProcedureSequence = 0x00741216, // SQ M1    0
RelatedProcedureStepSequence            = 0x00741220, // SQ M1    1
ProcedureStepRelationshipType           = 0x00741222, // LO M1    1
ReplacedProcedureStepSequence           = 0x00741224, // SQ M1    0
DeletionLock                            = 0x00741230, // LO M1    0
ReceivingAE                             = 0x00741234, // AE M1    0
RequestingAE                            = 0x00741236, // AE M1    0
ReasonForCancellation                   = 0x00741238, // LT M1    0
SCPStatus                               = 0x00741242, // CS M1    0
SubscriptionListStatus                  = 0x00741244, // CS M1    0
UnifiedProcedureStepListStatus          = 0x00741246, // CS M1    0
BeamOrderIndex                          = 0x00741324, // UL M1    0
DoubleExposureMeterset                  = 0x00741338, // FD M1    0
DoubleExposureFieldDelta                = 0x0074133A, // FD M4    0
ImplantAssemblyTemplateName             = 0x00760001, // LO M1    0
ImplantAssemblyTemplateIssuer           = 0x00760003, // LO M1    0
ImplantAssemblyTemplateVersion          = 0x00760006, // LO M1    0
ReplacedImplantAssemblyTemplateSequence = 0x00760008, // SQ M1    0
ImplantAssemblyTemplateType             = 0x0076000A, // CS M1    0
OriginalImplantAssemblyTemplateSequence = 0x0076000C, // SQ M1    0
DerivationImplantAssemblyTemplateSequence = 0x0076000E, // SQ M1    0
ImplantAssemblyTemplateTargetAnatomySequence = 0x00760010, // SQ M1    0
ProcedureTypeCodeSequence               = 0x00760020, // SQ M1    0
SurgicalTechnique                       = 0x00760030, // LO M1    0
ComponentTypesSequence                  = 0x00760032, // SQ M1    0
ComponentTypeCodeSequence               = 0x00760034, // CS M1    0
ExclusiveComponentType                  = 0x00760036, // CS M1    0
MandatoryComponentType                  = 0x00760038, // CS M1    0
ComponentSequence                       = 0x00760040, // SQ M1    0
ComponentID                             = 0x00760055, // US M1    0
ComponentAssemblySequence               = 0x00760060, // SQ M1    0
Component1ReferencedID                  = 0x00760070, // US M1    0
Component1ReferencedMatingFeatureSetID  = 0x00760080, // US M1    0
Component1ReferencedMatingFeatureID     = 0x00760090, // US M1    0
Component2ReferencedID                  = 0x007600A0, // US M1    0
Component2ReferencedMatingFeatureSetID  = 0x007600B0, // US M1    0
Component2ReferencedMatingFeatureID     = 0x007600C0, // US M1    0
ImplantTemplateGroupName                = 0x00780001, // LO M1    0
ImplantTemplateGroupDescription         = 0x00780010, // ST M1    0
ImplantTemplateGroupIssuer              = 0x00780020, // LO M1    0
ImplantTemplateGroupVersion             = 0x00780024, // LO M1    0
ReplacedImplantTemplateGroupSequence    = 0x00780026, // SQ M1    0
ImplantTemplateGroupTargetAnatomySequence = 0x00780028, // SQ M1    0
ImplantTemplateGroupMembersSequence     = 0x0078002A, // SQ M1    0
ImplantTemplateGroupMemberID            = 0x0078002E, // US M1    0
ThreeDImplantTemplateGroupMemberMatchingPoint = 0x00780050, // FD M3    0
ThreeDImplantTemplateGroupMemberMatchingAxes = 0x00780060, // FD M9    0
ImplantTemplateGroupMemberMatching2DCoordinatesSequence = 0x00780070, // SQ M1    0
TwoDImplantTemplateGroupMemberMatchingPoint = 0x00780090, // FD M2    0
TwoDImplantTemplateGroupMemberMatchingAxes = 0x007800A0, // FD M4    0
ImplantTemplateGroupVariationDimensionSequence = 0x007800B0, // SQ M1    0
ImplantTemplateGroupVariationDimensionName = 0x007800B2, // LO M1    0
ImplantTemplateGroupVariationDimensionRankSequence = 0x007800B4, // SQ M1    0
ReferencedImplantTemplateGroupMemberID  = 0x007800B6, // US M1    0
ImplantTemplateGroupVariationDimensionRank = 0x007800B8, // US M1    0
SurfaceScanAcquisitionTypeCodeSequence  = 0x00800001, // SQ M1    0
SurfaceScanModeCodeSequence             = 0x00800002, // SQ M1    0
RegistrationMethodCodeSequence          = 0x00800003, // SQ M1    0
ShotDurationTime                        = 0x00800004, // FD M1    0
ShotOffsetTime                          = 0x00800005, // FD M1    0
SurfacePointPresentationValueData       = 0x00800006, // US M1TN  0
SurfacePointColorCIELabValueData        = 0x00800007, // US M3T3N 0
UVMappingSequence                       = 0x00800008, // SQ M1    0
TextureLabel                            = 0x00800009, // SH M1    0
UValueData                              = 0x00800010, // OF M1TN  0
VValueData                              = 0x00800011, // OF M1TN  0
ReferencedTextureSequence               = 0x00800012, // SQ M1    0
ReferencedSurfaceDataSequence           = 0x00800013, // SQ M1    0
StorageMediaFileSetID                   = 0x00880130, // SH M1    0
StorageMediaFileSetUID                  = 0x00880140, // UI M1    0
IconImageSequence                       = 0x00880200, // SQ M1    0
TopicTitle                              = 0x00880904, // LO M1    1
TopicSubject                            = 0x00880906, // ST M1    1
TopicAuthor                             = 0x00880910, // LO M1    1
TopicKeywords                           = 0x00880912, // LO M1T32 1
SOPInstanceStatus                       = 0x01000410, // CS M1    0
SOPAuthorizationDateTime                = 0x01000420, // DT M1    0
SOPAuthorizationComment                 = 0x01000424, // LT M1    0
AuthorizationEquipmentCertificationNumber = 0x01000426, // LO M1    0
MACIDNumber                             = 0x04000005, // US M1    0
MACCalculationTransferSyntaxUID         = 0x04000010, // UI M1    0
MACAlgorithm                            = 0x04000015, // CS M1    0
DataElementsSigned                      = 0x04000020, // AT M1TN  0
DigitalSignatureUID                     = 0x04000100, // UI M1    0
DigitalSignatureDateTime                = 0x04000105, // DT M1    0
CertificateType                         = 0x04000110, // CS M1    0
CertificateOfSigner                     = 0x04000115, // OB M1    0
Signature                               = 0x04000120, // OB M1    0
CertifiedTimestampType                  = 0x04000305, // CS M1    0
CertifiedTimestamp                      = 0x04000310, // OB M1    0
DigitalSignaturePurposeCodeSequence     = 0x04000401, // SQ M1    0
ReferencedDigitalSignatureSequence      = 0x04000402, // SQ M1    0
ReferencedSOPInstanceMACSequence        = 0x04000403, // SQ M1    0
MAC                                     = 0x04000404, // OB M1    0
EncryptedAttributesSequence             = 0x04000500, // SQ M1    0
EncryptedContentTransferSyntaxUID       = 0x04000510, // UI M1    0
EncryptedContent                        = 0x04000520, // OB M1    0
ModifiedAttributesSequence              = 0x04000550, // SQ M1    0
OriginalAttributesSequence              = 0x04000561, // SQ M1    0
AttributeModificationDateTime           = 0x04000562, // DT M1    0
ModifyingSystem                         = 0x04000563, // LO M1    0
SourceOfPreviousValues                  = 0x04000564, // LO M1    0
ReasonForTheAttributeModification       = 0x04000565, // CS M1    0
EscapeTriplet                           = 0x10000000, // US M3    1
RunLengthTriplet                        = 0x10000001, // US M3    1
HuffmanTableSize                        = 0x10000002, // US M1    1
HuffmanTableTriplet                     = 0x10000003, // US M3    1
ShiftTableSize                          = 0x10000004, // US M1    1
ShiftTableTriplet                       = 0x10000005, // US M3    1
ZonalMap                                = 0x10100000, // US M1TN  1
NumberOfCopies                          = 0x20000010, // IS M1    0
PrinterConfigurationSequence            = 0x2000001E, // SQ M1    0
PrintPriority                           = 0x20000020, // CS M1    0
MediumType                              = 0x20000030, // CS M1    0
FilmDestination                         = 0x20000040, // CS M1    0
FilmSessionLabel                        = 0x20000050, // LO M1    0
MemoryAllocation                        = 0x20000060, // IS M1    0
MaximumMemoryAllocation                 = 0x20000061, // IS M1    0
ColorImagePrintingFlag                  = 0x20000062, // CS M1    1
CollationFlag                           = 0x20000063, // CS M1    1
AnnotationFlag                          = 0x20000065, // CS M1    1
ImageOverlayFlag                        = 0x20000067, // CS M1    1
PresentationLUTFlag                     = 0x20000069, // CS M1    1
ImageBoxPresentationLUTFlag             = 0x2000006A, // CS M1    1
MemoryBitDepth                          = 0x200000A0, // US M1    0
PrintingBitDepth                        = 0x200000A1, // US M1    0
MediaInstalledSequence                  = 0x200000A2, // SQ M1    0
OtherMediaAvailableSequence             = 0x200000A4, // SQ M1    0
SupportedImageDisplayFormatsSequence    = 0x200000A8, // SQ M1    0
ReferencedFilmBoxSequence               = 0x20000500, // SQ M1    0
ReferencedStoredPrintSequence           = 0x20000510, // SQ M1    1
ImageDisplayFormat                      = 0x20100010, // ST M1    0
AnnotationDisplayFormatID               = 0x20100030, // CS M1    0
FilmOrientation                         = 0x20100040, // CS M1    0
FilmSizeID                              = 0x20100050, // CS M1    0
PrinterResolutionID                     = 0x20100052, // CS M1    0
DefaultPrinterResolutionID              = 0x20100054, // CS M1    0
MagnificationType                       = 0x20100060, // CS M1    0
SmoothingType                           = 0x20100080, // CS M1    0
DefaultMagnificationType                = 0x201000A6, // CS M1    0
OtherMagnificationTypesAvailable        = 0x201000A7, // CS M1TN  0
DefaultSmoothingType                    = 0x201000A8, // CS M1    0
OtherSmoothingTypesAvailable            = 0x201000A9, // CS M1TN  0
BorderDensity                           = 0x20100100, // CS M1    0
EmptyImageDensity                       = 0x20100110, // CS M1    0
MinDensity                              = 0x20100120, // US M1    0
MaxDensity                              = 0x20100130, // US M1    0
Trim                                    = 0x20100140, // CS M1    0
ConfigurationInformation                = 0x20100150, // ST M1    0
ConfigurationInformationDescription     = 0x20100152, // LT M1    0
MaximumCollatedFilms                    = 0x20100154, // IS M1    0
Illumination                            = 0x2010015E, // US M1    0
ReflectedAmbientLight                   = 0x20100160, // US M1    0
PrinterPixelSpacing                     = 0x20100376, // DS M2    0
ReferencedFilmSessionSequence           = 0x20100500, // SQ M1    0
ReferencedImageBoxSequence              = 0x20100510, // SQ M1    0
ReferencedBasicAnnotationBoxSequence    = 0x20100520, // SQ M1    0
ImageBoxPosition                        = 0x20200010, // US M1    0
Polarity                                = 0x20200020, // CS M1    0
RequestedImageSize                      = 0x20200030, // DS M1    0
RequestedDecimateCropBehavior           = 0x20200040, // CS M1    0
RequestedResolutionID                   = 0x20200050, // CS M1    0
RequestedImageSizeFlag                  = 0x202000A0, // CS M1    0
DecimateCropResult                      = 0x202000A2, // CS M1    0
BasicGrayscaleImageSequence             = 0x20200110, // SQ M1    0
BasicColorImageSequence                 = 0x20200111, // SQ M1    0
ReferencedImageOverlayBoxSequence       = 0x20200130, // SQ M1    1
ReferencedVOILUTBoxSequence             = 0x20200140, // SQ M1    1
AnnotationPosition                      = 0x20300010, // US M1    0
TextString                              = 0x20300020, // LO M1    0
ReferencedOverlayPlaneSequence          = 0x20400010, // SQ M1    1
ReferencedOverlayPlaneGroups            = 0x20400011, // US M1T99 1
OverlayPixelDataSequence                = 0x20400020, // SQ M1    1
OverlayMagnificationType                = 0x20400060, // CS M1    1
OverlaySmoothingType                    = 0x20400070, // CS M1    1
OverlayOrImageMagnification             = 0x20400072, // CS M1    1
MagnifyToNumberOfColumns                = 0x20400074, // US M1    1
OverlayForegroundDensity                = 0x20400080, // CS M1    1
OverlayBackgroundDensity                = 0x20400082, // CS M1    1
OverlayMode                             = 0x20400090, // CS M1    1
ThresholdDensity                        = 0x20400100, // CS M1    1
ReferencedImageBoxSequenceRetired       = 0x20400500, // SQ M1    1
PresentationLUTSequence                 = 0x20500010, // SQ M1    0
PresentationLUTShape                    = 0x20500020, // CS M1    0
ReferencedPresentationLUTSequence       = 0x20500500, // SQ M1    0
PrintJobID                              = 0x21000010, // SH M1    1
ExecutionStatus                         = 0x21000020, // CS M1    0
ExecutionStatusInfo                     = 0x21000030, // CS M1    0
CreationDate                            = 0x21000040, // DA M1    0
CreationTime                            = 0x21000050, // TM M1    0
Originator                              = 0x21000070, // AE M1    0
DestinationAE                           = 0x21000140, // AE M1    1
OwnerID                                 = 0x21000160, // SH M1    0
NumberOfFilms                           = 0x21000170, // IS M1    0
ReferencedPrintJobSequencePullStoredPrint = 0x21000500, // SQ M1    1
PrinterStatus                           = 0x21100010, // CS M1    0
PrinterStatusInfo                       = 0x21100020, // CS M1    0
PrinterName                             = 0x21100030, // LO M1    0
PrintQueueID                            = 0x21100099, // SH M1    1
QueueStatus                             = 0x21200010, // CS M1    1
PrintJobDescriptionSequence             = 0x21200050, // SQ M1    1
ReferencedPrintJobSequence              = 0x21200070, // SQ M1    1
PrintManagementCapabilitiesSequence     = 0x21300010, // SQ M1    1
PrinterCharacteristicsSequence          = 0x21300015, // SQ M1    1
FilmBoxContentSequence                  = 0x21300030, // SQ M1    1
ImageBoxContentSequence                 = 0x21300040, // SQ M1    1
AnnotationContentSequence               = 0x21300050, // SQ M1    1
ImageOverlayBoxContentSequence          = 0x21300060, // SQ M1    1
PresentationLUTContentSequence          = 0x21300080, // SQ M1    1
ProposedStudySequence                   = 0x213000A0, // SQ M1    1
OriginalImageSequence                   = 0x213000C0, // SQ M1    1
LabelUsingInformationExtractedFromInstances = 0x22000001, // CS M1    0
LabelText                               = 0x22000002, // UT M1    0
LabelStyleSelection                     = 0x22000003, // CS M1    0
MediaDisposition                        = 0x22000004, // LT M1    0
BarcodeValue                            = 0x22000005, // LT M1    0
BarcodeSymbology                        = 0x22000006, // CS M1    0
AllowMediaSplitting                     = 0x22000007, // CS M1    0
IncludeNonDICOMObjects                  = 0x22000008, // CS M1    0
IncludeDisplayApplication               = 0x22000009, // CS M1    0
PreserveCompositeInstancesAfterMediaCreation = 0x2200000A, // CS M1    0
TotalNumberOfPiecesOfMediaCreated       = 0x2200000B, // US M1    0
RequestedMediaApplicationProfile        = 0x2200000C, // LO M1    0
ReferencedStorageMediaSequence          = 0x2200000D, // SQ M1    0
FailureAttributes                       = 0x2200000E, // AT M1TN  0
AllowLossyCompression                   = 0x2200000F, // CS M1    0
RequestPriority                         = 0x22000020, // CS M1    0
RTImageLabel                            = 0x30020002, // SH M1    0
RTImageName                             = 0x30020003, // LO M1    0
RTImageDescription                      = 0x30020004, // ST M1    0
ReportedValuesOrigin                    = 0x3002000A, // CS M1    0
RTImagePlane                            = 0x3002000C, // CS M1    0
XRayImageReceptorTranslation            = 0x3002000D, // DS M3    0
XRayImageReceptorAngle                  = 0x3002000E, // DS M1    0
RTImageOrientation                      = 0x30020010, // DS M6    0
ImagePlanePixelSpacing                  = 0x30020011, // DS M2    0
RTImagePosition                         = 0x30020012, // DS M2    0
RadiationMachineName                    = 0x30020020, // SH M1    0
RadiationMachineSAD                     = 0x30020022, // DS M1    0
RadiationMachineSSD                     = 0x30020024, // DS M1    0
RTImageSID                              = 0x30020026, // DS M1    0
SourceToReferenceObjectDistance         = 0x30020028, // DS M1    0
FractionNumber                          = 0x30020029, // IS M1    0
ExposureSequence                        = 0x30020030, // SQ M1    0
MetersetExposure                        = 0x30020032, // DS M1    0
DiaphragmPosition                       = 0x30020034, // DS M4    0
FluenceMapSequence                      = 0x30020040, // SQ M1    0
FluenceDataSource                       = 0x30020041, // CS M1    0
FluenceDataScale                        = 0x30020042, // DS M1    0
PrimaryFluenceModeSequence              = 0x30020050, // SQ M1    0
FluenceMode                             = 0x30020051, // CS M1    0
FluenceModeID                           = 0x30020052, // SH M1    0
DVHType                                 = 0x30040001, // CS M1    0
DoseUnits                               = 0x30040002, // CS M1    0
DoseType                                = 0x30040004, // CS M1    0
SpatialTransformOfDose                  = 0x30040005, // CS M1    0
DoseComment                             = 0x30040006, // LO M1    0
NormalizationPoint                      = 0x30040008, // DS M3    0
DoseSummationType                       = 0x3004000A, // CS M1    0
GridFrameOffsetVector                   = 0x3004000C, // DS M2TN  0
DoseGridScaling                         = 0x3004000E, // DS M1    0
RTDoseROISequence                       = 0x30040010, // SQ M1    0
DoseValue                               = 0x30040012, // DS M1    0
TissueHeterogeneityCorrection           = 0x30040014, // CS M1T3  0
DVHNormalizationPoint                   = 0x30040040, // DS M3    0
DVHNormalizationDoseValue               = 0x30040042, // DS M1    0
DVHSequence                             = 0x30040050, // SQ M1    0
DVHDoseScaling                          = 0x30040052, // DS M1    0
DVHVolumeUnits                          = 0x30040054, // CS M1    0
DVHNumberOfBins                         = 0x30040056, // IS M1    0
DVHData                                 = 0x30040058, // DS M2T2N 0
DVHReferencedROISequence                = 0x30040060, // SQ M1    0
DVHROIContributionType                  = 0x30040062, // CS M1    0
DVHMinimumDose                          = 0x30040070, // DS M1    0
DVHMaximumDose                          = 0x30040072, // DS M1    0
DVHMeanDose                             = 0x30040074, // DS M1    0
StructureSetLabel                       = 0x30060002, // SH M1    0
StructureSetName                        = 0x30060004, // LO M1    0
StructureSetDescription                 = 0x30060006, // ST M1    0
StructureSetDate                        = 0x30060008, // DA M1    0
StructureSetTime                        = 0x30060009, // TM M1    0
ReferencedFrameOfReferenceSequence      = 0x30060010, // SQ M1    0
RTReferencedStudySequence               = 0x30060012, // SQ M1    0
RTReferencedSeriesSequence              = 0x30060014, // SQ M1    0
ContourImageSequence                    = 0x30060016, // SQ M1    0
PredecessorStructureSetSequence         = 0x30060018, // SQ M1    0
StructureSetROISequence                 = 0x30060020, // SQ M1    0
ROINumber                               = 0x30060022, // IS M1    0
ReferencedFrameOfReferenceUID           = 0x30060024, // UI M1    0
ROIName                                 = 0x30060026, // LO M1    0
ROIDescription                          = 0x30060028, // ST M1    0
ROIDisplayColor                         = 0x3006002A, // IS M3    0
ROIVolume                               = 0x3006002C, // DS M1    0
RTRelatedROISequence                    = 0x30060030, // SQ M1    0
RTROIRelationship                       = 0x30060033, // CS M1    0
ROIGenerationAlgorithm                  = 0x30060036, // CS M1    0
ROIGenerationDescription                = 0x30060038, // LO M1    0
ROIContourSequence                      = 0x30060039, // SQ M1    0
ContourSequence                         = 0x30060040, // SQ M1    0
ContourGeometricType                    = 0x30060042, // CS M1    0
ContourSlabThickness                    = 0x30060044, // DS M1    0
ContourOffsetVector                     = 0x30060045, // DS M3    0
NumberOfContourPoints                   = 0x30060046, // IS M1    0
ContourNumber                           = 0x30060048, // IS M1    0
AttachedContours                        = 0x30060049, // IS M1TN  0
ContourData                             = 0x30060050, // DS M3T3N 0
RTROIObservationsSequence               = 0x30060080, // SQ M1    0
ObservationNumber                       = 0x30060082, // IS M1    0
ReferencedROINumber                     = 0x30060084, // IS M1    0
ROIObservationLabel                     = 0x30060085, // SH M1    0
RTROIIdentificationCodeSequence         = 0x30060086, // SQ M1    0
ROIObservationDescription               = 0x30060088, // ST M1    0
RelatedRTROIObservationsSequence        = 0x300600A0, // SQ M1    0
RTROIInterpretedType                    = 0x300600A4, // CS M1    0
ROIInterpreter                          = 0x300600A6, // PN M1    0
ROIPhysicalPropertiesSequence           = 0x300600B0, // SQ M1    0
ROIPhysicalProperty                     = 0x300600B2, // CS M1    0
ROIPhysicalPropertyValue                = 0x300600B4, // DS M1    0
ROIElementalCompositionSequence         = 0x300600B6, // SQ M1    0
ROIElementalCompositionAtomicNumber     = 0x300600B7, // US M1    0
ROIElementalCompositionAtomicMassFraction = 0x300600B8, // FL M1    0
AdditionalRTROIIdentificationCodeSequence = 0x300600B9, // SQ M1    0
FrameOfReferenceRelationshipSequence    = 0x300600C0, // SQ M1    1
RelatedFrameOfReferenceUID              = 0x300600C2, // UI M1    1
FrameOfReferenceTransformationType      = 0x300600C4, // CS M1    1
FrameOfReferenceTransformationMatrix    = 0x300600C6, // DS M16   0
FrameOfReferenceTransformationComment   = 0x300600C8, // LO M1    0
MeasuredDoseReferenceSequence           = 0x30080010, // SQ M1    0
MeasuredDoseDescription                 = 0x30080012, // ST M1    0
MeasuredDoseType                        = 0x30080014, // CS M1    0
MeasuredDoseValue                       = 0x30080016, // DS M1    0
TreatmentSessionBeamSequence            = 0x30080020, // SQ M1    0
TreatmentSessionIonBeamSequence         = 0x30080021, // SQ M1    0
CurrentFractionNumber                   = 0x30080022, // IS M1    0
TreatmentControlPointDate               = 0x30080024, // DA M1    0
TreatmentControlPointTime               = 0x30080025, // TM M1    0
TreatmentTerminationStatus              = 0x3008002A, // CS M1    0
TreatmentTerminationCode                = 0x3008002B, // SH M1    0
TreatmentVerificationStatus             = 0x3008002C, // CS M1    0
ReferencedTreatmentRecordSequence       = 0x30080030, // SQ M1    0
SpecifiedPrimaryMeterset                = 0x30080032, // DS M1    0
SpecifiedSecondaryMeterset              = 0x30080033, // DS M1    0
DeliveredPrimaryMeterset                = 0x30080036, // DS M1    0
DeliveredSecondaryMeterset              = 0x30080037, // DS M1    0
SpecifiedTreatmentTime                  = 0x3008003A, // DS M1    0
DeliveredTreatmentTime                  = 0x3008003B, // DS M1    0
ControlPointDeliverySequence            = 0x30080040, // SQ M1    0
IonControlPointDeliverySequence         = 0x30080041, // SQ M1    0
SpecifiedMeterset                       = 0x30080042, // DS M1    0
DeliveredMeterset                       = 0x30080044, // DS M1    0
MetersetRateSet                         = 0x30080045, // FL M1    0
MetersetRateDelivered                   = 0x30080046, // FL M1    0
ScanSpotMetersetsDelivered              = 0x30080047, // FL M1TN  0
DoseRateDelivered                       = 0x30080048, // DS M1    0
TreatmentSummaryCalculatedDoseReferenceSequence = 0x30080050, // SQ M1    0
CumulativeDoseToDoseReference           = 0x30080052, // DS M1    0
FirstTreatmentDate                      = 0x30080054, // DA M1    0
MostRecentTreatmentDate                 = 0x30080056, // DA M1    0
NumberOfFractionsDelivered              = 0x3008005A, // IS M1    0
OverrideSequence                        = 0x30080060, // SQ M1    0
ParameterSequencePointer                = 0x30080061, // AT M1    0
OverrideParameterPointer                = 0x30080062, // AT M1    0
ParameterItemIndex                      = 0x30080063, // IS M1    0
MeasuredDoseReferenceNumber             = 0x30080064, // IS M1    0
ParameterPointer                        = 0x30080065, // AT M1    0
OverrideReason                          = 0x30080066, // ST M1    0
CorrectedParameterSequence              = 0x30080068, // SQ M1    0
CorrectionValue                         = 0x3008006A, // FL M1    0
CalculatedDoseReferenceSequence         = 0x30080070, // SQ M1    0
CalculatedDoseReferenceNumber           = 0x30080072, // IS M1    0
CalculatedDoseReferenceDescription      = 0x30080074, // ST M1    0
CalculatedDoseReferenceDoseValue        = 0x30080076, // DS M1    0
StartMeterset                           = 0x30080078, // DS M1    0
EndMeterset                             = 0x3008007A, // DS M1    0
ReferencedMeasuredDoseReferenceSequence = 0x30080080, // SQ M1    0
ReferencedMeasuredDoseReferenceNumber   = 0x30080082, // IS M1    0
ReferencedCalculatedDoseReferenceSequence = 0x30080090, // SQ M1    0
ReferencedCalculatedDoseReferenceNumber = 0x30080092, // IS M1    0
BeamLimitingDeviceLeafPairsSequence     = 0x300800A0, // SQ M1    0
RecordedWedgeSequence                   = 0x300800B0, // SQ M1    0
RecordedCompensatorSequence             = 0x300800C0, // SQ M1    0
RecordedBlockSequence                   = 0x300800D0, // SQ M1    0
TreatmentSummaryMeasuredDoseReferenceSequence = 0x300800E0, // SQ M1    0
RecordedSnoutSequence                   = 0x300800F0, // SQ M1    0
RecordedRangeShifterSequence            = 0x300800F2, // SQ M1    0
RecordedLateralSpreadingDeviceSequence  = 0x300800F4, // SQ M1    0
RecordedRangeModulatorSequence          = 0x300800F6, // SQ M1    0
RecordedSourceSequence                  = 0x30080100, // SQ M1    0
SourceSerialNumber                      = 0x30080105, // LO M1    0
TreatmentSessionApplicationSetupSequence = 0x30080110, // SQ M1    0
ApplicationSetupCheck                   = 0x30080116, // CS M1    0
RecordedBrachyAccessoryDeviceSequence   = 0x30080120, // SQ M1    0
ReferencedBrachyAccessoryDeviceNumber   = 0x30080122, // IS M1    0
RecordedChannelSequence                 = 0x30080130, // SQ M1    0
SpecifiedChannelTotalTime               = 0x30080132, // DS M1    0
DeliveredChannelTotalTime               = 0x30080134, // DS M1    0
SpecifiedNumberOfPulses                 = 0x30080136, // IS M1    0
DeliveredNumberOfPulses                 = 0x30080138, // IS M1    0
SpecifiedPulseRepetitionInterval        = 0x3008013A, // DS M1    0
DeliveredPulseRepetitionInterval        = 0x3008013C, // DS M1    0
RecordedSourceApplicatorSequence        = 0x30080140, // SQ M1    0
ReferencedSourceApplicatorNumber        = 0x30080142, // IS M1    0
RecordedChannelShieldSequence           = 0x30080150, // SQ M1    0
ReferencedChannelShieldNumber           = 0x30080152, // IS M1    0
BrachyControlPointDeliveredSequence     = 0x30080160, // SQ M1    0
SafePositionExitDate                    = 0x30080162, // DA M1    0
SafePositionExitTime                    = 0x30080164, // TM M1    0
SafePositionReturnDate                  = 0x30080166, // DA M1    0
SafePositionReturnTime                  = 0x30080168, // TM M1    0
PulseSpecificBrachyControlPointDeliveredSequence = 0x30080171, // SQ M1    0
PulseNumber                             = 0x30080172, // US M1    0
BrachyPulseControlPointDeliveredSequence = 0x30080173, // SQ M1    0
CurrentTreatmentStatus                  = 0x30080200, // CS M1    0
TreatmentStatusComment                  = 0x30080202, // ST M1    0
FractionGroupSummarySequence            = 0x30080220, // SQ M1    0
ReferencedFractionNumber                = 0x30080223, // IS M1    0
FractionGroupType                       = 0x30080224, // CS M1    0
BeamStopperPosition                     = 0x30080230, // CS M1    0
FractionStatusSummarySequence           = 0x30080240, // SQ M1    0
TreatmentDate                           = 0x30080250, // DA M1    0
TreatmentTime                           = 0x30080251, // TM M1    0
RTPlanLabel                             = 0x300A0002, // SH M1    0
RTPlanName                              = 0x300A0003, // LO M1    0
RTPlanDescription                       = 0x300A0004, // ST M1    0
RTPlanDate                              = 0x300A0006, // DA M1    0
RTPlanTime                              = 0x300A0007, // TM M1    0
TreatmentProtocols                      = 0x300A0009, // LO M1TN  0
PlanIntent                              = 0x300A000A, // CS M1    0
TreatmentSites                          = 0x300A000B, // LO M1TN  0
RTPlanGeometry                          = 0x300A000C, // CS M1    0
PrescriptionDescription                 = 0x300A000E, // ST M1    0
DoseReferenceSequence                   = 0x300A0010, // SQ M1    0
DoseReferenceNumber                     = 0x300A0012, // IS M1    0
DoseReferenceUID                        = 0x300A0013, // UI M1    0
DoseReferenceStructureType              = 0x300A0014, // CS M1    0
NominalBeamEnergyUnit                   = 0x300A0015, // CS M1    0
DoseReferenceDescription                = 0x300A0016, // LO M1    0
DoseReferencePointCoordinates           = 0x300A0018, // DS M3    0
NominalPriorDose                        = 0x300A001A, // DS M1    0
DoseReferenceType                       = 0x300A0020, // CS M1    0
ConstraintWeight                        = 0x300A0021, // DS M1    0
DeliveryWarningDose                     = 0x300A0022, // DS M1    0
DeliveryMaximumDose                     = 0x300A0023, // DS M1    0
TargetMinimumDose                       = 0x300A0025, // DS M1    0
TargetPrescriptionDose                  = 0x300A0026, // DS M1    0
TargetMaximumDose                       = 0x300A0027, // DS M1    0
TargetUnderdoseVolumeFraction           = 0x300A0028, // DS M1    0
OrganAtRiskFullVolumeDose               = 0x300A002A, // DS M1    0
OrganAtRiskLimitDose                    = 0x300A002B, // DS M1    0
OrganAtRiskMaximumDose                  = 0x300A002C, // DS M1    0
OrganAtRiskOverdoseVolumeFraction       = 0x300A002D, // DS M1    0
ToleranceTableSequence                  = 0x300A0040, // SQ M1    0
ToleranceTableNumber                    = 0x300A0042, // IS M1    0
ToleranceTableLabel                     = 0x300A0043, // SH M1    0
GantryAngleTolerance                    = 0x300A0044, // DS M1    0
BeamLimitingDeviceAngleTolerance        = 0x300A0046, // DS M1    0
BeamLimitingDeviceToleranceSequence     = 0x300A0048, // SQ M1    0
BeamLimitingDevicePositionTolerance     = 0x300A004A, // DS M1    0
SnoutPositionTolerance                  = 0x300A004B, // FL M1    0
PatientSupportAngleTolerance            = 0x300A004C, // DS M1    0
TableTopEccentricAngleTolerance         = 0x300A004E, // DS M1    0
TableTopPitchAngleTolerance             = 0x300A004F, // FL M1    0
TableTopRollAngleTolerance              = 0x300A0050, // FL M1    0
TableTopVerticalPositionTolerance       = 0x300A0051, // DS M1    0
TableTopLongitudinalPositionTolerance   = 0x300A0052, // DS M1    0
TableTopLateralPositionTolerance        = 0x300A0053, // DS M1    0
RTPlanRelationship                      = 0x300A0055, // CS M1    0
FractionGroupSequence                   = 0x300A0070, // SQ M1    0
FractionGroupNumber                     = 0x300A0071, // IS M1    0
FractionGroupDescription                = 0x300A0072, // LO M1    0
NumberOfFractionsPlanned                = 0x300A0078, // IS M1    0
NumberOfFractionPatternDigitsPerDay     = 0x300A0079, // IS M1    0
RepeatFractionCycleLength               = 0x300A007A, // IS M1    0
FractionPattern                         = 0x300A007B, // LT M1    0
NumberOfBeams                           = 0x300A0080, // IS M1    0
BeamDoseSpecificationPoint              = 0x300A0082, // DS M3    0
BeamDose                                = 0x300A0084, // DS M1    0
BeamMeterset                            = 0x300A0086, // DS M1    0
BeamDosePointDepth                      = 0x300A0088, // FL M1    1
BeamDosePointEquivalentDepth            = 0x300A0089, // FL M1    1
BeamDosePointSSD                        = 0x300A008A, // FL M1    1
BeamDoseMeaning                         = 0x300A008B, // CS M1    0
BeamDoseVerificationControlPointSequence = 0x300A008C, // SQ M1    0
AverageBeamDosePointDepth               = 0x300A008D, // FL M1    0
AverageBeamDosePointEquivalentDepth     = 0x300A008E, // FL M1    0
AverageBeamDosePointSSD                 = 0x300A008F, // FL M1    0
NumberOfBrachyApplicationSetups         = 0x300A00A0, // IS M1    0
BrachyApplicationSetupDoseSpecificationPoint = 0x300A00A2, // DS M3    0
BrachyApplicationSetupDose              = 0x300A00A4, // DS M1    0
BeamSequence                            = 0x300A00B0, // SQ M1    0
TreatmentMachineName                    = 0x300A00B2, // SH M1    0
PrimaryDosimeterUnit                    = 0x300A00B3, // CS M1    0
SourceAxisDistance                      = 0x300A00B4, // DS M1    0
BeamLimitingDeviceSequence              = 0x300A00B6, // SQ M1    0
RTBeamLimitingDeviceType                = 0x300A00B8, // CS M1    0
SourceToBeamLimitingDeviceDistance      = 0x300A00BA, // DS M1    0
IsocenterToBeamLimitingDeviceDistance   = 0x300A00BB, // FL M1    0
NumberOfLeafJawPairs                    = 0x300A00BC, // IS M1    0
LeafPositionBoundaries                  = 0x300A00BE, // DS M3TN  0
BeamNumber                              = 0x300A00C0, // IS M1    0
BeamName                                = 0x300A00C2, // LO M1    0
BeamDescription                         = 0x300A00C3, // ST M1    0
BeamType                                = 0x300A00C4, // CS M1    0
BeamDeliveryDurationLimit               = 0x300A00C5, // FD M1    0
RadiationType                           = 0x300A00C6, // CS M1    0
HighDoseTechniqueType                   = 0x300A00C7, // CS M1    0
ReferenceImageNumber                    = 0x300A00C8, // IS M1    0
PlannedVerificationImageSequence        = 0x300A00CA, // SQ M1    0
ImagingDeviceSpecificAcquisitionParameters = 0x300A00CC, // LO M1TN  0
TreatmentDeliveryType                   = 0x300A00CE, // CS M1    0
NumberOfWedges                          = 0x300A00D0, // IS M1    0
WedgeSequence                           = 0x300A00D1, // SQ M1    0
WedgeNumber                             = 0x300A00D2, // IS M1    0
WedgeType                               = 0x300A00D3, // CS M1    0
WedgeID                                 = 0x300A00D4, // SH M1    0
WedgeAngle                              = 0x300A00D5, // IS M1    0
WedgeFactor                             = 0x300A00D6, // DS M1    0
TotalWedgeTrayWaterEquivalentThickness  = 0x300A00D7, // FL M1    0
WedgeOrientation                        = 0x300A00D8, // DS M1    0
IsocenterToWedgeTrayDistance            = 0x300A00D9, // FL M1    0
SourceToWedgeTrayDistance               = 0x300A00DA, // DS M1    0
WedgeThinEdgePosition                   = 0x300A00DB, // FL M1    0
BolusID                                 = 0x300A00DC, // SH M1    0
BolusDescription                        = 0x300A00DD, // ST M1    0
EffectiveWedgeAngle                     = 0x300A00DE, // DS M1    0
NumberOfCompensators                    = 0x300A00E0, // IS M1    0
MaterialID                              = 0x300A00E1, // SH M1    0
TotalCompensatorTrayFactor              = 0x300A00E2, // DS M1    0
CompensatorSequence                     = 0x300A00E3, // SQ M1    0
CompensatorNumber                       = 0x300A00E4, // IS M1    0
CompensatorID                           = 0x300A00E5, // SH M1    0
SourceToCompensatorTrayDistance         = 0x300A00E6, // DS M1    0
CompensatorRows                         = 0x300A00E7, // IS M1    0
CompensatorColumns                      = 0x300A00E8, // IS M1    0
CompensatorPixelSpacing                 = 0x300A00E9, // DS M2    0
CompensatorPosition                     = 0x300A00EA, // DS M2    0
CompensatorTransmissionData             = 0x300A00EB, // DS M1TN  0
CompensatorThicknessData                = 0x300A00EC, // DS M1TN  0
NumberOfBoli                            = 0x300A00ED, // IS M1    0
CompensatorType                         = 0x300A00EE, // CS M1    0
CompensatorTrayID                       = 0x300A00EF, // SH M1    0
NumberOfBlocks                          = 0x300A00F0, // IS M1    0
TotalBlockTrayFactor                    = 0x300A00F2, // DS M1    0
TotalBlockTrayWaterEquivalentThickness  = 0x300A00F3, // FL M1    0
BlockSequence                           = 0x300A00F4, // SQ M1    0
BlockTrayID                             = 0x300A00F5, // SH M1    0
SourceToBlockTrayDistance               = 0x300A00F6, // DS M1    0
IsocenterToBlockTrayDistance            = 0x300A00F7, // FL M1    0
BlockType                               = 0x300A00F8, // CS M1    0
AccessoryCode                           = 0x300A00F9, // LO M1    0
BlockDivergence                         = 0x300A00FA, // CS M1    0
BlockMountingPosition                   = 0x300A00FB, // CS M1    0
BlockNumber                             = 0x300A00FC, // IS M1    0
BlockName                               = 0x300A00FE, // LO M1    0
BlockThickness                          = 0x300A0100, // DS M1    0
BlockTransmission                       = 0x300A0102, // DS M1    0
BlockNumberOfPoints                     = 0x300A0104, // IS M1    0
BlockData                               = 0x300A0106, // DS M2T2N 0
ApplicatorSequence                      = 0x300A0107, // SQ M1    0
ApplicatorID                            = 0x300A0108, // SH M1    0
ApplicatorType                          = 0x300A0109, // CS M1    0
ApplicatorDescription                   = 0x300A010A, // LO M1    0
CumulativeDoseReferenceCoefficient      = 0x300A010C, // DS M1    0
FinalCumulativeMetersetWeight           = 0x300A010E, // DS M1    0
NumberOfControlPoints                   = 0x300A0110, // IS M1    0
ControlPointSequence                    = 0x300A0111, // SQ M1    0
ControlPointIndex                       = 0x300A0112, // IS M1    0
NominalBeamEnergy                       = 0x300A0114, // DS M1    0
DoseRateSet                             = 0x300A0115, // DS M1    0
WedgePositionSequence                   = 0x300A0116, // SQ M1    0
WedgePosition                           = 0x300A0118, // CS M1    0
BeamLimitingDevicePositionSequence      = 0x300A011A, // SQ M1    0
LeafJawPositions                        = 0x300A011C, // DS M2T2N 0
GantryAngle                             = 0x300A011E, // DS M1    0
GantryRotationDirection                 = 0x300A011F, // CS M1    0
BeamLimitingDeviceAngle                 = 0x300A0120, // DS M1    0
BeamLimitingDeviceRotationDirection     = 0x300A0121, // CS M1    0
PatientSupportAngle                     = 0x300A0122, // DS M1    0
PatientSupportRotationDirection         = 0x300A0123, // CS M1    0
TableTopEccentricAxisDistance           = 0x300A0124, // DS M1    0
TableTopEccentricAngle                  = 0x300A0125, // DS M1    0
TableTopEccentricRotationDirection      = 0x300A0126, // CS M1    0
TableTopVerticalPosition                = 0x300A0128, // DS M1    0
TableTopLongitudinalPosition            = 0x300A0129, // DS M1    0
TableTopLateralPosition                 = 0x300A012A, // DS M1    0
IsocenterPosition                       = 0x300A012C, // DS M3    0
SurfaceEntryPoint                       = 0x300A012E, // DS M3    0
SourceToSurfaceDistance                 = 0x300A0130, // DS M1    0
AverageBeamDosePointSourceToExternalContourSurfaceDistance = 0x300A0131, // FL M1    0
SourceToExternalContourDistance         = 0x300A0132, // FL M1    0
ExternalContourEntryPoint               = 0x300A0133, // FL M3    0
CumulativeMetersetWeight                = 0x300A0134, // DS M1    0
TableTopPitchAngle                      = 0x300A0140, // FL M1    0
TableTopPitchRotationDirection          = 0x300A0142, // CS M1    0
TableTopRollAngle                       = 0x300A0144, // FL M1    0
TableTopRollRotationDirection           = 0x300A0146, // CS M1    0
HeadFixationAngle                       = 0x300A0148, // FL M1    0
GantryPitchAngle                        = 0x300A014A, // FL M1    0
GantryPitchRotationDirection            = 0x300A014C, // CS M1    0
GantryPitchAngleTolerance               = 0x300A014E, // FL M1    0
PatientSetupSequence                    = 0x300A0180, // SQ M1    0
PatientSetupNumber                      = 0x300A0182, // IS M1    0
PatientSetupLabel                       = 0x300A0183, // LO M1    0
PatientAdditionalPosition               = 0x300A0184, // LO M1    0
FixationDeviceSequence                  = 0x300A0190, // SQ M1    0
FixationDeviceType                      = 0x300A0192, // CS M1    0
FixationDeviceLabel                     = 0x300A0194, // SH M1    0
FixationDeviceDescription               = 0x300A0196, // ST M1    0
FixationDevicePosition                  = 0x300A0198, // SH M1    0
FixationDevicePitchAngle                = 0x300A0199, // FL M1    0
FixationDeviceRollAngle                 = 0x300A019A, // FL M1    0
ShieldingDeviceSequence                 = 0x300A01A0, // SQ M1    0
ShieldingDeviceType                     = 0x300A01A2, // CS M1    0
ShieldingDeviceLabel                    = 0x300A01A4, // SH M1    0
ShieldingDeviceDescription              = 0x300A01A6, // ST M1    0
ShieldingDevicePosition                 = 0x300A01A8, // SH M1    0
SetupTechnique                          = 0x300A01B0, // CS M1    0
SetupTechniqueDescription               = 0x300A01B2, // ST M1    0
SetupDeviceSequence                     = 0x300A01B4, // SQ M1    0
SetupDeviceType                         = 0x300A01B6, // CS M1    0
SetupDeviceLabel                        = 0x300A01B8, // SH M1    0
SetupDeviceDescription                  = 0x300A01BA, // ST M1    0
SetupDeviceParameter                    = 0x300A01BC, // DS M1    0
SetupReferenceDescription               = 0x300A01D0, // ST M1    0
TableTopVerticalSetupDisplacement       = 0x300A01D2, // DS M1    0
TableTopLongitudinalSetupDisplacement   = 0x300A01D4, // DS M1    0
TableTopLateralSetupDisplacement        = 0x300A01D6, // DS M1    0
BrachyTreatmentTechnique                = 0x300A0200, // CS M1    0
BrachyTreatmentType                     = 0x300A0202, // CS M1    0
TreatmentMachineSequence                = 0x300A0206, // SQ M1    0
SourceSequence                          = 0x300A0210, // SQ M1    0
SourceNumber                            = 0x300A0212, // IS M1    0
SourceType                              = 0x300A0214, // CS M1    0
SourceManufacturer                      = 0x300A0216, // LO M1    0
ActiveSourceDiameter                    = 0x300A0218, // DS M1    0
ActiveSourceLength                      = 0x300A021A, // DS M1    0
SourceModelID                           = 0x300A021B, // SH M1    0
SourceDescription                       = 0x300A021C, // LO M1    0
SourceEncapsulationNominalThickness     = 0x300A0222, // DS M1    0
SourceEncapsulationNominalTransmission  = 0x300A0224, // DS M1    0
SourceIsotopeName                       = 0x300A0226, // LO M1    0
SourceIsotopeHalfLife                   = 0x300A0228, // DS M1    0
SourceStrengthUnits                     = 0x300A0229, // CS M1    0
ReferenceAirKermaRate                   = 0x300A022A, // DS M1    0
SourceStrength                          = 0x300A022B, // DS M1    0
SourceStrengthReferenceDate             = 0x300A022C, // DA M1    0
SourceStrengthReferenceTime             = 0x300A022E, // TM M1    0
ApplicationSetupSequence                = 0x300A0230, // SQ M1    0
ApplicationSetupType                    = 0x300A0232, // CS M1    0
ApplicationSetupNumber                  = 0x300A0234, // IS M1    0
ApplicationSetupName                    = 0x300A0236, // LO M1    0
ApplicationSetupManufacturer            = 0x300A0238, // LO M1    0
TemplateNumber                          = 0x300A0240, // IS M1    0
TemplateType                            = 0x300A0242, // SH M1    0
TemplateName                            = 0x300A0244, // LO M1    0
TotalReferenceAirKerma                  = 0x300A0250, // DS M1    0
BrachyAccessoryDeviceSequence           = 0x300A0260, // SQ M1    0
BrachyAccessoryDeviceNumber             = 0x300A0262, // IS M1    0
BrachyAccessoryDeviceID                 = 0x300A0263, // SH M1    0
BrachyAccessoryDeviceType               = 0x300A0264, // CS M1    0
BrachyAccessoryDeviceName               = 0x300A0266, // LO M1    0
BrachyAccessoryDeviceNominalThickness   = 0x300A026A, // DS M1    0
BrachyAccessoryDeviceNominalTransmission = 0x300A026C, // DS M1    0
ChannelSequence                         = 0x300A0280, // SQ M1    0
ChannelNumber                           = 0x300A0282, // IS M1    0
ChannelLength                           = 0x300A0284, // DS M1    0
ChannelTotalTime                        = 0x300A0286, // DS M1    0
SourceMovementType                      = 0x300A0288, // CS M1    0
NumberOfPulses                          = 0x300A028A, // IS M1    0
PulseRepetitionInterval                 = 0x300A028C, // DS M1    0
SourceApplicatorNumber                  = 0x300A0290, // IS M1    0
SourceApplicatorID                      = 0x300A0291, // SH M1    0
SourceApplicatorType                    = 0x300A0292, // CS M1    0
SourceApplicatorName                    = 0x300A0294, // LO M1    0
SourceApplicatorLength                  = 0x300A0296, // DS M1    0
SourceApplicatorManufacturer            = 0x300A0298, // LO M1    0
SourceApplicatorWallNominalThickness    = 0x300A029C, // DS M1    0
SourceApplicatorWallNominalTransmission = 0x300A029E, // DS M1    0
SourceApplicatorStepSize                = 0x300A02A0, // DS M1    0
TransferTubeNumber                      = 0x300A02A2, // IS M1    0
TransferTubeLength                      = 0x300A02A4, // DS M1    0
ChannelShieldSequence                   = 0x300A02B0, // SQ M1    0
ChannelShieldNumber                     = 0x300A02B2, // IS M1    0
ChannelShieldID                         = 0x300A02B3, // SH M1    0
ChannelShieldName                       = 0x300A02B4, // LO M1    0
ChannelShieldNominalThickness           = 0x300A02B8, // DS M1    0
ChannelShieldNominalTransmission        = 0x300A02BA, // DS M1    0
FinalCumulativeTimeWeight               = 0x300A02C8, // DS M1    0
BrachyControlPointSequence              = 0x300A02D0, // SQ M1    0
ControlPointRelativePosition            = 0x300A02D2, // DS M1    0
ControlPoint3DPosition                  = 0x300A02D4, // DS M3    0
CumulativeTimeWeight                    = 0x300A02D6, // DS M1    0
CompensatorDivergence                   = 0x300A02E0, // CS M1    0
CompensatorMountingPosition             = 0x300A02E1, // CS M1    0
SourceToCompensatorDistance             = 0x300A02E2, // DS M1TN  0
TotalCompensatorTrayWaterEquivalentThickness = 0x300A02E3, // FL M1    0
IsocenterToCompensatorTrayDistance      = 0x300A02E4, // FL M1    0
CompensatorColumnOffset                 = 0x300A02E5, // FL M1    0
IsocenterToCompensatorDistances         = 0x300A02E6, // FL M1TN  0
CompensatorRelativeStoppingPowerRatio   = 0x300A02E7, // FL M1    0
CompensatorMillingToolDiameter          = 0x300A02E8, // FL M1    0
IonRangeCompensatorSequence             = 0x300A02EA, // SQ M1    0
CompensatorDescription                  = 0x300A02EB, // LT M1    0
RadiationMassNumber                     = 0x300A0302, // IS M1    0
RadiationAtomicNumber                   = 0x300A0304, // IS M1    0
RadiationChargeState                    = 0x300A0306, // SS M1    0
ScanMode                                = 0x300A0308, // CS M1    0
VirtualSourceAxisDistances              = 0x300A030A, // FL M2    0
SnoutSequence                           = 0x300A030C, // SQ M1    0
SnoutPosition                           = 0x300A030D, // FL M1    0
SnoutID                                 = 0x300A030F, // SH M1    0
NumberOfRangeShifters                   = 0x300A0312, // IS M1    0
RangeShifterSequence                    = 0x300A0314, // SQ M1    0
RangeShifterNumber                      = 0x300A0316, // IS M1    0
RangeShifterID                          = 0x300A0318, // SH M1    0
RangeShifterType                        = 0x300A0320, // CS M1    0
RangeShifterDescription                 = 0x300A0322, // LO M1    0
NumberOfLateralSpreadingDevices         = 0x300A0330, // IS M1    0
LateralSpreadingDeviceSequence          = 0x300A0332, // SQ M1    0
LateralSpreadingDeviceNumber            = 0x300A0334, // IS M1    0
LateralSpreadingDeviceID                = 0x300A0336, // SH M1    0
LateralSpreadingDeviceType              = 0x300A0338, // CS M1    0
LateralSpreadingDeviceDescription       = 0x300A033A, // LO M1    0
LateralSpreadingDeviceWaterEquivalentThickness = 0x300A033C, // FL M1    0
NumberOfRangeModulators                 = 0x300A0340, // IS M1    0
RangeModulatorSequence                  = 0x300A0342, // SQ M1    0
RangeModulatorNumber                    = 0x300A0344, // IS M1    0
RangeModulatorID                        = 0x300A0346, // SH M1    0
RangeModulatorType                      = 0x300A0348, // CS M1    0
RangeModulatorDescription               = 0x300A034A, // LO M1    0
BeamCurrentModulationID                 = 0x300A034C, // SH M1    0
PatientSupportType                      = 0x300A0350, // CS M1    0
PatientSupportID                        = 0x300A0352, // SH M1    0
PatientSupportAccessoryCode             = 0x300A0354, // LO M1    0
FixationLightAzimuthalAngle             = 0x300A0356, // FL M1    0
FixationLightPolarAngle                 = 0x300A0358, // FL M1    0
MetersetRate                            = 0x300A035A, // FL M1    0
RangeShifterSettingsSequence            = 0x300A0360, // SQ M1    0
RangeShifterSetting                     = 0x300A0362, // LO M1    0
IsocenterToRangeShifterDistance         = 0x300A0364, // FL M1    0
RangeShifterWaterEquivalentThickness    = 0x300A0366, // FL M1    0
LateralSpreadingDeviceSettingsSequence  = 0x300A0370, // SQ M1    0
LateralSpreadingDeviceSetting           = 0x300A0372, // LO M1    0
IsocenterToLateralSpreadingDeviceDistance = 0x300A0374, // FL M1    0
RangeModulatorSettingsSequence          = 0x300A0380, // SQ M1    0
RangeModulatorGatingStartValue          = 0x300A0382, // FL M1    0
RangeModulatorGatingStopValue           = 0x300A0384, // FL M1    0
RangeModulatorGatingStartWaterEquivalentThickness = 0x300A0386, // FL M1    0
RangeModulatorGatingStopWaterEquivalentThickness = 0x300A0388, // FL M1    0
IsocenterToRangeModulatorDistance       = 0x300A038A, // FL M1    0
ScanSpotTuneID                          = 0x300A0390, // SH M1    0
NumberOfScanSpotPositions               = 0x300A0392, // IS M1    0
ScanSpotPositionMap                     = 0x300A0394, // FL M1TN  0
ScanSpotMetersetWeights                 = 0x300A0396, // FL M1TN  0
ScanningSpotSize                        = 0x300A0398, // FL M2    0
NumberOfPaintings                       = 0x300A039A, // IS M1    0
IonToleranceTableSequence               = 0x300A03A0, // SQ M1    0
IonBeamSequence                         = 0x300A03A2, // SQ M1    0
IonBeamLimitingDeviceSequence           = 0x300A03A4, // SQ M1    0
IonBlockSequence                        = 0x300A03A6, // SQ M1    0
IonControlPointSequence                 = 0x300A03A8, // SQ M1    0
IonWedgeSequence                        = 0x300A03AA, // SQ M1    0
IonWedgePositionSequence                = 0x300A03AC, // SQ M1    0
ReferencedSetupImageSequence            = 0x300A0401, // SQ M1    0
SetupImageComment                       = 0x300A0402, // ST M1    0
MotionSynchronizationSequence           = 0x300A0410, // SQ M1    0
ControlPointOrientation                 = 0x300A0412, // FL M3    0
GeneralAccessorySequence                = 0x300A0420, // SQ M1    0
GeneralAccessoryID                      = 0x300A0421, // SH M1    0
GeneralAccessoryDescription             = 0x300A0422, // ST M1    0
GeneralAccessoryType                    = 0x300A0423, // CS M1    0
GeneralAccessoryNumber                  = 0x300A0424, // IS M1    0
SourceToGeneralAccessoryDistance        = 0x300A0425, // FL M1    0
ApplicatorGeometrySequence              = 0x300A0431, // SQ M1    0
ApplicatorApertureShape                 = 0x300A0432, // CS M1    0
ApplicatorOpening                       = 0x300A0433, // FL M1    0
ApplicatorOpeningX                      = 0x300A0434, // FL M1    0
ApplicatorOpeningY                      = 0x300A0435, // FL M1    0
SourceToApplicatorMountingPositionDistance = 0x300A0436, // FL M1    0
NumberOfBlockSlabItems                  = 0x300A0440, // IS M1    0
BlockSlabSequence                       = 0x300A0441, // SQ M1    0
BlockSlabThickness                      = 0x300A0442, // DS M1    0
BlockSlabNumber                         = 0x300A0443, // US M1    0
DeviceMotionControlSequence             = 0x300A0450, // SQ M1    0
DeviceMotionExecutionMode               = 0x300A0451, // CS M1    0
DeviceMotionObservationMode             = 0x300A0452, // CS M1    0
DeviceMotionParameterCodeSequence       = 0x300A0453, // SQ M1    0
ReferencedRTPlanSequence                = 0x300C0002, // SQ M1    0
ReferencedBeamSequence                  = 0x300C0004, // SQ M1    0
ReferencedBeamNumber                    = 0x300C0006, // IS M1    0
ReferencedReferenceImageNumber          = 0x300C0007, // IS M1    0
StartCumulativeMetersetWeight           = 0x300C0008, // DS M1    0
EndCumulativeMetersetWeight             = 0x300C0009, // DS M1    0
ReferencedBrachyApplicationSetupSequence = 0x300C000A, // SQ M1    0
ReferencedBrachyApplicationSetupNumber  = 0x300C000C, // IS M1    0
ReferencedSourceNumber                  = 0x300C000E, // IS M1    0
ReferencedFractionGroupSequence         = 0x300C0020, // SQ M1    0
ReferencedFractionGroupNumber           = 0x300C0022, // IS M1    0
ReferencedVerificationImageSequence     = 0x300C0040, // SQ M1    0
ReferencedReferenceImageSequence        = 0x300C0042, // SQ M1    0
ReferencedDoseReferenceSequence         = 0x300C0050, // SQ M1    0
ReferencedDoseReferenceNumber           = 0x300C0051, // IS M1    0
BrachyReferencedDoseReferenceSequence   = 0x300C0055, // SQ M1    0
ReferencedStructureSetSequence          = 0x300C0060, // SQ M1    0
ReferencedPatientSetupNumber            = 0x300C006A, // IS M1    0
ReferencedDoseSequence                  = 0x300C0080, // SQ M1    0
ReferencedToleranceTableNumber          = 0x300C00A0, // IS M1    0
ReferencedBolusSequence                 = 0x300C00B0, // SQ M1    0
ReferencedWedgeNumber                   = 0x300C00C0, // IS M1    0
ReferencedCompensatorNumber             = 0x300C00D0, // IS M1    0
ReferencedBlockNumber                   = 0x300C00E0, // IS M1    0
ReferencedControlPointIndex             = 0x300C00F0, // IS M1    0
ReferencedControlPointSequence          = 0x300C00F2, // SQ M1    0
ReferencedStartControlPointIndex        = 0x300C00F4, // IS M1    0
ReferencedStopControlPointIndex         = 0x300C00F6, // IS M1    0
ReferencedRangeShifterNumber            = 0x300C0100, // IS M1    0
ReferencedLateralSpreadingDeviceNumber  = 0x300C0102, // IS M1    0
ReferencedRangeModulatorNumber          = 0x300C0104, // IS M1    0
OmittedBeamTaskSequence                 = 0x300C0111, // SQ M1    0
ReasonForOmission                       = 0x300C0112, // CS M1    0
ReasonForOmissionDescription            = 0x300C0113, // LO M1    0
ApprovalStatus                          = 0x300E0002, // CS M1    0
ReviewDate                              = 0x300E0004, // DA M1    0
ReviewTime                              = 0x300E0005, // TM M1    0
ReviewerName                            = 0x300E0008, // PN M1    0
Arbitrary                               = 0x40000010, // LT M1    1
TextComments                            = 0x40004000, // LT M1    1
ResultsID                               = 0x40080040, // SH M1    1
ResultsIDIssuer                         = 0x40080042, // LO M1    1
ReferencedInterpretationSequence        = 0x40080050, // SQ M1    1
ReportProductionStatusTrial             = 0x400800FF, // CS M1    1
InterpretationRecordedDate              = 0x40080100, // DA M1    1
InterpretationRecordedTime              = 0x40080101, // TM M1    1
InterpretationRecorder                  = 0x40080102, // PN M1    1
ReferenceToRecordedSound                = 0x40080103, // LO M1    1
InterpretationTranscriptionDate         = 0x40080108, // DA M1    1
InterpretationTranscriptionTime         = 0x40080109, // TM M1    1
InterpretationTranscriber               = 0x4008010A, // PN M1    1
InterpretationText                      = 0x4008010B, // ST M1    1
InterpretationAuthor                    = 0x4008010C, // PN M1    1
InterpretationApproverSequence          = 0x40080111, // SQ M1    1
InterpretationApprovalDate              = 0x40080112, // DA M1    1
InterpretationApprovalTime              = 0x40080113, // TM M1    1
PhysicianApprovingInterpretation        = 0x40080114, // PN M1    1
InterpretationDiagnosisDescription      = 0x40080115, // LT M1    1
InterpretationDiagnosisCodeSequence     = 0x40080117, // SQ M1    1
ResultsDistributionListSequence         = 0x40080118, // SQ M1    1
DistributionName                        = 0x40080119, // PN M1    1
DistributionAddress                     = 0x4008011A, // LO M1    1
InterpretationID                        = 0x40080200, // SH M1    1
InterpretationIDIssuer                  = 0x40080202, // LO M1    1
InterpretationTypeID                    = 0x40080210, // CS M1    1
InterpretationStatusID                  = 0x40080212, // CS M1    1
Impressions                             = 0x40080300, // ST M1    1
ResultsComments                         = 0x40084000, // ST M1    1
LowEnergyDetectors                      = 0x40100001, // CS M1    DICOS
HighEnergyDetectors                     = 0x40100002, // CS M1    DICOS
DetectorGeometrySequence                = 0x40100004, // SQ M1    DICOS
ThreatROIVoxelSequence                  = 0x40101001, // SQ M1    DICOS
ThreatROIBase                           = 0x40101004, // FL M3    DICOS
ThreatROIExtents                        = 0x40101005, // FL M3    DICOS
ThreatROIBitmap                         = 0x40101006, // OB M1    DICOS
RouteSegmentID                          = 0x40101007, // SH M1    DICOS
GantryType                              = 0x40101008, // CS M1    DICOS
OOIOwnerType                            = 0x40101009, // CS M1    DICOS
RouteSegmentSequence                    = 0x4010100A, // SQ M1    DICOS
PotentialThreatObjectID                 = 0x40101010, // US M1    DICOS
ThreatSequence                          = 0x40101011, // SQ M1    DICOS
ThreatCategory                          = 0x40101012, // CS M1    DICOS
ThreatCategoryDescription               = 0x40101013, // LT M1    DICOS
ATDAbilityAssessment                    = 0x40101014, // CS M1    DICOS
ATDAssessmentFlag                       = 0x40101015, // CS M1    DICOS
ATDAssessmentProbability                = 0x40101016, // FL M1    DICOS
Mass                                    = 0x40101017, // FL M1    DICOS
Density                                 = 0x40101018, // FL M1    DICOS
ZEffective                              = 0x40101019, // FL M1    DICOS
BoardingPassID                          = 0x4010101A, // SH M1    DICOS
CenterOfMass                            = 0x4010101B, // FL M3    DICOS
CenterOfPTO                             = 0x4010101C, // FL M3    DICOS
BoundingPolygon                         = 0x4010101D, // FL M6TN  DICOS
RouteSegmentStartLocationID             = 0x4010101E, // SH M1    DICOS
RouteSegmentEndLocationID               = 0x4010101F, // SH M1    DICOS
RouteSegmentLocationIDType              = 0x40101020, // CS M1    DICOS
AbortReason                             = 0x40101021, // CS M1TN  DICOS
VolumeOfPTO                             = 0x40101023, // FL M1    DICOS
AbortFlag                               = 0x40101024, // CS M1    DICOS
RouteSegmentStartTime                   = 0x40101025, // DT M1    DICOS
RouteSegmentEndTime                     = 0x40101026, // DT M1    DICOS
TDRType                                 = 0x40101027, // CS M1    DICOS
InternationalRouteSegment               = 0x40101028, // CS M1    DICOS
ThreatDetectionAlgorithmandVersion      = 0x40101029, // LO M1TN  DICOS
AssignedLocation                        = 0x4010102A, // SH M1    DICOS
AlarmDecisionTime                       = 0x4010102B, // DT M1    DICOS
AlarmDecision                           = 0x40101031, // CS M1    DICOS
NumberOfTotalObjects                    = 0x40101033, // US M1    DICOS
NumberOfAlarmObjects                    = 0x40101034, // US M1    DICOS
PTORepresentationSequence               = 0x40101037, // SQ M1    DICOS
ATDAssessmentSequence                   = 0x40101038, // SQ M1    DICOS
TIPType                                 = 0x40101039, // CS M1    DICOS
DICOSVersion                            = 0x4010103A, // CS M1    DICOS
OOIOwnerCreationTime                    = 0x40101041, // DT M1    DICOS
OOIType                                 = 0x40101042, // CS M1    DICOS
OOISize                                 = 0x40101043, // FL M3    DICOS
AcquisitionStatus                       = 0x40101044, // CS M1    DICOS
BasisMaterialsCodeSequence              = 0x40101045, // SQ M1    DICOS
PhantomType                             = 0x40101046, // CS M1    DICOS
OOIOwnerSequence                        = 0x40101047, // SQ M1    DICOS
ScanType                                = 0x40101048, // CS M1    DICOS
ItineraryID                             = 0x40101051, // LO M1    DICOS
ItineraryIDType                         = 0x40101052, // SH M1    DICOS
ItineraryIDAssigningAuthority           = 0x40101053, // LO M1    DICOS
RouteID                                 = 0x40101054, // SH M1    DICOS
RouteIDAssigningAuthority               = 0x40101055, // SH M1    DICOS
InboundArrivalType                      = 0x40101056, // CS M1    DICOS
CarrierID                               = 0x40101058, // SH M1    DICOS
CarrierIDAssigningAuthority             = 0x40101059, // CS M1    DICOS
SourceOrientation                       = 0x40101060, // FL M3    DICOS
SourcePosition                          = 0x40101061, // FL M3    DICOS
BeltHeight                              = 0x40101062, // FL M1    DICOS
AlgorithmRoutingCodeSequence            = 0x40101064, // SQ M1    DICOS
TransportClassification                 = 0x40101067, // CS M1    DICOS
OOITypeDescriptor                       = 0x40101068, // LT M1    DICOS
TotalProcessingTime                     = 0x40101069, // FL M1    DICOS
DetectorCalibrationData                 = 0x4010106C, // OB M1    DICOS
AdditionalScreeningPerformed            = 0x4010106D, // CS M1    DICOS
AdditionalInspectionSelectionCriteria   = 0x4010106E, // CS M1    DICOS
AdditionalInspectionMethodSequence      = 0x4010106F, // SQ M1    DICOS
AITDeviceType                           = 0x40101070, // CS M1    DICOS
QRMeasurementsSequence                  = 0x40101071, // SQ M1    DICOS
TargetMaterialSequence                  = 0x40101072, // SQ M1    DICOS
SNRThreshold                            = 0x40101073, // FD M1    DICOS
ImageScaleRepresentation                = 0x40101075, // DS M1    DICOS
ReferencedPTOSequence                   = 0x40101076, // SQ M1    DICOS
ReferencedTDRInstanceSequence           = 0x40101077, // SQ M1    DICOS
PTOLocationDescription                  = 0x40101078, // ST M1    DICOS
AnomalyLocatorIndicatorSequence         = 0x40101079, // SQ M1    DICOS
AnomalyLocatorIndicator                 = 0x4010107A, // FL M3    DICOS
PTORegionSequence                       = 0x4010107B, // SQ M1    DICOS
InspectionSelectionCriteria             = 0x4010107C, // CS M1    DICOS
SecondaryInspectionMethodSequence       = 0x4010107D, // SQ M1    DICOS
PRCSToRCSOrientation                    = 0x4010107E, // DS M6    DICOS
MACParametersSequence                   = 0x4FFE0001, // SQ M1    0
CurveDimensions                         = 0x50000005, // US M1    1
NumberOfPoints                          = 0x50000010, // US M1    1
TypeOfData                              = 0x50000020, // CS M1    1
CurveDescription                        = 0x50000022, // LO M1    1
AxisUnits                               = 0x50000030, // SH M1TN  1
AxisLabels                              = 0x50000040, // SH M1TN  1
DataValueRepresentation                 = 0x50000103, // US M1    1
MinimumCoordinateValue                  = 0x50000104, // US M1TN  1
MaximumCoordinateValue                  = 0x50000105, // US M1TN  1
CurveRange                              = 0x50000106, // SH M1TN  1
CurveDataDescriptor                     = 0x50000110, // US M1TN  1
CoordinateStartValue                    = 0x50000112, // US M1TN  1
CoordinateStepValue                     = 0x50000114, // US M1TN  1
CurveActivationLayer                    = 0x50001001, // CS M1    1
AudioType                               = 0x50002000, // US M1    1
AudioSampleFormat                       = 0x50002002, // US M1    1
NumberOfChannels                        = 0x50002004, // US M1    1
NumberOfSamples                         = 0x50002006, // UL M1    1
SampleRate                              = 0x50002008, // UL M1    1
TotalTime                               = 0x5000200A, // UL M1    1
AudioSampleData                         = 0x5000200C, // OX M1    1
AudioComments                           = 0x5000200E, // LT M1    1
CurveLabel                              = 0x50002500, // LO M1    1
CurveReferencedOverlaySequence          = 0x50002600, // SQ M1    1
CurveReferencedOverlayGroup             = 0x50002610, // US M1    1
CurveData                               = 0x50003000, // OX M1    1
CurveDimensions2                        = 0x50020005, // US M1    1
NumberOfPoints2                         = 0x50020010, // US M1    1
TypeOfData2                             = 0x50020020, // CS M1    1
CurveDescription2                       = 0x50020022, // LO M1    1
AxisUnits2                              = 0x50020030, // SH M1TN  1
AxisLabels2                             = 0x50020040, // SH M1TN  1
DataValueRepresentation2                = 0x50020103, // US M1    1
MinimumCoordinateValue2                 = 0x50020104, // US M1TN  1
MaximumCoordinateValue2                 = 0x50020105, // US M1TN  1
CurveRange2                             = 0x50020106, // SH M1TN  1
CurveDataDescriptor2                    = 0x50020110, // US M1TN  1
CoordinateStartValue2                   = 0x50020112, // US M1TN  1
CoordinateStepValue2                    = 0x50020114, // US M1TN  1
CurveActivationLayer2                   = 0x50021001, // CS M1    1
AudioType2                              = 0x50022000, // US M1    1
AudioSampleFormat2                      = 0x50022002, // US M1    1
NumberOfChannels2                       = 0x50022004, // US M1    1
NumberOfSamples2                        = 0x50022006, // UL M1    1
SampleRate2                             = 0x50022008, // UL M1    1
TotalTime2                              = 0x5002200A, // UL M1    1
AudioSampleData2                        = 0x5002200C, // OX M1    1
AudioComments2                          = 0x5002200E, // LT M1    1
CurveLabel2                             = 0x50022500, // LO M1    1
CurveReferencedOverlaySequence2         = 0x50022600, // SQ M1    1
CurveReferencedOverlayGroup2            = 0x50022610, // US M1    1
CurveData2                              = 0x50023000, // OX M1    1
CurveDimensions3                        = 0x50040005, // US M1    1
NumberOfPoints3                         = 0x50040010, // US M1    1
TypeOfData3                             = 0x50040020, // CS M1    1
CurveDescription3                       = 0x50040022, // LO M1    1
AxisUnits3                              = 0x50040030, // SH M1TN  1
AxisLabels3                             = 0x50040040, // SH M1TN  1
DataValueRepresentation3                = 0x50040103, // US M1    1
MinimumCoordinateValue3                 = 0x50040104, // US M1TN  1
MaximumCoordinateValue3                 = 0x50040105, // US M1TN  1
CurveRange3                             = 0x50040106, // SH M1TN  1
CurveDataDescriptor3                    = 0x50040110, // US M1TN  1
CoordinateStartValue3                   = 0x50040112, // US M1TN  1
CoordinateStepValue3                    = 0x50040114, // US M1TN  1
CurveActivationLayer3                   = 0x50041001, // CS M1    1
AudioType3                              = 0x50042000, // US M1    1
AudioSampleFormat3                      = 0x50042002, // US M1    1
NumberOfChannels3                       = 0x50042004, // US M1    1
NumberOfSamples3                        = 0x50042006, // UL M1    1
SampleRate3                             = 0x50042008, // UL M1    1
TotalTime3                              = 0x5004200A, // UL M1    1
AudioSampleData3                        = 0x5004200C, // OX M1    1
AudioComments3                          = 0x5004200E, // LT M1    1
CurveLabel3                             = 0x50042500, // LO M1    1
CurveReferencedOverlaySequence3         = 0x50042600, // SQ M1    1
CurveReferencedOverlayGroup3            = 0x50042610, // US M1    1
CurveData3                              = 0x50043000, // OX M1    1
CurveDimensions4                        = 0x50060005, // US M1    1
NumberOfPoints4                         = 0x50060010, // US M1    1
TypeOfData4                             = 0x50060020, // CS M1    1
CurveDescription4                       = 0x50060022, // LO M1    1
AxisUnits4                              = 0x50060030, // SH M1TN  1
AxisLabels4                             = 0x50060040, // SH M1TN  1
DataValueRepresentation4                = 0x50060103, // US M1    1
MinimumCoordinateValue4                 = 0x50060104, // US M1TN  1
MaximumCoordinateValue4                 = 0x50060105, // US M1TN  1
CurveRange4                             = 0x50060106, // SH M1TN  1
CurveDataDescriptor4                    = 0x50060110, // US M1TN  1
CoordinateStartValue4                   = 0x50060112, // US M1TN  1
CoordinateStepValue4                    = 0x50060114, // US M1TN  1
CurveActivationLayer4                   = 0x50061001, // CS M1    1
AudioType4                              = 0x50062000, // US M1    1
AudioSampleFormat4                      = 0x50062002, // US M1    1
NumberOfChannels4                       = 0x50062004, // US M1    1
NumberOfSamples4                        = 0x50062006, // UL M1    1
SampleRate4                             = 0x50062008, // UL M1    1
TotalTime4                              = 0x5006200A, // UL M1    1
AudioSampleData4                        = 0x5006200C, // OX M1    1
AudioComments4                          = 0x5006200E, // LT M1    1
CurveLabel4                             = 0x50062500, // LO M1    1
CurveReferencedOverlaySequence4         = 0x50062600, // SQ M1    1
CurveReferencedOverlayGroup4            = 0x50062610, // US M1    1
CurveData4                              = 0x50063000, // OX M1    1
CurveDimensions5                        = 0x50080005, // US M1    1
NumberOfPoints5                         = 0x50080010, // US M1    1
TypeOfData5                             = 0x50080020, // CS M1    1
CurveDescription5                       = 0x50080022, // LO M1    1
AxisUnits5                              = 0x50080030, // SH M1TN  1
AxisLabels5                             = 0x50080040, // SH M1TN  1
DataValueRepresentation5                = 0x50080103, // US M1    1
MinimumCoordinateValue5                 = 0x50080104, // US M1TN  1
MaximumCoordinateValue5                 = 0x50080105, // US M1TN  1
CurveRange5                             = 0x50080106, // SH M1TN  1
CurveDataDescriptor5                    = 0x50080110, // US M1TN  1
CoordinateStartValue5                   = 0x50080112, // US M1TN  1
CoordinateStepValue5                    = 0x50080114, // US M1TN  1
CurveActivationLayer5                   = 0x50081001, // CS M1    1
AudioType5                              = 0x50082000, // US M1    1
AudioSampleFormat5                      = 0x50082002, // US M1    1
NumberOfChannels5                       = 0x50082004, // US M1    1
NumberOfSamples5                        = 0x50082006, // UL M1    1
SampleRate5                             = 0x50082008, // UL M1    1
TotalTime5                              = 0x5008200A, // UL M1    1
AudioSampleData5                        = 0x5008200C, // OX M1    1
AudioComments5                          = 0x5008200E, // LT M1    1
CurveLabel5                             = 0x50082500, // LO M1    1
CurveReferencedOverlaySequence5         = 0x50082600, // SQ M1    1
CurveReferencedOverlayGroup5            = 0x50082610, // US M1    1
CurveData5                              = 0x50083000, // OX M1    1
CurveDimensions6                        = 0x500A0005, // US M1    1
NumberOfPoints6                         = 0x500A0010, // US M1    1
TypeOfData6                             = 0x500A0020, // CS M1    1
CurveDescription6                       = 0x500A0022, // LO M1    1
AxisUnits6                              = 0x500A0030, // SH M1TN  1
AxisLabels6                             = 0x500A0040, // SH M1TN  1
DataValueRepresentation6                = 0x500A0103, // US M1    1
MinimumCoordinateValue6                 = 0x500A0104, // US M1TN  1
MaximumCoordinateValue6                 = 0x500A0105, // US M1TN  1
CurveRange6                             = 0x500A0106, // SH M1TN  1
CurveDataDescriptor6                    = 0x500A0110, // US M1TN  1
CoordinateStartValue6                   = 0x500A0112, // US M1TN  1
CoordinateStepValue6                    = 0x500A0114, // US M1TN  1
CurveActivationLayer6                   = 0x500A1001, // CS M1    1
AudioType6                              = 0x500A2000, // US M1    1
AudioSampleFormat6                      = 0x500A2002, // US M1    1
NumberOfChannels6                       = 0x500A2004, // US M1    1
NumberOfSamples6                        = 0x500A2006, // UL M1    1
SampleRate6                             = 0x500A2008, // UL M1    1
TotalTime6                              = 0x500A200A, // UL M1    1
AudioSampleData6                        = 0x500A200C, // OX M1    1
AudioComments6                          = 0x500A200E, // LT M1    1
CurveLabel6                             = 0x500A2500, // LO M1    1
CurveReferencedOverlaySequence6         = 0x500A2600, // SQ M1    1
CurveReferencedOverlayGroup6            = 0x500A2610, // US M1    1
CurveData6                              = 0x500A3000, // OX M1    1
CurveDimensions7                        = 0x500C0005, // US M1    1
NumberOfPoints7                         = 0x500C0010, // US M1    1
TypeOfData7                             = 0x500C0020, // CS M1    1
CurveDescription7                       = 0x500C0022, // LO M1    1
AxisUnits7                              = 0x500C0030, // SH M1TN  1
AxisLabels7                             = 0x500C0040, // SH M1TN  1
DataValueRepresentation7                = 0x500C0103, // US M1    1
MinimumCoordinateValue7                 = 0x500C0104, // US M1TN  1
MaximumCoordinateValue7                 = 0x500C0105, // US M1TN  1
CurveRange7                             = 0x500C0106, // SH M1TN  1
CurveDataDescriptor7                    = 0x500C0110, // US M1TN  1
CoordinateStartValue7                   = 0x500C0112, // US M1TN  1
CoordinateStepValue7                    = 0x500C0114, // US M1TN  1
CurveActivationLayer7                   = 0x500C1001, // CS M1    1
AudioType7                              = 0x500C2000, // US M1    1
AudioSampleFormat7                      = 0x500C2002, // US M1    1
NumberOfChannels7                       = 0x500C2004, // US M1    1
NumberOfSamples7                        = 0x500C2006, // UL M1    1
SampleRate7                             = 0x500C2008, // UL M1    1
TotalTime7                              = 0x500C200A, // UL M1    1
AudioSampleData7                        = 0x500C200C, // OX M1    1
AudioComments7                          = 0x500C200E, // LT M1    1
CurveLabel7                             = 0x500C2500, // LO M1    1
CurveReferencedOverlaySequence7         = 0x500C2600, // SQ M1    1
CurveReferencedOverlayGroup7            = 0x500C2610, // US M1    1
CurveData7                              = 0x500C3000, // OX M1    1
CurveDimensions8                        = 0x500E0005, // US M1    1
NumberOfPoints8                         = 0x500E0010, // US M1    1
TypeOfData8                             = 0x500E0020, // CS M1    1
CurveDescription8                       = 0x500E0022, // LO M1    1
AxisUnits8                              = 0x500E0030, // SH M1TN  1
AxisLabels8                             = 0x500E0040, // SH M1TN  1
DataValueRepresentation8                = 0x500E0103, // US M1    1
MinimumCoordinateValue8                 = 0x500E0104, // US M1TN  1
MaximumCoordinateValue8                 = 0x500E0105, // US M1TN  1
CurveRange8                             = 0x500E0106, // SH M1TN  1
CurveDataDescriptor8                    = 0x500E0110, // US M1TN  1
CoordinateStartValue8                   = 0x500E0112, // US M1TN  1
CoordinateStepValue8                    = 0x500E0114, // US M1TN  1
CurveActivationLayer8                   = 0x500E1001, // CS M1    1
AudioType8                              = 0x500E2000, // US M1    1
AudioSampleFormat8                      = 0x500E2002, // US M1    1
NumberOfChannels8                       = 0x500E2004, // US M1    1
NumberOfSamples8                        = 0x500E2006, // UL M1    1
SampleRate8                             = 0x500E2008, // UL M1    1
TotalTime8                              = 0x500E200A, // UL M1    1
AudioSampleData8                        = 0x500E200C, // OX M1    1
AudioComments8                          = 0x500E200E, // LT M1    1
CurveLabel8                             = 0x500E2500, // LO M1    1
CurveReferencedOverlaySequence8         = 0x500E2600, // SQ M1    1
CurveReferencedOverlayGroup8            = 0x500E2610, // US M1    1
CurveData8                              = 0x500E3000, // OX M1    1
CurveDimensions9                        = 0x50100005, // US M1    1
NumberOfPoints9                         = 0x50100010, // US M1    1
TypeOfData9                             = 0x50100020, // CS M1    1
CurveDescription9                       = 0x50100022, // LO M1    1
AxisUnits9                              = 0x50100030, // SH M1TN  1
AxisLabels9                             = 0x50100040, // SH M1TN  1
DataValueRepresentation9                = 0x50100103, // US M1    1
MinimumCoordinateValue9                 = 0x50100104, // US M1TN  1
MaximumCoordinateValue9                 = 0x50100105, // US M1TN  1
CurveRange9                             = 0x50100106, // SH M1TN  1
CurveDataDescriptor9                    = 0x50100110, // US M1TN  1
CoordinateStartValue9                   = 0x50100112, // US M1TN  1
CoordinateStepValue9                    = 0x50100114, // US M1TN  1
CurveActivationLayer9                   = 0x50101001, // CS M1    1
AudioType9                              = 0x50102000, // US M1    1
AudioSampleFormat9                      = 0x50102002, // US M1    1
NumberOfChannels9                       = 0x50102004, // US M1    1
NumberOfSamples9                        = 0x50102006, // UL M1    1
SampleRate9                             = 0x50102008, // UL M1    1
TotalTime9                              = 0x5010200A, // UL M1    1
AudioSampleData9                        = 0x5010200C, // OX M1    1
AudioComments9                          = 0x5010200E, // LT M1    1
CurveLabel9                             = 0x50102500, // LO M1    1
CurveReferencedOverlaySequence9         = 0x50102600, // SQ M1    1
CurveReferencedOverlayGroup9            = 0x50102610, // US M1    1
CurveData9                              = 0x50103000, // OX M1    1
CurveDimensions10                       = 0x50120005, // US M1    1
NumberOfPoints10                        = 0x50120010, // US M1    1
TypeOfData10                            = 0x50120020, // CS M1    1
CurveDescription10                      = 0x50120022, // LO M1    1
AxisUnits10                             = 0x50120030, // SH M1TN  1
AxisLabels10                            = 0x50120040, // SH M1TN  1
DataValueRepresentation10               = 0x50120103, // US M1    1
MinimumCoordinateValue10                = 0x50120104, // US M1TN  1
MaximumCoordinateValue10                = 0x50120105, // US M1TN  1
CurveRange10                            = 0x50120106, // SH M1TN  1
CurveDataDescriptor10                   = 0x50120110, // US M1TN  1
CoordinateStartValue10                  = 0x50120112, // US M1TN  1
CoordinateStepValue10                   = 0x50120114, // US M1TN  1
CurveActivationLayer10                  = 0x50121001, // CS M1    1
AudioType10                             = 0x50122000, // US M1    1
AudioSampleFormat10                     = 0x50122002, // US M1    1
NumberOfChannels10                      = 0x50122004, // US M1    1
NumberOfSamples10                       = 0x50122006, // UL M1    1
SampleRate10                            = 0x50122008, // UL M1    1
TotalTime10                             = 0x5012200A, // UL M1    1
AudioSampleData10                       = 0x5012200C, // OX M1    1
AudioComments10                         = 0x5012200E, // LT M1    1
CurveLabel10                            = 0x50122500, // LO M1    1
CurveReferencedOverlaySequence10        = 0x50122600, // SQ M1    1
CurveReferencedOverlayGroup10           = 0x50122610, // US M1    1
CurveData10                             = 0x50123000, // OX M1    1
CurveDimensions11                       = 0x50140005, // US M1    1
NumberOfPoints11                        = 0x50140010, // US M1    1
TypeOfData11                            = 0x50140020, // CS M1    1
CurveDescription11                      = 0x50140022, // LO M1    1
AxisUnits11                             = 0x50140030, // SH M1TN  1
AxisLabels11                            = 0x50140040, // SH M1TN  1
DataValueRepresentation11               = 0x50140103, // US M1    1
MinimumCoordinateValue11                = 0x50140104, // US M1TN  1
MaximumCoordinateValue11                = 0x50140105, // US M1TN  1
CurveRange11                            = 0x50140106, // SH M1TN  1
CurveDataDescriptor11                   = 0x50140110, // US M1TN  1
CoordinateStartValue11                  = 0x50140112, // US M1TN  1
CoordinateStepValue11                   = 0x50140114, // US M1TN  1
CurveActivationLayer11                  = 0x50141001, // CS M1    1
AudioType11                             = 0x50142000, // US M1    1
AudioSampleFormat11                     = 0x50142002, // US M1    1
NumberOfChannels11                      = 0x50142004, // US M1    1
NumberOfSamples11                       = 0x50142006, // UL M1    1
SampleRate11                            = 0x50142008, // UL M1    1
TotalTime11                             = 0x5014200A, // UL M1    1
AudioSampleData11                       = 0x5014200C, // OX M1    1
AudioComments11                         = 0x5014200E, // LT M1    1
CurveLabel11                            = 0x50142500, // LO M1    1
CurveReferencedOverlaySequence11        = 0x50142600, // SQ M1    1
CurveReferencedOverlayGroup11           = 0x50142610, // US M1    1
CurveData11                             = 0x50143000, // OX M1    1
CurveDimensions12                       = 0x50160005, // US M1    1
NumberOfPoints12                        = 0x50160010, // US M1    1
TypeOfData12                            = 0x50160020, // CS M1    1
CurveDescription12                      = 0x50160022, // LO M1    1
AxisUnits12                             = 0x50160030, // SH M1TN  1
AxisLabels12                            = 0x50160040, // SH M1TN  1
DataValueRepresentation12               = 0x50160103, // US M1    1
MinimumCoordinateValue12                = 0x50160104, // US M1TN  1
MaximumCoordinateValue12                = 0x50160105, // US M1TN  1
CurveRange12                            = 0x50160106, // SH M1TN  1
CurveDataDescriptor12                   = 0x50160110, // US M1TN  1
CoordinateStartValue12                  = 0x50160112, // US M1TN  1
CoordinateStepValue12                   = 0x50160114, // US M1TN  1
CurveActivationLayer12                  = 0x50161001, // CS M1    1
AudioType12                             = 0x50162000, // US M1    1
AudioSampleFormat12                     = 0x50162002, // US M1    1
NumberOfChannels12                      = 0x50162004, // US M1    1
NumberOfSamples12                       = 0x50162006, // UL M1    1
SampleRate12                            = 0x50162008, // UL M1    1
TotalTime12                             = 0x5016200A, // UL M1    1
AudioSampleData12                       = 0x5016200C, // OX M1    1
AudioComments12                         = 0x5016200E, // LT M1    1
CurveLabel12                            = 0x50162500, // LO M1    1
CurveReferencedOverlaySequence12        = 0x50162600, // SQ M1    1
CurveReferencedOverlayGroup12           = 0x50162610, // US M1    1
CurveData12                             = 0x50163000, // OX M1    1
CurveDimensions13                       = 0x50180005, // US M1    1
NumberOfPoints13                        = 0x50180010, // US M1    1
TypeOfData13                            = 0x50180020, // CS M1    1
CurveDescription13                      = 0x50180022, // LO M1    1
AxisUnits13                             = 0x50180030, // SH M1TN  1
AxisLabels13                            = 0x50180040, // SH M1TN  1
DataValueRepresentation13               = 0x50180103, // US M1    1
MinimumCoordinateValue13                = 0x50180104, // US M1TN  1
MaximumCoordinateValue13                = 0x50180105, // US M1TN  1
CurveRange13                            = 0x50180106, // SH M1TN  1
CurveDataDescriptor13                   = 0x50180110, // US M1TN  1
CoordinateStartValue13                  = 0x50180112, // US M1TN  1
CoordinateStepValue13                   = 0x50180114, // US M1TN  1
CurveActivationLayer13                  = 0x50181001, // CS M1    1
AudioType13                             = 0x50182000, // US M1    1
AudioSampleFormat13                     = 0x50182002, // US M1    1
NumberOfChannels13                      = 0x50182004, // US M1    1
NumberOfSamples13                       = 0x50182006, // UL M1    1
SampleRate13                            = 0x50182008, // UL M1    1
TotalTime13                             = 0x5018200A, // UL M1    1
AudioSampleData13                       = 0x5018200C, // OX M1    1
AudioComments13                         = 0x5018200E, // LT M1    1
CurveLabel13                            = 0x50182500, // LO M1    1
CurveReferencedOverlaySequence13        = 0x50182600, // SQ M1    1
CurveReferencedOverlayGroup13           = 0x50182610, // US M1    1
CurveData13                             = 0x50183000, // OX M1    1
CurveDimensions14                       = 0x501A0005, // US M1    1
NumberOfPoints14                        = 0x501A0010, // US M1    1
TypeOfData14                            = 0x501A0020, // CS M1    1
CurveDescription14                      = 0x501A0022, // LO M1    1
AxisUnits14                             = 0x501A0030, // SH M1TN  1
AxisLabels14                            = 0x501A0040, // SH M1TN  1
DataValueRepresentation14               = 0x501A0103, // US M1    1
MinimumCoordinateValue14                = 0x501A0104, // US M1TN  1
MaximumCoordinateValue14                = 0x501A0105, // US M1TN  1
CurveRange14                            = 0x501A0106, // SH M1TN  1
CurveDataDescriptor14                   = 0x501A0110, // US M1TN  1
CoordinateStartValue14                  = 0x501A0112, // US M1TN  1
CoordinateStepValue14                   = 0x501A0114, // US M1TN  1
CurveActivationLayer14                  = 0x501A1001, // CS M1    1
AudioType14                             = 0x501A2000, // US M1    1
AudioSampleFormat14                     = 0x501A2002, // US M1    1
NumberOfChannels14                      = 0x501A2004, // US M1    1
NumberOfSamples14                       = 0x501A2006, // UL M1    1
SampleRate14                            = 0x501A2008, // UL M1    1
TotalTime14                             = 0x501A200A, // UL M1    1
AudioSampleData14                       = 0x501A200C, // OX M1    1
AudioComments14                         = 0x501A200E, // LT M1    1
CurveLabel14                            = 0x501A2500, // LO M1    1
CurveReferencedOverlaySequence14        = 0x501A2600, // SQ M1    1
CurveReferencedOverlayGroup14           = 0x501A2610, // US M1    1
CurveData14                             = 0x501A3000, // OX M1    1
CurveDimensions15                       = 0x501C0005, // US M1    1
NumberOfPoints15                        = 0x501C0010, // US M1    1
TypeOfData15                            = 0x501C0020, // CS M1    1
CurveDescription15                      = 0x501C0022, // LO M1    1
AxisUnits15                             = 0x501C0030, // SH M1TN  1
AxisLabels15                            = 0x501C0040, // SH M1TN  1
DataValueRepresentation15               = 0x501C0103, // US M1    1
MinimumCoordinateValue15                = 0x501C0104, // US M1TN  1
MaximumCoordinateValue15                = 0x501C0105, // US M1TN  1
CurveRange15                            = 0x501C0106, // SH M1TN  1
CurveDataDescriptor15                   = 0x501C0110, // US M1TN  1
CoordinateStartValue15                  = 0x501C0112, // US M1TN  1
CoordinateStepValue15                   = 0x501C0114, // US M1TN  1
CurveActivationLayer15                  = 0x501C1001, // CS M1    1
AudioType15                             = 0x501C2000, // US M1    1
AudioSampleFormat15                     = 0x501C2002, // US M1    1
NumberOfChannels15                      = 0x501C2004, // US M1    1
NumberOfSamples15                       = 0x501C2006, // UL M1    1
SampleRate15                            = 0x501C2008, // UL M1    1
TotalTime15                             = 0x501C200A, // UL M1    1
AudioSampleData15                       = 0x501C200C, // OX M1    1
AudioComments15                         = 0x501C200E, // LT M1    1
CurveLabel15                            = 0x501C2500, // LO M1    1
CurveReferencedOverlaySequence15        = 0x501C2600, // SQ M1    1
CurveReferencedOverlayGroup15           = 0x501C2610, // US M1    1
CurveData15                             = 0x501C3000, // OX M1    1
CurveDimensions16                       = 0x501E0005, // US M1    1
NumberOfPoints16                        = 0x501E0010, // US M1    1
TypeOfData16                            = 0x501E0020, // CS M1    1
CurveDescription16                      = 0x501E0022, // LO M1    1
AxisUnits16                             = 0x501E0030, // SH M1TN  1
AxisLabels16                            = 0x501E0040, // SH M1TN  1
DataValueRepresentation16               = 0x501E0103, // US M1    1
MinimumCoordinateValue16                = 0x501E0104, // US M1TN  1
MaximumCoordinateValue16                = 0x501E0105, // US M1TN  1
CurveRange16                            = 0x501E0106, // SH M1TN  1
CurveDataDescriptor16                   = 0x501E0110, // US M1TN  1
CoordinateStartValue16                  = 0x501E0112, // US M1TN  1
CoordinateStepValue16                   = 0x501E0114, // US M1TN  1
CurveActivationLayer16                  = 0x501E1001, // CS M1    1
AudioType16                             = 0x501E2000, // US M1    1
AudioSampleFormat16                     = 0x501E2002, // US M1    1
NumberOfChannels16                      = 0x501E2004, // US M1    1
NumberOfSamples16                       = 0x501E2006, // UL M1    1
SampleRate16                            = 0x501E2008, // UL M1    1
TotalTime16                             = 0x501E200A, // UL M1    1
AudioSampleData16                       = 0x501E200C, // OX M1    1
AudioComments16                         = 0x501E200E, // LT M1    1
CurveLabel16                            = 0x501E2500, // LO M1    1
CurveReferencedOverlaySequence16        = 0x501E2600, // SQ M1    1
CurveReferencedOverlayGroup16           = 0x501E2610, // US M1    1
CurveData16                             = 0x501E3000, // OX M1    1
SharedFunctionalGroupsSequence          = 0x52009229, // SQ M1    0
PerFrameFunctionalGroupsSequence        = 0x52009230, // SQ M1    0
WaveformSequence                        = 0x54000100, // SQ M1    0
ChannelMinimumValue                     = 0x54000110, // OX M1    0
ChannelMaximumValue                     = 0x54000112, // OX M1    0
WaveformBitsAllocated                   = 0x54001004, // US M1    0
WaveformSampleInterpretation            = 0x54001006, // CS M1    0
WaveformPaddingValue                    = 0x5400100A, // OX M1    0
WaveformData                            = 0x54001010, // OX M1    0
FirstOrderPhaseCorrectionAngle          = 0x56000010, // OF M1    0
SpectroscopyData                        = 0x56000020, // OF M1    0
OverlayRows                             = 0x60000010, // US M1    0
OverlayColumns                          = 0x60000011, // US M1    0
OverlayPlanes                           = 0x60000012, // US M1    1
NumberOfFramesInOverlay                 = 0x60000015, // IS M1    0
OverlayDescription                      = 0x60000022, // LO M1    0
OverlayType                             = 0x60000040, // CS M1    0
OverlaySubtype                          = 0x60000045, // LO M1    0
OverlayOrigin                           = 0x60000050, // SS M2    0
ImageFrameOrigin                        = 0x60000051, // US M1    0
OverlayPlaneOrigin                      = 0x60000052, // US M1    1
OverlayCompressionCode                  = 0x60000060, // CS M1    1
OverlayCompressionOriginator            = 0x60000061, // SH M1    1
OverlayCompressionLabel                 = 0x60000062, // SH M1    1
OverlayCompressionDescription           = 0x60000063, // CS M1    1
OverlayCompressionStepPointers          = 0x60000066, // AT M1TN  1
OverlayRepeatInterval                   = 0x60000068, // US M1    1
OverlayBitsGrouped                      = 0x60000069, // US M1    1
OverlayBitsAllocated                    = 0x60000100, // US M1    0
OverlayBitPosition                      = 0x60000102, // US M1    0
OverlayFormat                           = 0x60000110, // CS M1    1
OverlayLocation                         = 0x60000200, // US M1    1
OverlayCodeLabel                        = 0x60000800, // CS M1TN  1
OverlayNumberOfTables                   = 0x60000802, // US M1    1
OverlayCodeTableLocation                = 0x60000803, // AT M1TN  1
OverlayBitsForCodeWord                  = 0x60000804, // US M1    1
OverlayActivationLayer                  = 0x60001001, // CS M1    0
OverlayDescriptorGray                   = 0x60001100, // US M1    1
OverlayDescriptorRed                    = 0x60001101, // US M1    1
OverlayDescriptorGreen                  = 0x60001102, // US M1    1
OverlayDescriptorBlue                   = 0x60001103, // US M1    1
OverlaysGray                            = 0x60001200, // US M1TN  1
OverlaysRed                             = 0x60001201, // US M1TN  1
OverlaysGreen                           = 0x60001202, // US M1TN  1
OverlaysBlue                            = 0x60001203, // US M1TN  1
ROIArea                                 = 0x60001301, // IS M1    0
ROIMean                                 = 0x60001302, // DS M1    0
ROIStandardDeviation                    = 0x60001303, // DS M1    0
OverlayLabel                            = 0x60001500, // LO M1    0
OverlayData                             = 0x60003000, // OX M1    0
OverlayComments                         = 0x60004000, // LT M1    1
OverlayRepeatInterval2                  = 0x60020068, // US M1    1
OverlayBitsGrouped2                     = 0x60020069, // US M1    1
OverlayBitsAllocated2                   = 0x60020100, // US M1    0
OverlayBitPosition2                     = 0x60020102, // US M1    0
OverlayFormat2                          = 0x60020110, // CS M1    1
OverlayLocation2                        = 0x60020200, // US M1    1
OverlayCodeLabel2                       = 0x60020800, // CS M1TN  1
OverlayNumberOfTables2                  = 0x60020802, // US M1    1
OverlayCodeTableLocation2               = 0x60020803, // AT M1TN  1
OverlayBitsForCodeWord2                 = 0x60020804, // US M1    1
OverlayActivationLayer2                 = 0x60021001, // CS M1    0
OverlayDescriptorGray2                  = 0x60021100, // US M1    1
OverlayDescriptorRed2                   = 0x60021101, // US M1    1
OverlayDescriptorGreen2                 = 0x60021102, // US M1    1
OverlayDescriptorBlue2                  = 0x60021103, // US M1    1
OverlaysGray2                           = 0x60021200, // US M1TN  1
OverlaysRed2                            = 0x60021201, // US M1TN  1
OverlaysGreen2                          = 0x60021202, // US M1TN  1
OverlaysBlue2                           = 0x60021203, // US M1TN  1
ROIArea2                                = 0x60021301, // IS M1    0
ROIMean2                                = 0x60021302, // DS M1    0
ROIStandardDeviation2                   = 0x60021303, // DS M1    0
OverlayLabel2                           = 0x60021500, // LO M1    0
OverlayData2                            = 0x60023000, // OX M1    0
OverlayComments2                        = 0x60024000, // LT M1    1
OverlayRepeatInterval3                  = 0x60040068, // US M1    1
OverlayBitsGrouped3                     = 0x60040069, // US M1    1
OverlayBitsAllocated3                   = 0x60040100, // US M1    0
OverlayBitPosition3                     = 0x60040102, // US M1    0
OverlayFormat3                          = 0x60040110, // CS M1    1
OverlayLocation3                        = 0x60040200, // US M1    1
OverlayCodeLabel3                       = 0x60040800, // CS M1TN  1
OverlayNumberOfTables3                  = 0x60040802, // US M1    1
OverlayCodeTableLocation3               = 0x60040803, // AT M1TN  1
OverlayBitsForCodeWord3                 = 0x60040804, // US M1    1
OverlayActivationLayer3                 = 0x60041001, // CS M1    0
OverlayDescriptorGray3                  = 0x60041100, // US M1    1
OverlayDescriptorRed3                   = 0x60041101, // US M1    1
OverlayDescriptorGreen3                 = 0x60041102, // US M1    1
OverlayDescriptorBlue3                  = 0x60041103, // US M1    1
OverlaysGray3                           = 0x60041200, // US M1TN  1
OverlaysRed3                            = 0x60041201, // US M1TN  1
OverlaysGreen3                          = 0x60041202, // US M1TN  1
OverlaysBlue3                           = 0x60041203, // US M1TN  1
ROIArea3                                = 0x60041301, // IS M1    0
ROIMean3                                = 0x60041302, // DS M1    0
ROIStandardDeviation3                   = 0x60041303, // DS M1    0
OverlayLabel3                           = 0x60041500, // LO M1    0
OverlayData3                            = 0x60043000, // OX M1    0
OverlayComments3                        = 0x60044000, // LT M1    1
OverlayRepeatInterval4                  = 0x60060068, // US M1    1
OverlayBitsGrouped4                     = 0x60060069, // US M1    1
OverlayBitsAllocated4                   = 0x60060100, // US M1    0
OverlayBitPosition4                     = 0x60060102, // US M1    0
OverlayFormat4                          = 0x60060110, // CS M1    1
OverlayLocation4                        = 0x60060200, // US M1    1
OverlayCodeLabel4                       = 0x60060800, // CS M1TN  1
OverlayNumberOfTables4                  = 0x60060802, // US M1    1
OverlayCodeTableLocation4               = 0x60060803, // AT M1TN  1
OverlayBitsForCodeWord4                 = 0x60060804, // US M1    1
OverlayActivationLayer4                 = 0x60061001, // CS M1    0
OverlayDescriptorGray4                  = 0x60061100, // US M1    1
OverlayDescriptorRed4                   = 0x60061101, // US M1    1
OverlayDescriptorGreen4                 = 0x60061102, // US M1    1
OverlayDescriptorBlue4                  = 0x60061103, // US M1    1
OverlaysGray4                           = 0x60061200, // US M1TN  1
OverlaysRed4                            = 0x60061201, // US M1TN  1
OverlaysGreen4                          = 0x60061202, // US M1TN  1
OverlaysBlue4                           = 0x60061203, // US M1TN  1
ROIArea4                                = 0x60061301, // IS M1    0
ROIMean4                                = 0x60061302, // DS M1    0
ROIStandardDeviation4                   = 0x60061303, // DS M1    0
OverlayLabel4                           = 0x60061500, // LO M1    0
OverlayData4                            = 0x60063000, // OX M1    0
OverlayComments4                        = 0x60064000, // LT M1    1
OverlayRepeatInterval5                  = 0x60080068, // US M1    1
OverlayBitsGrouped5                     = 0x60080069, // US M1    1
OverlayBitsAllocated5                   = 0x60080100, // US M1    0
OverlayBitPosition5                     = 0x60080102, // US M1    0
OverlayFormat5                          = 0x60080110, // CS M1    1
OverlayLocation5                        = 0x60080200, // US M1    1
OverlayCodeLabel5                       = 0x60080800, // CS M1TN  1
OverlayNumberOfTables5                  = 0x60080802, // US M1    1
OverlayCodeTableLocation5               = 0x60080803, // AT M1TN  1
OverlayBitsForCodeWord5                 = 0x60080804, // US M1    1
OverlayActivationLayer5                 = 0x60081001, // CS M1    0
OverlayDescriptorGray5                  = 0x60081100, // US M1    1
OverlayDescriptorRed5                   = 0x60081101, // US M1    1
OverlayDescriptorGreen5                 = 0x60081102, // US M1    1
OverlayDescriptorBlue5                  = 0x60081103, // US M1    1
OverlaysGray5                           = 0x60081200, // US M1TN  1
OverlaysRed5                            = 0x60081201, // US M1TN  1
OverlaysGreen5                          = 0x60081202, // US M1TN  1
OverlaysBlue5                           = 0x60081203, // US M1TN  1
ROIArea5                                = 0x60081301, // IS M1    0
ROIMean5                                = 0x60081302, // DS M1    0
ROIStandardDeviation5                   = 0x60081303, // DS M1    0
OverlayLabel5                           = 0x60081500, // LO M1    0
OverlayData5                            = 0x60083000, // OX M1    0
OverlayComments5                        = 0x60084000, // LT M1    1
OverlayRepeatInterval6                  = 0x600A0068, // US M1    1
OverlayBitsGrouped6                     = 0x600A0069, // US M1    1
OverlayBitsAllocated6                   = 0x600A0100, // US M1    0
OverlayBitPosition6                     = 0x600A0102, // US M1    0
OverlayFormat6                          = 0x600A0110, // CS M1    1
OverlayLocation6                        = 0x600A0200, // US M1    1
OverlayCodeLabel6                       = 0x600A0800, // CS M1TN  1
OverlayNumberOfTables6                  = 0x600A0802, // US M1    1
OverlayCodeTableLocation6               = 0x600A0803, // AT M1TN  1
OverlayBitsForCodeWord6                 = 0x600A0804, // US M1    1
OverlayActivationLayer6                 = 0x600A1001, // CS M1    0
OverlayDescriptorGray6                  = 0x600A1100, // US M1    1
OverlayDescriptorRed6                   = 0x600A1101, // US M1    1
OverlayDescriptorGreen6                 = 0x600A1102, // US M1    1
OverlayDescriptorBlue6                  = 0x600A1103, // US M1    1
OverlaysGray6                           = 0x600A1200, // US M1TN  1
OverlaysRed6                            = 0x600A1201, // US M1TN  1
OverlaysGreen6                          = 0x600A1202, // US M1TN  1
OverlaysBlue6                           = 0x600A1203, // US M1TN  1
ROIArea6                                = 0x600A1301, // IS M1    0
ROIMean6                                = 0x600A1302, // DS M1    0
ROIStandardDeviation6                   = 0x600A1303, // DS M1    0
OverlayLabel6                           = 0x600A1500, // LO M1    0
OverlayData6                            = 0x600A3000, // OX M1    0
OverlayComments6                        = 0x600A4000, // LT M1    1
OverlayRepeatInterval7                  = 0x600C0068, // US M1    1
OverlayBitsGrouped7                     = 0x600C0069, // US M1    1
OverlayBitsAllocated7                   = 0x600C0100, // US M1    0
OverlayBitPosition7                     = 0x600C0102, // US M1    0
OverlayFormat7                          = 0x600C0110, // CS M1    1
OverlayLocation7                        = 0x600C0200, // US M1    1
OverlayCodeLabel7                       = 0x600C0800, // CS M1TN  1
OverlayNumberOfTables7                  = 0x600C0802, // US M1    1
OverlayCodeTableLocation7               = 0x600C0803, // AT M1TN  1
OverlayBitsForCodeWord7                 = 0x600C0804, // US M1    1
OverlayActivationLayer7                 = 0x600C1001, // CS M1    0
OverlayDescriptorGray7                  = 0x600C1100, // US M1    1
OverlayDescriptorRed7                   = 0x600C1101, // US M1    1
OverlayDescriptorGreen7                 = 0x600C1102, // US M1    1
OverlayDescriptorBlue7                  = 0x600C1103, // US M1    1
OverlaysGray7                           = 0x600C1200, // US M1TN  1
OverlaysRed7                            = 0x600C1201, // US M1TN  1
OverlaysGreen7                          = 0x600C1202, // US M1TN  1
OverlaysBlue7                           = 0x600C1203, // US M1TN  1
ROIArea7                                = 0x600C1301, // IS M1    0
ROIMean7                                = 0x600C1302, // DS M1    0
ROIStandardDeviation7                   = 0x600C1303, // DS M1    0
OverlayLabel7                           = 0x600C1500, // LO M1    0
OverlayData7                            = 0x600C3000, // OX M1    0
OverlayComments7                        = 0x600C4000, // LT M1    1
OverlayRepeatInterval8                  = 0x600E0068, // US M1    1
OverlayBitsGrouped8                     = 0x600E0069, // US M1    1
OverlayBitsAllocated8                   = 0x600E0100, // US M1    0
OverlayBitPosition8                     = 0x600E0102, // US M1    0
OverlayFormat8                          = 0x600E0110, // CS M1    1
OverlayLocation8                        = 0x600E0200, // US M1    1
OverlayCodeLabel8                       = 0x600E0800, // CS M1TN  1
OverlayNumberOfTables8                  = 0x600E0802, // US M1    1
OverlayCodeTableLocation8               = 0x600E0803, // AT M1TN  1
OverlayBitsForCodeWord8                 = 0x600E0804, // US M1    1
OverlayActivationLayer8                 = 0x600E1001, // CS M1    0
OverlayDescriptorGray8                  = 0x600E1100, // US M1    1
OverlayDescriptorRed8                   = 0x600E1101, // US M1    1
OverlayDescriptorGreen8                 = 0x600E1102, // US M1    1
OverlayDescriptorBlue8                  = 0x600E1103, // US M1    1
OverlaysGray8                           = 0x600E1200, // US M1TN  1
OverlaysRed8                            = 0x600E1201, // US M1TN  1
OverlaysGreen8                          = 0x600E1202, // US M1TN  1
OverlaysBlue8                           = 0x600E1203, // US M1TN  1
ROIArea8                                = 0x600E1301, // IS M1    0
ROIMean8                                = 0x600E1302, // DS M1    0
ROIStandardDeviation8                   = 0x600E1303, // DS M1    0
OverlayLabel8                           = 0x600E1500, // LO M1    0
OverlayData8                            = 0x600E3000, // OX M1    0
OverlayComments8                        = 0x600E4000, // LT M1    1
OverlayRepeatInterval9                  = 0x60100068, // US M1    1
OverlayBitsGrouped9                     = 0x60100069, // US M1    1
OverlayBitsAllocated9                   = 0x60100100, // US M1    0
OverlayBitPosition9                     = 0x60100102, // US M1    0
OverlayFormat9                          = 0x60100110, // CS M1    1
OverlayLocation9                        = 0x60100200, // US M1    1
OverlayCodeLabel9                       = 0x60100800, // CS M1TN  1
OverlayNumberOfTables9                  = 0x60100802, // US M1    1
OverlayCodeTableLocation9               = 0x60100803, // AT M1TN  1
OverlayBitsForCodeWord9                 = 0x60100804, // US M1    1
OverlayActivationLayer9                 = 0x60101001, // CS M1    0
OverlayDescriptorGray9                  = 0x60101100, // US M1    1
OverlayDescriptorRed9                   = 0x60101101, // US M1    1
OverlayDescriptorGreen9                 = 0x60101102, // US M1    1
OverlayDescriptorBlue9                  = 0x60101103, // US M1    1
OverlaysGray9                           = 0x60101200, // US M1TN  1
OverlaysRed9                            = 0x60101201, // US M1TN  1
OverlaysGreen9                          = 0x60101202, // US M1TN  1
OverlaysBlue9                           = 0x60101203, // US M1TN  1
ROIArea9                                = 0x60101301, // IS M1    0
ROIMean9                                = 0x60101302, // DS M1    0
ROIStandardDeviation9                   = 0x60101303, // DS M1    0
OverlayLabel9                           = 0x60101500, // LO M1    0
OverlayData9                            = 0x60103000, // OX M1    0
OverlayComments9                        = 0x60104000, // LT M1    1
OverlayRepeatInterval10                 = 0x60120068, // US M1    1
OverlayBitsGrouped10                    = 0x60120069, // US M1    1
OverlayBitsAllocated10                  = 0x60120100, // US M1    0
OverlayBitPosition10                    = 0x60120102, // US M1    0
OverlayFormat10                         = 0x60120110, // CS M1    1
OverlayLocation10                       = 0x60120200, // US M1    1
OverlayCodeLabel10                      = 0x60120800, // CS M1TN  1
OverlayNumberOfTables10                 = 0x60120802, // US M1    1
OverlayCodeTableLocation10              = 0x60120803, // AT M1TN  1
OverlayBitsForCodeWord10                = 0x60120804, // US M1    1
OverlayActivationLayer10                = 0x60121001, // CS M1    0
OverlayDescriptorGray10                 = 0x60121100, // US M1    1
OverlayDescriptorRed10                  = 0x60121101, // US M1    1
OverlayDescriptorGreen10                = 0x60121102, // US M1    1
OverlayDescriptorBlue10                 = 0x60121103, // US M1    1
OverlaysGray10                          = 0x60121200, // US M1TN  1
OverlaysRed10                           = 0x60121201, // US M1TN  1
OverlaysGreen10                         = 0x60121202, // US M1TN  1
OverlaysBlue10                          = 0x60121203, // US M1TN  1
ROIArea10                               = 0x60121301, // IS M1    0
ROIMean10                               = 0x60121302, // DS M1    0
ROIStandardDeviation10                  = 0x60121303, // DS M1    0
OverlayLabel10                          = 0x60121500, // LO M1    0
OverlayData10                           = 0x60123000, // OX M1    0
OverlayComments10                       = 0x60124000, // LT M1    1
OverlayRepeatInterval11                 = 0x60140068, // US M1    1
OverlayBitsGrouped11                    = 0x60140069, // US M1    1
OverlayBitsAllocated11                  = 0x60140100, // US M1    0
OverlayBitPosition11                    = 0x60140102, // US M1    0
OverlayFormat11                         = 0x60140110, // CS M1    1
OverlayLocation11                       = 0x60140200, // US M1    1
OverlayCodeLabel11                      = 0x60140800, // CS M1TN  1
OverlayNumberOfTables11                 = 0x60140802, // US M1    1
OverlayCodeTableLocation11              = 0x60140803, // AT M1TN  1
OverlayBitsForCodeWord11                = 0x60140804, // US M1    1
OverlayActivationLayer11                = 0x60141001, // CS M1    0
OverlayDescriptorGray11                 = 0x60141100, // US M1    1
OverlayDescriptorRed11                  = 0x60141101, // US M1    1
OverlayDescriptorGreen11                = 0x60141102, // US M1    1
OverlayDescriptorBlue11                 = 0x60141103, // US M1    1
OverlaysGray11                          = 0x60141200, // US M1TN  1
OverlaysRed11                           = 0x60141201, // US M1TN  1
OverlaysGreen11                         = 0x60141202, // US M1TN  1
OverlaysBlue11                          = 0x60141203, // US M1TN  1
ROIArea11                               = 0x60141301, // IS M1    0
ROIMean11                               = 0x60141302, // DS M1    0
ROIStandardDeviation11                  = 0x60141303, // DS M1    0
OverlayLabel11                          = 0x60141500, // LO M1    0
OverlayData11                           = 0x60143000, // OX M1    0
OverlayComments11                       = 0x60144000, // LT M1    1
OverlayRepeatInterval12                 = 0x60160068, // US M1    1
OverlayBitsGrouped12                    = 0x60160069, // US M1    1
OverlayBitsAllocated12                  = 0x60160100, // US M1    0
OverlayBitPosition12                    = 0x60160102, // US M1    0
OverlayFormat12                         = 0x60160110, // CS M1    1
OverlayLocation12                       = 0x60160200, // US M1    1
OverlayCodeLabel12                      = 0x60160800, // CS M1TN  1
OverlayNumberOfTables12                 = 0x60160802, // US M1    1
OverlayCodeTableLocation12              = 0x60160803, // AT M1TN  1
OverlayBitsForCodeWord12                = 0x60160804, // US M1    1
OverlayActivationLayer12                = 0x60161001, // CS M1    0
OverlayDescriptorGray12                 = 0x60161100, // US M1    1
OverlayDescriptorRed12                  = 0x60161101, // US M1    1
OverlayDescriptorGreen12                = 0x60161102, // US M1    1
OverlayDescriptorBlue12                 = 0x60161103, // US M1    1
OverlaysGray12                          = 0x60161200, // US M1TN  1
OverlaysRed12                           = 0x60161201, // US M1TN  1
OverlaysGreen12                         = 0x60161202, // US M1TN  1
OverlaysBlue12                          = 0x60161203, // US M1TN  1
ROIArea12                               = 0x60161301, // IS M1    0
ROIMean12                               = 0x60161302, // DS M1    0
ROIStandardDeviation12                  = 0x60161303, // DS M1    0
OverlayLabel12                          = 0x60161500, // LO M1    0
OverlayData12                           = 0x60163000, // OX M1    0
OverlayComments12                       = 0x60164000, // LT M1    1
OverlayRepeatInterval13                 = 0x60180068, // US M1    1
OverlayBitsGrouped13                    = 0x60180069, // US M1    1
OverlayBitsAllocated13                  = 0x60180100, // US M1    0
OverlayBitPosition13                    = 0x60180102, // US M1    0
OverlayFormat13                         = 0x60180110, // CS M1    1
OverlayLocation13                       = 0x60180200, // US M1    1
OverlayCodeLabel13                      = 0x60180800, // CS M1TN  1
OverlayNumberOfTables13                 = 0x60180802, // US M1    1
OverlayCodeTableLocation13              = 0x60180803, // AT M1TN  1
OverlayBitsForCodeWord13                = 0x60180804, // US M1    1
OverlayActivationLayer13                = 0x60181001, // CS M1    0
OverlayDescriptorGray13                 = 0x60181100, // US M1    1
OverlayDescriptorRed13                  = 0x60181101, // US M1    1
OverlayDescriptorGreen13                = 0x60181102, // US M1    1
OverlayDescriptorBlue13                 = 0x60181103, // US M1    1
OverlaysGray13                          = 0x60181200, // US M1TN  1
OverlaysRed13                           = 0x60181201, // US M1TN  1
OverlaysGreen13                         = 0x60181202, // US M1TN  1
OverlaysBlue13                          = 0x60181203, // US M1TN  1
ROIArea13                               = 0x60181301, // IS M1    0
ROIMean13                               = 0x60181302, // DS M1    0
ROIStandardDeviation13                  = 0x60181303, // DS M1    0
OverlayLabel13                          = 0x60181500, // LO M1    0
OverlayData13                           = 0x60183000, // OX M1    0
OverlayComments13                       = 0x60184000, // LT M1    1
OverlayRepeatInterval14                 = 0x601A0068, // US M1    1
OverlayBitsGrouped14                    = 0x601A0069, // US M1    1
OverlayBitsAllocated14                  = 0x601A0100, // US M1    0
OverlayBitPosition14                    = 0x601A0102, // US M1    0
OverlayFormat14                         = 0x601A0110, // CS M1    1
OverlayLocation14                       = 0x601A0200, // US M1    1
OverlayCodeLabel14                      = 0x601A0800, // CS M1TN  1
OverlayNumberOfTables14                 = 0x601A0802, // US M1    1
OverlayCodeTableLocation14              = 0x601A0803, // AT M1TN  1
OverlayBitsForCodeWord14                = 0x601A0804, // US M1    1
OverlayActivationLayer14                = 0x601A1001, // CS M1    0
OverlayDescriptorGray14                 = 0x601A1100, // US M1    1
OverlayDescriptorRed14                  = 0x601A1101, // US M1    1
OverlayDescriptorGreen14                = 0x601A1102, // US M1    1
OverlayDescriptorBlue14                 = 0x601A1103, // US M1    1
OverlaysGray14                          = 0x601A1200, // US M1TN  1
OverlaysRed14                           = 0x601A1201, // US M1TN  1
OverlaysGreen14                         = 0x601A1202, // US M1TN  1
OverlaysBlue14                          = 0x601A1203, // US M1TN  1
ROIArea14                               = 0x601A1301, // IS M1    0
ROIMean14                               = 0x601A1302, // DS M1    0
ROIStandardDeviation14                  = 0x601A1303, // DS M1    0
OverlayLabel14                          = 0x601A1500, // LO M1    0
OverlayData14                           = 0x601A3000, // OX M1    0
OverlayComments14                       = 0x601A4000, // LT M1    1
OverlayRepeatInterval15                 = 0x601C0068, // US M1    1
OverlayBitsGrouped15                    = 0x601C0069, // US M1    1
OverlayBitsAllocated15                  = 0x601C0100, // US M1    0
OverlayBitPosition15                    = 0x601C0102, // US M1    0
OverlayFormat15                         = 0x601C0110, // CS M1    1
OverlayLocation15                       = 0x601C0200, // US M1    1
OverlayCodeLabel15                      = 0x601C0800, // CS M1TN  1
OverlayNumberOfTables15                 = 0x601C0802, // US M1    1
OverlayCodeTableLocation15              = 0x601C0803, // AT M1TN  1
OverlayBitsForCodeWord15                = 0x601C0804, // US M1    1
OverlayActivationLayer15                = 0x601C1001, // CS M1    0
OverlayDescriptorGray15                 = 0x601C1100, // US M1    1
OverlayDescriptorRed15                  = 0x601C1101, // US M1    1
OverlayDescriptorGreen15                = 0x601C1102, // US M1    1
OverlayDescriptorBlue15                 = 0x601C1103, // US M1    1
OverlaysGray15                          = 0x601C1200, // US M1TN  1
OverlaysRed15                           = 0x601C1201, // US M1TN  1
OverlaysGreen15                         = 0x601C1202, // US M1TN  1
OverlaysBlue15                          = 0x601C1203, // US M1TN  1
ROIArea15                               = 0x601C1301, // IS M1    0
ROIMean15                               = 0x601C1302, // DS M1    0
ROIStandardDeviation15                  = 0x601C1303, // DS M1    0
OverlayLabel15                          = 0x601C1500, // LO M1    0
OverlayData15                           = 0x601C3000, // OX M1    0
OverlayComments15                       = 0x601C4000, // LT M1    1
OverlayRepeatInterval16                 = 0x601E0068, // US M1    1
OverlayBitsGrouped16                    = 0x601E0069, // US M1    1
OverlayBitsAllocated16                  = 0x601E0100, // US M1    0
OverlayBitPosition16                    = 0x601E0102, // US M1    0
OverlayFormat16                         = 0x601E0110, // CS M1    1
OverlayLocation16                       = 0x601E0200, // US M1    1
OverlayCodeLabel16                      = 0x601E0800, // CS M1TN  1
OverlayNumberOfTables16                 = 0x601E0802, // US M1    1
OverlayCodeTableLocation16              = 0x601E0803, // AT M1TN  1
OverlayBitsForCodeWord16                = 0x601E0804, // US M1    1
OverlayActivationLayer16                = 0x601E1001, // CS M1    0
OverlayDescriptorGray16                 = 0x601E1100, // US M1    1
OverlayDescriptorRed16                  = 0x601E1101, // US M1    1
OverlayDescriptorGreen16                = 0x601E1102, // US M1    1
OverlayDescriptorBlue16                 = 0x601E1103, // US M1    1
OverlaysGray16                          = 0x601E1200, // US M1TN  1
OverlaysRed16                           = 0x601E1201, // US M1TN  1
OverlaysGreen16                         = 0x601E1202, // US M1TN  1
OverlaysBlue16                          = 0x601E1203, // US M1TN  1
ROIArea16                               = 0x601E1301, // IS M1    0
ROIMean16                               = 0x601E1302, // DS M1    0
ROIStandardDeviation16                  = 0x601E1303, // DS M1    0
OverlayLabel16                          = 0x601E1500, // LO M1    0
OverlayData16                           = 0x601E3000, // OX M1    0
OverlayComments16                       = 0x601E4000, // LT M1    1
FloatPixelData                          = 0x7FE00008, // OF M1    0
DoubleFloatPixelData                    = 0x7FE00009, // OD M1    0
PixelData                               = 0x7FE00010, // OX M1    0
CoefficientsSDVN                        = 0x7FE00020, // OW M1    1
CoefficientsSDHN                        = 0x7FE00030, // OW M1    1
CoefficientsSDDN                        = 0x7FE00040, // OW M1    1
VariablePixelData                       = 0x7F000010, // OX M1    1
VariableNextDataGroup                   = 0x7F000011, // US M1    1
VariableCoefficientsSDVN                = 0x7F000020, // OW M1    1
VariableCoefficientsSDHN                = 0x7F000030, // OW M1    1
VariableCoefficientsSDDN                = 0x7F000040, // OW M1    1
DigitalSignaturesSequence               = 0xFFFAFFFA, // SQ M1    0
DataSetTrailingPadding                  = 0xFFFCFFFC, // OB M1    0
Item                                    = 0xFFFEE000, // XX M0    0
ItemDelimitationItem                    = 0xFFFEE00D, // XX M0    0
SequenceDelimitationItem                = 0xFFFEE0DD  // XX M0    0
};
} // end namespace DC

#endif /* vtkDICOMDictHash_h */
// VTK-HeaderTest-Exclude: vtkDICOMDictHash.h