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 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
|
/*=========================================================================
This is an automatically generated file. Include errata for any changes.
=========================================================================*/
#include "vtkDICOMUtilitiesUIDTable.h"
namespace {
struct UIDTableEntry
{
unsigned short Next;
unsigned short Size;
unsigned short First;
unsigned short CID;
const char *Name;
};
const UIDTableEntry UIDTable[] = {
{ 1, 15, 1, 0, nullptr },
{ 16, 42, 1, 0, nullptr },
{ 284, 11, 6, 0, nullptr },
{ 311, 1, 1, 0, nullptr },
{ 337, 1, 2, 0, nullptr },
{ 338, 1, 1, 0, nullptr },
{ 1430, 1, 1, 0, nullptr },
{ 2931, 1, 1, 0, nullptr },
{ 2934, 1, 1, 0, nullptr },
{ 2936, 24, 1, 0, nullptr },
{ 2960, 4, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 2964, 2, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.1
"Verification SOP Class" },
{ 58, 7, 1, 0, // 1.2.840.10008.1.2
"Implicit VR Little Endian" },
{ 235, 1, 10, 0, nullptr },
{ 236, 6, 1, 0, nullptr },
{ 270, 8, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.9 (Retired)
"Basic Study Content Notification SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 278, 2, 1, 0, // 1.2.840.10008.1.20 (Retired)
"Papyrus 3 Implicit VR Little Endian" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 282, 1, 1, 0, // 1.2.840.10008.1.40
"Procedural Event Logging SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 283, 1, 1, 0, // 1.2.840.10008.1.42
"Substance Administration Logging SOP Class" },
{ 65, 2, 98, 0, // 1.2.840.10008.1.2.1
"Explicit VR Little Endian" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.2 (Retired)
"Explicit VR Big Endian" },
{ 0, 0, 0, 0, nullptr },
{ 67, 156, 50, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.5
"RLE Lossless" },
{ 230, 2, 1, 0, nullptr },
{ 232, 3, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.1.98
"Encapsulated Uncompressed Explicit VR Little Endian" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.1.99
"Deflated Explicit VR Little Endian" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.50
"JPEG Baseline (Process 1)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.51
"JPEG Extended (Process 2 & 4)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.52 (Retired)
"JPEG Extended (Process 3 & 5)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.53 (Retired)
"JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.54 (Retired)
"JPEG Spectral Selection, Non-Hierarchical (Process 7 & 9)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.55 (Retired)
"JPEG Full Progression, Non-Hierarchical (Process 10 & 12)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.56 (Retired)
"JPEG Full Progression, Non-Hierarchical (Process 11 & 13)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.57
"JPEG Lossless, Non-Hierarchical (Process 14)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.58 (Retired)
"JPEG Lossless, Non-Hierarchical (Process 15)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.59 (Retired)
"JPEG Extended, Hierarchical (Process 16 & 18)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.60 (Retired)
"JPEG Extended, Hierarchical (Process 17 & 19)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.61 (Retired)
"JPEG Spectral Selection, Hierarchical (Process 20 & 22)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.62 (Retired)
"JPEG Spectral Selection, Hierarchical (Process 21 & 23)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.63 (Retired)
"JPEG Full Progression, Hierarchical (Process 24 & 26)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.64 (Retired)
"JPEG Full Progression, Hierarchical (Process 25 & 27)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.65 (Retired)
"JPEG Lossless, Hierarchical (Process 28)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.66 (Retired)
"JPEG Lossless, Hierarchical (Process 29)" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.70
"JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1])" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.80
"JPEG-LS Lossless Image Compression" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.81
"JPEG-LS Lossy (Near-Lossless) Image Compression" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.90
"JPEG 2000 Image Compression (Lossless Only)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.91
"JPEG 2000 Image Compression" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.92
"JPEG 2000 Part 2 Multi-component Image Compression (Lossless Only)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.93
"JPEG 2000 Part 2 Multi-component Image Compression" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.94
"JPIP Referenced" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.95
"JPIP Referenced Deflate" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 223, 1, 1, 0, // 1.2.840.10008.1.2.4.100
"MPEG2 Main Profile / Main Level" },
{ 224, 1, 1, 0, // 1.2.840.10008.1.2.4.101
"MPEG2 Main Profile / High Level" },
{ 225, 1, 1, 0, // 1.2.840.10008.1.2.4.102
"MPEG-4 AVC/H.264 High Profile / Level 4.1" },
{ 226, 1, 1, 0, // 1.2.840.10008.1.2.4.103
"MPEG-4 AVC/H.264 BD-compatible High Profile / Level 4.1" },
{ 227, 1, 1, 0, // 1.2.840.10008.1.2.4.104
"MPEG-4 AVC/H.264 High Profile / Level 4.2 For 2D Video" },
{ 228, 1, 1, 0, // 1.2.840.10008.1.2.4.105
"MPEG-4 AVC/H.264 High Profile / Level 4.2 For 3D Video" },
{ 229, 1, 1, 0, // 1.2.840.10008.1.2.4.106
"MPEG-4 AVC/H.264 Stereo High Profile / Level 4.2" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.107
"HEVC/H.265 Main Profile / Level 5.1" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.108
"HEVC/H.265 Main 10 Profile / Level 5.1" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.110
"JPEG XL Lossless" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.111
"JPEG XL JPEG Recompression" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.112
"JPEG XL" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.201
"High-Throughput JPEG 2000 Image Compression (Lossless Only)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.202
"High-Throughput JPEG 2000 with RPCL Options Image Compression (Lossless Only)" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.203
"High-Throughput JPEG 2000 Image Compression" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.204
"JPIP HTJ2K Referenced" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.205
"JPIP HTJ2K Referenced Deflate" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.100.1
"Fragmentable MPEG2 Main Profile / Main Level" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.101.1
"Fragmentable MPEG2 Main Profile / High Level" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.102.1
"Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.1" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.103.1
"Fragmentable MPEG-4 AVC/H.264 BD-compatible High Profile / Level 4.1" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.104.1
"Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.2 For 2D Video" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.105.1
"Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.2 For 3D Video" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.4.106.1
"Fragmentable MPEG-4 AVC/H.264 Stereo High Profile / Level 4.2" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.6.1 (Retired)
"RFC 2557 MIME encapsulation" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.6.2 (Retired)
"XML Encoding" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.7.1
"SMPTE ST 2110-20 Uncompressed Progressive Active Video" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.7.2
"SMPTE ST 2110-20 Uncompressed Interlaced Active Video" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.2.7.3
"SMPTE ST 2110-30 PCM Digital Audio" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.3.10
"Media Storage Directory Storage" },
{ 242, 18, 1, 0, nullptr },
{ 260, 2, 1, 0, nullptr },
{ 262, 3, 1, 0, nullptr },
{ 265, 1, 1, 0, nullptr },
{ 266, 1, 1, 0, nullptr },
{ 267, 3, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.1
"Talairach Brain Atlas Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.2
"SPM2 T1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.3
"SPM2 T2 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.4
"SPM2 PD Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.5
"SPM2 EPI Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.6
"SPM2 FIL T1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.7
"SPM2 PET Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.8
"SPM2 TRANSM Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.9
"SPM2 SPECT Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.10
"SPM2 GRAY Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.11
"SPM2 WHITE Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.12
"SPM2 CSF Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.13
"SPM2 BRAINMASK Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.14
"SPM2 AVG305T1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.15
"SPM2 AVG152T1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.16
"SPM2 AVG152T2 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.17
"SPM2 AVG152PD Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.1.18
"SPM2 SINGLESUBJT1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.2.1
"ICBM 452 T1 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.2.2
"ICBM Single Subject MRI Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.3.1
"IEC 61217 Fixed Coordinate System Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.3.2
"Standard Robotic-Arm Coordinate System Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.3.3
"IEC 61217 Table Top Coordinate System Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.4.1
"SRI24 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.5.1
"Colin27 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.6.1
"LPBA40/AIR Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.6.2
"LPBA40/FLIRT Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.4.6.3
"LPBA40/SPM5 Frame of Reference" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.1
"Hot Iron Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.2
"PET Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.3
"Hot Metal Blue Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.4
"PET 20 Step Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.5
"Spring Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.6
"Summer Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.7
"Fall Color Palette SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.5.8
"Winter Color Palette SOP Instance" },
{ 280, 1, 1, 0, // 1.2.840.10008.1.20.1
"Storage Commitment Push Model SOP Class" },
{ 281, 1, 1, 0, // 1.2.840.10008.1.20.2 (Retired)
"Storage Commitment Pull Model SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.20.1.1
"Storage Commitment Push Model SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.20.2.1 (Retired)
"Storage Commitment Pull Model SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.40.1
"Procedural Event Logging SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.1.42.1
"Substance Administration Logging SOP Instance" },
{ 295, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 296, 15, 4, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.2.6.1
"DICOM UID Registry" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.4
"DICOM Controlled Terminology" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.5
"Adult Mouse Anatomy Ontology" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.6
"Uberon Ontology" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.7
"Integrated Taxonomic Information System (ITIS) Taxonomic Serial Number (TSN)" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.8
"Mouse Genome Initiative (MGI)" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.9
"PubChem Compound CID" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.10
"ICD-11" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.11
"New York University Melanoma Clinical Cooperative Group" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.12
"Mayo Clinic Non-radiological Images Specific Body Structure Anatomical Surface Region Guide" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.13
"Image Biomarker Standardisation Initiative" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.14
"Radiomics Ontology" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.15
"RadElement" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.16
"ICD-11" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.17
"Unified numbering system (UNS) for metals and alloys" },
{ 0, 0, 0, 0, // 1.2.840.10008.2.16.18
"Research Resource Identification" },
{ 312, 2, 1, 0, nullptr },
{ 314, 1, 1, 0, nullptr },
{ 315, 6, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.1.1
"DICOM Application Context Name" },
{ 321, 4, 1, 0, nullptr },
{ 325, 1, 1, 0, nullptr },
{ 326, 5, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 331, 5, 1, 0, nullptr },
{ 336, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.1.1 (Retired)
"Detached Patient Management SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.1.4 (Retired)
"Detached Patient Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.2.1 (Retired)
"Detached Visit Management SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.3.1 (Retired)
"Detached Study Management SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.3.2 (Retired)
"Study Component Management SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.3.3
"Modality Performed Procedure Step SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.3.4
"Modality Performed Procedure Step Retrieve SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.3.5
"Modality Performed Procedure Step Notification SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.5.1 (Retired)
"Detached Results Management SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.5.4 (Retired)
"Detached Results Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.5.5 (Retired)
"Detached Study Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.3.1.2.6.1 (Retired)
"Detached Interpretation Management SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.4.2
"Storage Service Class" },
{ 339, 4, 1, 0, nullptr },
{ 343, 40, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 391, 45, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.1
"Basic Film Session SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.2
"Basic Film Box SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 383, 2, 1, 0, // 1.2.840.10008.5.1.1.4
"Basic Grayscale Image Box SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 385, 1, 1, 0, // 1.2.840.10008.5.1.1.9
"Basic Grayscale Print Management Meta SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.14
"Print Job SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.15
"Basic Annotation Box SOP Class" },
{ 386, 1, 376, 0, // 1.2.840.10008.5.1.1.16
"Printer SOP Class" },
{ 387, 1, 376, 0, // 1.2.840.10008.5.1.1.17
"Printer SOP Instance" },
{ 388, 1, 1, 0, // 1.2.840.10008.5.1.1.18
"Basic Color Print Management Meta SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.22
"VOI LUT Box SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.23
"Presentation LUT SOP Class" },
{ 389, 1, 1, 0, // 1.2.840.10008.5.1.1.24 (Retired)
"Image Overlay Box SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.25 (Retired)
"Print Queue SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.26 (Retired)
"Print Queue Management SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.27 (Retired)
"Stored Print Storage SOP Class" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.29 (Retired)
"Hardcopy Grayscale Image Storage SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.30 (Retired)
"Hardcopy Color Image Storage SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.31 (Retired)
"Pull Print Request SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.32 (Retired)
"Pull Stored Print Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.33
"Media Creation Management SOP Class UID" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 390, 1, 1, 0, // 1.2.840.10008.5.1.1.40
"Display System SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.4.1
"Basic Color Image Box SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.4.2 (Retired)
"Referenced Image Box SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.9.1 (Retired)
"Referenced Grayscale Print Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.16.376
"Printer Configuration Retrieval SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.17.376
"Printer Configuration Retrieval SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.18.1 (Retired)
"Referenced Color Print Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.24.1 (Retired)
"Basic Print Image Overlay Box SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.1.40.1
"Display System SOP Instance" },
{ 436, 2, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1381, 3, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.31
"Modality Worklist Information Model - FIND" },
{ 1384, 3, 1, 0, // 1.2.840.10008.5.1.4.32 (Retired)
"General Purpose Worklist Management Meta SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.33
"Instance Availability Notification SOP Class" },
{ 1387, 10, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1407, 3, 1, 0, nullptr },
{ 1410, 4, 1, 0, nullptr },
{ 1414, 4, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.41
"Product Characteristics Query" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.42
"Substance Approval Query" },
{ 1418, 4, 1, 0, nullptr },
{ 1422, 4, 1, 0, nullptr },
{ 1426, 4, 1, 0, nullptr },
{ 438, 601, 1, 0, nullptr },
{ 1364, 5, 1, 0, nullptr },
{ 1039, 3, 1, 0, // 1.2.840.10008.5.1.4.1.1.1
"Computed Radiography Image Storage" },
{ 1045, 2, 1, 0, // 1.2.840.10008.5.1.4.1.1.2
"CT Image Storage" },
{ 1047, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.3 (Retired)
"Ultrasound Multi-frame Image Storage" },
{ 1048, 4, 1, 0, // 1.2.840.10008.5.1.4.1.1.4
"MR Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.5 (Retired)
"Nuclear Medicine Image Storage" },
{ 1052, 3, 1, 0, // 1.2.840.10008.5.1.4.1.1.6 (Retired)
"Ultrasound Image Storage" },
{ 1055, 4, 1, 0, // 1.2.840.10008.5.1.4.1.1.7
"Secondary Capture Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.8 (Retired)
"Standalone Overlay Storage" },
{ 1059, 8, 1, 0, // 1.2.840.10008.5.1.4.1.1.9 (Retired)
"Standalone Curve Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.10 (Retired)
"Standalone Modality LUT Storage" },
{ 1083, 12, 1, 0, // 1.2.840.10008.5.1.4.1.1.11 (Retired)
"Standalone VOI LUT Storage" },
{ 1095, 77, 1, 0, nullptr },
{ 1174, 1, 1, 0, nullptr },
{ 1180, 2, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.20
"Nuclear Medicine Image Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.30
"Parametric Map Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.40 (Retired)
"1.2.840.10008.5.1.4.1.1.40" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1182, 8, 1, 0, // 1.2.840.10008.5.1.4.1.1.66
"Raw Data Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.67
"Real World Value Mapping Storage" },
{ 1190, 2, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1192, 2, 1, 0, nullptr },
{ 1214, 8, 1, 0, nullptr },
{ 1222, 1, 1, 0, nullptr },
{ 1223, 1, 1, 0, nullptr },
{ 1224, 1, 1, 0, nullptr },
{ 1225, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1226, 77, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1303, 1, 1, 0, nullptr },
{ 1304, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1305, 5, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1310, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.128
"Positron Emission Tomography Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.129 (Retired)
"Standalone PET Curve Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.130
"Enhanced PET Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.131
"Basic Structured Display Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1311, 8, 1, 0, nullptr },
{ 1319, 6, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1327, 25, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1352, 6, 1, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 1360, 4, 1, 0, nullptr },
{ 1042, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.1.1
"Digital X-Ray Image Storage - For Presentation" },
{ 1043, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.1.2
"Digital Mammography X-Ray Image Storage - For Presentation" },
{ 1044, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.1.3
"Digital Intra-Oral X-Ray Image Storage - For Presentation" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.1.1.1
"Digital X-Ray Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.1.2.1
"Digital Mammography X-Ray Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.1.3.1
"Digital Intra-Oral X-Ray Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.2.1
"Enhanced CT Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.2.2
"Legacy Converted Enhanced CT Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.3.1
"Ultrasound Multi-frame Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.4.1
"Enhanced MR Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.4.2
"MR Spectroscopy Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.4.3
"Enhanced MR Color Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.4.4
"Legacy Converted Enhanced MR Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.6.1
"Ultrasound Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.6.2
"Enhanced US Volume Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.6.3
"Photoacoustic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.7.1
"Multi-frame Single Bit Secondary Capture Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.7.2
"Multi-frame Grayscale Byte Secondary Capture Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.7.3
"Multi-frame Grayscale Word Secondary Capture Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.7.4
"Multi-frame True Color Secondary Capture Image Storage" },
{ 1067, 4, 1, 0, // 1.2.840.10008.5.1.4.1.1.9.1 (Retired)
"Waveform Storage - Trial" },
{ 1071, 1, 1, 0, nullptr },
{ 1072, 1, 1, 0, nullptr },
{ 1073, 2, 1, 0, nullptr },
{ 1075, 1, 1, 0, nullptr },
{ 1076, 2, 1, 0, nullptr },
{ 1078, 4, 1, 0, nullptr },
{ 1082, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.1.1
"12-lead ECG Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.1.2
"General ECG Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.1.3
"Ambulatory ECG Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.1.4
"General 32-bit ECG Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.2.1
"Hemodynamic Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.3.1
"Cardiac Electrophysiology Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.4.1
"Basic Voice Audio Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.4.2
"General Audio Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.5.1
"Arterial Pulse Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.6.1
"Respiratory Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.6.2
"Multi-channel Respiratory Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.7.1
"Routine Scalp Electroencephalogram Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.7.2
"Electromyogram Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.7.3
"Electrooculogram Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.7.4
"Sleep Electroencephalogram Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.9.8.1
"Body Position Waveform Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.1
"Grayscale Softcopy Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.2
"Color Softcopy Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.3
"Pseudo-Color Softcopy Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.4
"Blending Softcopy Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.5
"XA/XRF Grayscale Softcopy Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.6
"Grayscale Planar MPR Volumetric Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.7
"Compositing Planar MPR Volumetric Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.8
"Advanced Blending Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.9
"Volume Rendering Volumetric Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.10
"Segmented Volume Rendering Volumetric Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.11
"Multiple Volume Rendering Volumetric Presentation State Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.11.12
"Variable Modality LUT Softcopy Presentation State Storage" },
{ 1172, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.12.1
"X-Ray Angiographic Image Storage" },
{ 1173, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.12.2
"X-Ray Radiofluoroscopic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.12.3 (Retired)
"X-Ray Angiographic Bi-Plane Image Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.12.77 (Retired)
"1.2.840.10008.5.1.4.1.1.12.77" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.12.1.1
"Enhanced XA Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.12.2.1
"Enhanced XRF Image Storage" },
{ 1175, 5, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.13.1.1
"X-Ray 3D Angiographic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.13.1.2
"X-Ray 3D Craniofacial Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.13.1.3
"Breast Tomosynthesis Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.13.1.4
"Breast Projection X-Ray Image Storage - For Presentation" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.13.1.5
"Breast Projection X-Ray Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.14.1
"Intravascular Optical Coherence Tomography Image Storage - For Presentation" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.14.2
"Intravascular Optical Coherence Tomography Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.1
"Spatial Registration Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.2
"Spatial Fiducials Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.3
"Deformable Spatial Registration Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.4
"Segmentation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.5
"Surface Segmentation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.6
"Tractography Results Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.7
"Label Map Segmentation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.66.8
"Height Map Segmentation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.68.1
"Surface Scan Mesh Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.68.2
"Surface Scan Point Cloud Storage" },
{ 1194, 9, 1, 0, // 1.2.840.10008.5.1.4.1.1.77.1 (Retired)
"VL Image Storage - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.2 (Retired)
"VL Multi-frame Image Storage - Trial" },
{ 1203, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.77.1.1
"VL Endoscopic Image Storage" },
{ 1204, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.77.1.2
"VL Microscopic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.3
"VL Slide-Coordinates Microscopic Image Storage" },
{ 1205, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.77.1.4
"VL Photographic Image Storage" },
{ 1206, 8, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.6
"VL Whole Slide Microscopy Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.7
"Dermoscopic Photography Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.8
"Confocal Microscopy Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.9
"Confocal Microscopy Tiled Pyramidal Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.1.1
"Video Endoscopic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.2.1
"Video Microscopic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.4.1
"Video Photographic Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.1
"Ophthalmic Photography 8 Bit Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.2
"Ophthalmic Photography 16 Bit Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.3
"Stereometric Relationship Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.4
"Ophthalmic Tomography Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.5
"Wide Field Ophthalmic Photography Stereographic Projection Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.6
"Wide Field Ophthalmic Photography 3D Coordinates Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.7
"Ophthalmic Optical Coherence Tomography En Face Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.77.1.5.8
"Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.1
"Lensometry Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.2
"Autorefraction Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.3
"Keratometry Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.4
"Subjective Refraction Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.5
"Visual Acuity Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.6
"Spectacle Prescription Report Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.7
"Ophthalmic Axial Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.78.8
"Intraocular Lens Calculations Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.79.1
"Macular Grid Thickness and Volume Report Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.80.1
"Ophthalmic Visual Field Static Perimetry Measurements Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.81.1
"Ophthalmic Thickness Map Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.82.1
"Corneal Topography Map Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.1 (Retired)
"Text SR Storage - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.2 (Retired)
"Audio SR Storage - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.3 (Retired)
"Detail SR Storage - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.4 (Retired)
"Comprehensive SR Storage - Trial" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.11
"Basic Text SR Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.22
"Enhanced SR Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.33
"Comprehensive SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.34
"Comprehensive 3D SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.35
"Extensible SR Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.40
"Procedure Log Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.50
"Mammography CAD SR Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.59
"Key Object Selection Document Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.65
"Chest CAD SR Storage" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.67
"X-Ray Radiation Dose SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.68
"Radiopharmaceutical Radiation Dose SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.69
"Colon CAD SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.70
"Implantation Plan SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.71
"Acquisition Context SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.72
"Simplified Adult Echo SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.73
"Patient Radiation Dose SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.74
"Planned Imaging Agent Administration SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.75
"Performed Imaging Agent Administration SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.76
"Enhanced X-Ray Radiation Dose SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.88.77
"Waveform Annotation SR Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.90.1
"Content Assessment Results Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.91.1
"Microscopy Bulk Simple Annotations Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.104.1
"Encapsulated PDF Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.104.2
"Encapsulated CDA Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.104.3
"Encapsulated STL Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.104.4
"Encapsulated OBJ Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.104.5
"Encapsulated MTL Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.128.1
"Legacy Converted Enhanced PET Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.1
"CT Defined Procedure Protocol Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.2
"CT Performed Procedure Protocol Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.3
"Protocol Approval Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.4
"Protocol Approval Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.5
"Protocol Approval Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.6
"Protocol Approval Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.7
"XA Defined Procedure Protocol Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.200.8
"XA Performed Procedure Protocol Storage" },
{ 1325, 1, 1, 0, // 1.2.840.10008.5.1.4.1.1.201.1
"Inventory Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.2
"Inventory - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.3
"Inventory - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.4
"Inventory - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.5
"Inventory Creation" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.6
"Repository Query" },
{ 1326, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.201.1.1.1
"Storage Management SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.1
"RT Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.2
"RT Dose Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.3
"RT Structure Set Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.4
"RT Beams Treatment Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.5
"RT Plan Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.6
"RT Brachy Treatment Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.7
"RT Treatment Summary Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.8
"RT Ion Plan Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.9
"RT Ion Beams Treatment Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.10
"RT Physician Intent Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.11
"RT Segment Annotation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.12
"RT Radiation Set Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.13
"C-Arm Photon-Electron Radiation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.14
"Tomotherapeutic Radiation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.15
"Robotic-Arm Radiation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.16
"RT Radiation Record Set Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.17
"RT Radiation Salvage Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.18
"Tomotherapeutic Radiation Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.19
"C-Arm Photon-Electron Radiation Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.20
"Robotic Radiation Record Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.21
"RT Radiation Set Delivery Instruction Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.22
"RT Treatment Preparation Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.23
"Enhanced RT Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.24
"Enhanced Continuous RT Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.481.25
"RT Patient Position Acquisition Instruction Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.1
"DICOS CT Image Storage" },
{ 1358, 2, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.3
"DICOS Threat Detection Report Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.4
"DICOS 2D AIT Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.5
"DICOS 3D AIT Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.6
"DICOS Quadrupole Resonance (QR) Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.2.1
"DICOS Digital X-Ray Image Storage - For Presentation" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.501.2.2
"DICOS Digital X-Ray Image Storage - For Processing" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.601.1
"Eddy Current Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.601.2
"Eddy Current Multi-frame Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.601.3
"Thermography Image Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.1.601.4
"Thermography Multi-frame Image Storage" },
{ 1369, 3, 1, 0, nullptr },
{ 1372, 3, 1, 0, nullptr },
{ 1375, 3, 1, 0, nullptr },
{ 1378, 2, 2, 0, nullptr },
{ 1380, 1, 3, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.1.1
"Patient Root Query/Retrieve Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.1.2
"Patient Root Query/Retrieve Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.1.3
"Patient Root Query/Retrieve Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.2.1
"Study Root Query/Retrieve Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.2.2
"Study Root Query/Retrieve Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.2.3
"Study Root Query/Retrieve Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.3.1 (Retired)
"Patient/Study Only Query/Retrieve Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.3.2 (Retired)
"Patient/Study Only Query/Retrieve Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.3.3 (Retired)
"Patient/Study Only Query/Retrieve Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.4.2
"Composite Instance Root Retrieve - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.4.3
"Composite Instance Root Retrieve - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.1.2.5.3
"Composite Instance Retrieve Without Bulk Data - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.20.1
"Defined Procedure Protocol Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.20.2
"Defined Procedure Protocol Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.20.3
"Defined Procedure Protocol Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.32.1 (Retired)
"General Purpose Worklist Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.32.2 (Retired)
"General Purpose Scheduled Procedure Step SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.32.3 (Retired)
"General Purpose Performed Procedure Step SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.1 (Retired)
"RT Beams Delivery Instruction Storage - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.2 (Retired)
"RT Conventional Machine Verification - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.3 (Retired)
"RT Ion Machine Verification - Trial" },
{ 1397, 4, 1, 0, // 1.2.840.10008.5.1.4.34.4 (Retired)
"Unified Worklist and Procedure Step Service Class - Trial" },
{ 1401, 1, 1, 0, // 1.2.840.10008.5.1.4.34.5
"UPS Global Subscription SOP Instance" },
{ 1402, 5, 1, 0, // 1.2.840.10008.5.1.4.34.6
"Unified Worklist and Procedure Step Service Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.7
"RT Beams Delivery Instruction Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.8
"RT Conventional Machine Verification" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.9
"RT Ion Machine Verification" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.10
"RT Brachy Application Setup Delivery Instruction Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.4.1 (Retired)
"Unified Procedure Step - Push SOP Class - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.4.2 (Retired)
"Unified Procedure Step - Watch SOP Class - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.4.3 (Retired)
"Unified Procedure Step - Pull SOP Class - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.4.4 (Retired)
"Unified Procedure Step - Event SOP Class - Trial" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.5.1
"UPS Filtered Global Subscription SOP Instance" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.6.1
"Unified Procedure Step - Push SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.6.2
"Unified Procedure Step - Watch SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.6.3
"Unified Procedure Step - Pull SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.6.4
"Unified Procedure Step - Event SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.34.6.5
"Unified Procedure Step - Query SOP Class" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.37.1
"General Relevant Patient Information Query" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.37.2
"Breast Imaging Relevant Patient Information Query" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.37.3
"Cardiac Relevant Patient Information Query" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.38.1
"Hanging Protocol Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.38.2
"Hanging Protocol Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.38.3
"Hanging Protocol Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.38.4
"Hanging Protocol Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.39.1
"Color Palette Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.39.2
"Color Palette Query/Retrieve Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.39.3
"Color Palette Query/Retrieve Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.39.4
"Color Palette Query/Retrieve Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.43.1
"Generic Implant Template Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.43.2
"Generic Implant Template Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.43.3
"Generic Implant Template Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.43.4
"Generic Implant Template Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.44.1
"Implant Assembly Template Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.44.2
"Implant Assembly Template Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.44.3
"Implant Assembly Template Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.44.4
"Implant Assembly Template Information Model - GET" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.45.1
"Implant Template Group Storage" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.45.2
"Implant Template Group Information Model - FIND" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.45.3
"Implant Template Group Information Model - MOVE" },
{ 0, 0, 0, 0, // 1.2.840.10008.5.1.4.45.4
"Implant Template Group Information Model - GET" },
{ 1431, 1500, 1, 0, nullptr },
{ 0, 0, 0, 2, // 1.2.840.10008.6.1.1
"Anatomic Modifier" },
{ 0, 0, 0, 4, // 1.2.840.10008.6.1.2
"Anatomic Region" },
{ 0, 0, 0, 5, // 1.2.840.10008.6.1.3
"Transducer Approach" },
{ 0, 0, 0, 6, // 1.2.840.10008.6.1.4
"Transducer Orientation" },
{ 0, 0, 0, 7, // 1.2.840.10008.6.1.5
"Ultrasound Beam Path" },
{ 0, 0, 0, 8, // 1.2.840.10008.6.1.6
"Angiographic Interventional Devices" },
{ 0, 0, 0, 9, // 1.2.840.10008.6.1.7
"Image Guided Therapeutic Procedures" },
{ 0, 0, 0, 10, // 1.2.840.10008.6.1.8
"Interventional Drug" },
{ 0, 0, 0, 11, // 1.2.840.10008.6.1.9
"Route of Administration" },
{ 0, 0, 0, 12, // 1.2.840.10008.6.1.10
"Radiographic Contrast Agent" },
{ 0, 0, 0, 13, // 1.2.840.10008.6.1.11
"Radiographic Contrast Agent Ingredient" },
{ 0, 0, 0, 18, // 1.2.840.10008.6.1.12
"Isotopes in Radiopharmaceuticals" },
{ 0, 0, 0, 19, // 1.2.840.10008.6.1.13
"Patient Orientation" },
{ 0, 0, 0, 20, // 1.2.840.10008.6.1.14
"Patient Orientation Modifier" },
{ 0, 0, 0, 21, // 1.2.840.10008.6.1.15
"Patient Equipment Relationship" },
{ 0, 0, 0, 23, // 1.2.840.10008.6.1.16
"Cranio-Caudad Angulation" },
{ 0, 0, 0, 25, // 1.2.840.10008.6.1.17
"Radiopharmaceuticals" },
{ 0, 0, 0, 26, // 1.2.840.10008.6.1.18
"Nuclear Medicine Projections" },
{ 0, 0, 0, 29, // 1.2.840.10008.6.1.19
"Acquisition Modality" },
{ 0, 0, 0, 30, // 1.2.840.10008.6.1.20
"DICOM Devices" },
{ 0, 0, 0, 31, // 1.2.840.10008.6.1.21
"Abstract Priors" },
{ 0, 0, 0, 42, // 1.2.840.10008.6.1.22
"Numeric Value Qualifier" },
{ 0, 0, 0, 82, // 1.2.840.10008.6.1.23
"Units of Measurement" },
{ 0, 0, 0, 83, // 1.2.840.10008.6.1.24
"Units for Real World Value Mapping" },
{ 0, 0, 0, 220, // 1.2.840.10008.6.1.25
"Level of Significance" },
{ 0, 0, 0, 221, // 1.2.840.10008.6.1.26
"Measurement Range Concepts" },
{ 0, 0, 0, 222, // 1.2.840.10008.6.1.27
"Normality Codes" },
{ 0, 0, 0, 223, // 1.2.840.10008.6.1.28
"Normal Range Values" },
{ 0, 0, 0, 224, // 1.2.840.10008.6.1.29
"Selection Method" },
{ 0, 0, 0, 225, // 1.2.840.10008.6.1.30
"Measurement Uncertainty Concepts" },
{ 0, 0, 0, 226, // 1.2.840.10008.6.1.31
"Population Statistical Descriptors" },
{ 0, 0, 0, 227, // 1.2.840.10008.6.1.32
"Sample Statistical Descriptors" },
{ 0, 0, 0, 228, // 1.2.840.10008.6.1.33
"Equation or Table" },
{ 0, 0, 0, 230, // 1.2.840.10008.6.1.34
"Yes-No" },
{ 0, 0, 0, 240, // 1.2.840.10008.6.1.35
"Present-Absent" },
{ 0, 0, 0, 242, // 1.2.840.10008.6.1.36
"Normal-Abnormal" },
{ 0, 0, 0, 244, // 1.2.840.10008.6.1.37
"Laterality" },
{ 0, 0, 0, 250, // 1.2.840.10008.6.1.38
"Positive-Negative" },
{ 0, 0, 0, 251, // 1.2.840.10008.6.1.39
"Severity of Complication" },
{ 0, 0, 0, 270, // 1.2.840.10008.6.1.40
"Observer Type" },
{ 0, 0, 0, 271, // 1.2.840.10008.6.1.41
"Observation Subject Class" },
{ 0, 0, 0, 3000, // 1.2.840.10008.6.1.42
"Audio Channel Source" },
{ 0, 0, 0, 3001, // 1.2.840.10008.6.1.43
"ECG Leads" },
{ 0, 0, 0, 3003, // 1.2.840.10008.6.1.44
"Hemodynamic Waveform Sources" },
{ 0, 0, 0, 3010, // 1.2.840.10008.6.1.45
"Cardiovascular Anatomic Locations" },
{ 0, 0, 0, 3011, // 1.2.840.10008.6.1.46
"Electrophysiology Anatomic Locations" },
{ 0, 0, 0, 3014, // 1.2.840.10008.6.1.47
"Coronary Artery Segments" },
{ 0, 0, 0, 3015, // 1.2.840.10008.6.1.48
"Coronary Arteries" },
{ 0, 0, 0, 3019, // 1.2.840.10008.6.1.49
"Cardiovascular Anatomic Location Modifiers" },
{ 0, 0, 0, 3082, // 1.2.840.10008.6.1.50 (Retired)
"Cardiology Units of Measurement" },
{ 0, 0, 0, 3090, // 1.2.840.10008.6.1.51
"Time Synchronization Channel Types" },
{ 0, 0, 0, 3101, // 1.2.840.10008.6.1.52
"Cardiac Procedural State Values" },
{ 0, 0, 0, 3240, // 1.2.840.10008.6.1.53
"Electrophysiology Measurement Functions and Techniques" },
{ 0, 0, 0, 3241, // 1.2.840.10008.6.1.54
"Hemodynamic Measurement Techniques" },
{ 0, 0, 0, 3250, // 1.2.840.10008.6.1.55
"Catheterization Procedure Phase" },
{ 0, 0, 0, 3254, // 1.2.840.10008.6.1.56
"Electrophysiology Procedure Phase" },
{ 0, 0, 0, 3261, // 1.2.840.10008.6.1.57
"Stress Protocols" },
{ 0, 0, 0, 3262, // 1.2.840.10008.6.1.58
"ECG Patient State Values" },
{ 0, 0, 0, 3263, // 1.2.840.10008.6.1.59
"Electrode Placement Values" },
{ 0, 0, 0, 3264, // 1.2.840.10008.6.1.60 (Retired)
"XYZ Electrode Placement Values" },
{ 0, 0, 0, 3271, // 1.2.840.10008.6.1.61
"Hemodynamic Physiological Challenges" },
{ 0, 0, 0, 3335, // 1.2.840.10008.6.1.62
"ECG Annotations" },
{ 0, 0, 0, 3337, // 1.2.840.10008.6.1.63
"Hemodynamic Annotations" },
{ 0, 0, 0, 3339, // 1.2.840.10008.6.1.64
"Electrophysiology Annotations" },
{ 0, 0, 0, 3400, // 1.2.840.10008.6.1.65
"Procedure Log Titles" },
{ 0, 0, 0, 3401, // 1.2.840.10008.6.1.66
"Types of Log Notes" },
{ 0, 0, 0, 3402, // 1.2.840.10008.6.1.67
"Patient Status and Events" },
{ 0, 0, 0, 3403, // 1.2.840.10008.6.1.68
"Percutaneous Entry" },
{ 0, 0, 0, 3404, // 1.2.840.10008.6.1.69
"Staff Actions" },
{ 0, 0, 0, 3405, // 1.2.840.10008.6.1.70
"Procedure Action Values" },
{ 0, 0, 0, 3406, // 1.2.840.10008.6.1.71
"Non-coronary Transcatheter Interventions" },
{ 0, 0, 0, 3407, // 1.2.840.10008.6.1.72
"Purpose of Reference to Object" },
{ 0, 0, 0, 3408, // 1.2.840.10008.6.1.73
"Actions With Consumables" },
{ 0, 0, 0, 3409, // 1.2.840.10008.6.1.74
"Administration of Drugs/Contrast" },
{ 0, 0, 0, 3410, // 1.2.840.10008.6.1.75
"Numeric Parameters of Drugs/Contrast" },
{ 0, 0, 0, 3411, // 1.2.840.10008.6.1.76
"Intracoronary Devices" },
{ 0, 0, 0, 3412, // 1.2.840.10008.6.1.77
"Intervention Actions and Status" },
{ 0, 0, 0, 3413, // 1.2.840.10008.6.1.78
"Adverse Outcomes" },
{ 0, 0, 0, 3414, // 1.2.840.10008.6.1.79
"Procedure Urgency" },
{ 0, 0, 0, 3415, // 1.2.840.10008.6.1.80
"Cardiac Rhythms" },
{ 0, 0, 0, 3416, // 1.2.840.10008.6.1.81
"Respiration Rhythms" },
{ 0, 0, 0, 3418, // 1.2.840.10008.6.1.82
"Lesion Risk" },
{ 0, 0, 0, 3419, // 1.2.840.10008.6.1.83
"Findings Titles" },
{ 0, 0, 0, 3421, // 1.2.840.10008.6.1.84
"Procedure Action" },
{ 0, 0, 0, 3422, // 1.2.840.10008.6.1.85
"Device Use Actions" },
{ 0, 0, 0, 3423, // 1.2.840.10008.6.1.86
"Numeric Device Characteristics" },
{ 0, 0, 0, 3425, // 1.2.840.10008.6.1.87
"Intervention Parameters" },
{ 0, 0, 0, 3426, // 1.2.840.10008.6.1.88
"Consumables Parameters" },
{ 0, 0, 0, 3427, // 1.2.840.10008.6.1.89
"Equipment Events" },
{ 0, 0, 0, 3428, // 1.2.840.10008.6.1.90
"Imaging Procedures" },
{ 0, 0, 0, 3429, // 1.2.840.10008.6.1.91
"Catheterization Devices" },
{ 0, 0, 0, 3430, // 1.2.840.10008.6.1.92
"DateTime Qualifiers" },
{ 0, 0, 0, 3440, // 1.2.840.10008.6.1.93
"Peripheral Pulse Locations" },
{ 0, 0, 0, 3441, // 1.2.840.10008.6.1.94
"Patient Assessments" },
{ 0, 0, 0, 3442, // 1.2.840.10008.6.1.95
"Peripheral Pulse Methods" },
{ 0, 0, 0, 3446, // 1.2.840.10008.6.1.96
"Skin Condition" },
{ 0, 0, 0, 3448, // 1.2.840.10008.6.1.97
"Airway Assessment" },
{ 0, 0, 0, 3451, // 1.2.840.10008.6.1.98
"Calibration Objects" },
{ 0, 0, 0, 3452, // 1.2.840.10008.6.1.99
"Calibration Methods" },
{ 0, 0, 0, 3453, // 1.2.840.10008.6.1.100
"Cardiac Volume Methods" },
{ 0, 0, 0, 3455, // 1.2.840.10008.6.1.101
"Index Methods" },
{ 0, 0, 0, 3456, // 1.2.840.10008.6.1.102
"Sub-segment Methods" },
{ 0, 0, 0, 3458, // 1.2.840.10008.6.1.103
"Contour Realignment" },
{ 0, 0, 0, 3460, // 1.2.840.10008.6.1.104
"Circumferential Extent" },
{ 0, 0, 0, 3461, // 1.2.840.10008.6.1.105
"Regional Extent" },
{ 0, 0, 0, 3462, // 1.2.840.10008.6.1.106
"Chamber Identification" },
{ 0, 0, 0, 3465, // 1.2.840.10008.6.1.107
"QA Reference Methods" },
{ 0, 0, 0, 3466, // 1.2.840.10008.6.1.108
"Plane Identification" },
{ 0, 0, 0, 3467, // 1.2.840.10008.6.1.109
"Ejection Fraction" },
{ 0, 0, 0, 3468, // 1.2.840.10008.6.1.110
"ED Volume" },
{ 0, 0, 0, 3469, // 1.2.840.10008.6.1.111
"ES Volume" },
{ 0, 0, 0, 3470, // 1.2.840.10008.6.1.112
"Vessel Lumen Cross-sectional Area Calculation Methods" },
{ 0, 0, 0, 3471, // 1.2.840.10008.6.1.113
"Estimated Volumes" },
{ 0, 0, 0, 3472, // 1.2.840.10008.6.1.114
"Cardiac Contraction Phase" },
{ 0, 0, 0, 3480, // 1.2.840.10008.6.1.115
"IVUS Procedure Phases" },
{ 0, 0, 0, 3481, // 1.2.840.10008.6.1.116
"IVUS Distance Measurements" },
{ 0, 0, 0, 3482, // 1.2.840.10008.6.1.117
"IVUS Area Measurements" },
{ 0, 0, 0, 3483, // 1.2.840.10008.6.1.118
"IVUS Longitudinal Measurements" },
{ 0, 0, 0, 3484, // 1.2.840.10008.6.1.119
"IVUS Indices and Ratios" },
{ 0, 0, 0, 3485, // 1.2.840.10008.6.1.120
"IVUS Volume Measurements" },
{ 0, 0, 0, 3486, // 1.2.840.10008.6.1.121
"Vascular Measurement Sites" },
{ 0, 0, 0, 3487, // 1.2.840.10008.6.1.122
"Intravascular Volumetric Regions" },
{ 0, 0, 0, 3488, // 1.2.840.10008.6.1.123
"Min/Max/Mean" },
{ 0, 0, 0, 3489, // 1.2.840.10008.6.1.124
"Calcium Distribution" },
{ 0, 0, 0, 3491, // 1.2.840.10008.6.1.125
"IVUS Lesion Morphologies" },
{ 0, 0, 0, 3492, // 1.2.840.10008.6.1.126
"Vascular Dissection Classifications" },
{ 0, 0, 0, 3493, // 1.2.840.10008.6.1.127
"IVUS Relative Stenosis Severities" },
{ 0, 0, 0, 3494, // 1.2.840.10008.6.1.128
"IVUS Non Morphological Findings" },
{ 0, 0, 0, 3495, // 1.2.840.10008.6.1.129
"IVUS Plaque Composition" },
{ 0, 0, 0, 3496, // 1.2.840.10008.6.1.130
"IVUS Fiducial Points" },
{ 0, 0, 0, 3497, // 1.2.840.10008.6.1.131
"IVUS Arterial Morphology" },
{ 0, 0, 0, 3500, // 1.2.840.10008.6.1.132
"Pressure Units" },
{ 0, 0, 0, 3502, // 1.2.840.10008.6.1.133
"Hemodynamic Resistance Units" },
{ 0, 0, 0, 3503, // 1.2.840.10008.6.1.134
"Indexed Hemodynamic Resistance Units" },
{ 0, 0, 0, 3510, // 1.2.840.10008.6.1.135
"Catheter Size Units" },
{ 0, 0, 0, 3515, // 1.2.840.10008.6.1.136
"Specimen Collection" },
{ 0, 0, 0, 3520, // 1.2.840.10008.6.1.137
"Blood Source Type" },
{ 0, 0, 0, 3524, // 1.2.840.10008.6.1.138
"Blood Gas Pressures" },
{ 0, 0, 0, 3525, // 1.2.840.10008.6.1.139
"Blood Gas Content" },
{ 0, 0, 0, 3526, // 1.2.840.10008.6.1.140
"Blood Gas Saturation" },
{ 0, 0, 0, 3527, // 1.2.840.10008.6.1.141
"Blood Base Excess" },
{ 0, 0, 0, 3528, // 1.2.840.10008.6.1.142
"Blood pH" },
{ 0, 0, 0, 3529, // 1.2.840.10008.6.1.143
"Arterial / Venous Content" },
{ 0, 0, 0, 3530, // 1.2.840.10008.6.1.144
"Oxygen Administration Actions" },
{ 0, 0, 0, 3531, // 1.2.840.10008.6.1.145
"Oxygen Administration" },
{ 0, 0, 0, 3550, // 1.2.840.10008.6.1.146
"Circulatory Support Actions" },
{ 0, 0, 0, 3551, // 1.2.840.10008.6.1.147
"Ventilation Actions" },
{ 0, 0, 0, 3552, // 1.2.840.10008.6.1.148
"Pacing Actions" },
{ 0, 0, 0, 3553, // 1.2.840.10008.6.1.149
"Circulatory Support" },
{ 0, 0, 0, 3554, // 1.2.840.10008.6.1.150
"Ventilation" },
{ 0, 0, 0, 3555, // 1.2.840.10008.6.1.151
"Pacing" },
{ 0, 0, 0, 3560, // 1.2.840.10008.6.1.152
"Blood Pressure Methods" },
{ 0, 0, 0, 3600, // 1.2.840.10008.6.1.153
"Relative Times" },
{ 0, 0, 0, 3602, // 1.2.840.10008.6.1.154
"Hemodynamic Patient State" },
{ 0, 0, 0, 3604, // 1.2.840.10008.6.1.155
"Arterial Lesion Locations" },
{ 0, 0, 0, 3606, // 1.2.840.10008.6.1.156
"Arterial Source Locations" },
{ 0, 0, 0, 3607, // 1.2.840.10008.6.1.157
"Venous Source Locations" },
{ 0, 0, 0, 3608, // 1.2.840.10008.6.1.158
"Atrial Source Locations" },
{ 0, 0, 0, 3609, // 1.2.840.10008.6.1.159
"Ventricular Source Locations" },
{ 0, 0, 0, 3610, // 1.2.840.10008.6.1.160
"Gradient Source Locations" },
{ 0, 0, 0, 3611, // 1.2.840.10008.6.1.161
"Pressure Measurements" },
{ 0, 0, 0, 3612, // 1.2.840.10008.6.1.162
"Blood Velocity Measurements" },
{ 0, 0, 0, 3613, // 1.2.840.10008.6.1.163
"Hemodynamic Time Measurements" },
{ 0, 0, 0, 3614, // 1.2.840.10008.6.1.164
"Valve Areas, Non-mitral" },
{ 0, 0, 0, 3615, // 1.2.840.10008.6.1.165
"Valve Areas" },
{ 0, 0, 0, 3616, // 1.2.840.10008.6.1.166
"Hemodynamic Period Measurements" },
{ 0, 0, 0, 3617, // 1.2.840.10008.6.1.167
"Valve Flows" },
{ 0, 0, 0, 3618, // 1.2.840.10008.6.1.168
"Hemodynamic Flows" },
{ 0, 0, 0, 3619, // 1.2.840.10008.6.1.169
"Hemodynamic Resistance Measurements" },
{ 0, 0, 0, 3620, // 1.2.840.10008.6.1.170
"Hemodynamic Ratios" },
{ 0, 0, 0, 3621, // 1.2.840.10008.6.1.171
"Fractional Flow Reserve" },
{ 0, 0, 0, 3627, // 1.2.840.10008.6.1.172
"Measurement Type" },
{ 0, 0, 0, 3628, // 1.2.840.10008.6.1.173
"Cardiac Output Methods" },
{ 0, 0, 0, 3629, // 1.2.840.10008.6.1.174
"Procedure Intent" },
{ 0, 0, 0, 3630, // 1.2.840.10008.6.1.175
"Cardiovascular Anatomic Locations" },
{ 0, 0, 0, 3640, // 1.2.840.10008.6.1.176
"Hypertension" },
{ 0, 0, 0, 3641, // 1.2.840.10008.6.1.177
"Hemodynamic Assessments" },
{ 0, 0, 0, 3642, // 1.2.840.10008.6.1.178
"Degree Findings" },
{ 0, 0, 0, 3651, // 1.2.840.10008.6.1.179
"Hemodynamic Measurement Phase" },
{ 0, 0, 0, 3663, // 1.2.840.10008.6.1.180
"Body Surface Area Equations" },
{ 0, 0, 0, 3664, // 1.2.840.10008.6.1.181
"Oxygen Consumption Equations and Tables" },
{ 0, 0, 0, 3666, // 1.2.840.10008.6.1.182
"P50 Equations" },
{ 0, 0, 0, 3667, // 1.2.840.10008.6.1.183
"Framingham Scores" },
{ 0, 0, 0, 3668, // 1.2.840.10008.6.1.184
"Framingham Tables" },
{ 0, 0, 0, 3670, // 1.2.840.10008.6.1.185
"ECG Procedure Types" },
{ 0, 0, 0, 3671, // 1.2.840.10008.6.1.186
"Reason for ECG Exam" },
{ 0, 0, 0, 3672, // 1.2.840.10008.6.1.187
"Pacemakers" },
{ 0, 0, 0, 3673, // 1.2.840.10008.6.1.188 (Retired)
"Diagnosis" },
{ 0, 0, 0, 3675, // 1.2.840.10008.6.1.189 (Retired)
"Other Filters" },
{ 0, 0, 0, 3676, // 1.2.840.10008.6.1.190
"Lead Measurement Technique" },
{ 0, 0, 0, 3677, // 1.2.840.10008.6.1.191
"Summary Codes ECG" },
{ 0, 0, 0, 3678, // 1.2.840.10008.6.1.192
"QT Correction Algorithms" },
{ 0, 0, 0, 3679, // 1.2.840.10008.6.1.193 (Retired)
"ECG Morphology Descriptions" },
{ 0, 0, 0, 3680, // 1.2.840.10008.6.1.194
"ECG Lead Noise Descriptions" },
{ 0, 0, 0, 3681, // 1.2.840.10008.6.1.195 (Retired)
"ECG Lead Noise Modifiers" },
{ 0, 0, 0, 3682, // 1.2.840.10008.6.1.196 (Retired)
"Probability" },
{ 0, 0, 0, 3683, // 1.2.840.10008.6.1.197 (Retired)
"Modifiers" },
{ 0, 0, 0, 3684, // 1.2.840.10008.6.1.198 (Retired)
"Trend" },
{ 0, 0, 0, 3685, // 1.2.840.10008.6.1.199 (Retired)
"Conjunctive Terms" },
{ 0, 0, 0, 3686, // 1.2.840.10008.6.1.200 (Retired)
"ECG Interpretive Statements" },
{ 0, 0, 0, 3687, // 1.2.840.10008.6.1.201
"Electrophysiology Waveform Durations" },
{ 0, 0, 0, 3688, // 1.2.840.10008.6.1.202
"Electrophysiology Waveform Voltages" },
{ 0, 0, 0, 3700, // 1.2.840.10008.6.1.203
"Cath Diagnosis" },
{ 0, 0, 0, 3701, // 1.2.840.10008.6.1.204
"Cardiac Valves and Tracts" },
{ 0, 0, 0, 3703, // 1.2.840.10008.6.1.205
"Wall Motion" },
{ 0, 0, 0, 3704, // 1.2.840.10008.6.1.206
"Myocardium Wall Morphology Findings" },
{ 0, 0, 0, 3705, // 1.2.840.10008.6.1.207
"Chamber Size" },
{ 0, 0, 0, 3706, // 1.2.840.10008.6.1.208
"Overall Contractility" },
{ 0, 0, 0, 3707, // 1.2.840.10008.6.1.209
"VSD Description" },
{ 0, 0, 0, 3709, // 1.2.840.10008.6.1.210
"Aortic Root Description" },
{ 0, 0, 0, 3710, // 1.2.840.10008.6.1.211
"Coronary Dominance" },
{ 0, 0, 0, 3711, // 1.2.840.10008.6.1.212
"Valvular Abnormalities" },
{ 0, 0, 0, 3712, // 1.2.840.10008.6.1.213
"Vessel Descriptors" },
{ 0, 0, 0, 3713, // 1.2.840.10008.6.1.214
"TIMI Flow Characteristics" },
{ 0, 0, 0, 3714, // 1.2.840.10008.6.1.215
"Thrombus" },
{ 0, 0, 0, 3715, // 1.2.840.10008.6.1.216
"Lesion Margin" },
{ 0, 0, 0, 3716, // 1.2.840.10008.6.1.217
"Severity" },
{ 0, 0, 0, 3717, // 1.2.840.10008.6.1.218
"Myocardial Wall Segments" },
{ 0, 0, 0, 3718, // 1.2.840.10008.6.1.219
"Myocardial Wall Segments in Projection" },
{ 0, 0, 0, 3719, // 1.2.840.10008.6.1.220
"Canadian Clinical Classification" },
{ 0, 0, 0, 3720, // 1.2.840.10008.6.1.221 (Retired)
"Cardiac History Dates" },
{ 0, 0, 0, 3721, // 1.2.840.10008.6.1.222
"Cardiovascular Surgeries" },
{ 0, 0, 0, 3722, // 1.2.840.10008.6.1.223
"Diabetic Therapy" },
{ 0, 0, 0, 3723, // 1.2.840.10008.6.1.224
"MI Types" },
{ 0, 0, 0, 3724, // 1.2.840.10008.6.1.225
"Smoking History" },
{ 0, 0, 0, 3726, // 1.2.840.10008.6.1.226
"Indications for Coronary Intervention" },
{ 0, 0, 0, 3727, // 1.2.840.10008.6.1.227
"Indications for Catheterization" },
{ 0, 0, 0, 3728, // 1.2.840.10008.6.1.228
"Cath Findings" },
{ 0, 0, 0, 3729, // 1.2.840.10008.6.1.229
"Admission Status" },
{ 0, 0, 0, 3730, // 1.2.840.10008.6.1.230
"Insurance Payor" },
{ 0, 0, 0, 3733, // 1.2.840.10008.6.1.231
"Primary Cause of Death" },
{ 0, 0, 0, 3735, // 1.2.840.10008.6.1.232
"Acute Coronary Syndrome Time Period" },
{ 0, 0, 0, 3736, // 1.2.840.10008.6.1.233
"NYHA Classification" },
{ 0, 0, 0, 3737, // 1.2.840.10008.6.1.234
"Non-invasive Test - Ischemia" },
{ 0, 0, 0, 3738, // 1.2.840.10008.6.1.235
"Pre-Cath Angina Type" },
{ 0, 0, 0, 3739, // 1.2.840.10008.6.1.236
"Cath Procedure Type" },
{ 0, 0, 0, 3740, // 1.2.840.10008.6.1.237
"Thrombolytic Administration" },
{ 0, 0, 0, 3741, // 1.2.840.10008.6.1.238
"Medication Administration, Lab Visit" },
{ 0, 0, 0, 3742, // 1.2.840.10008.6.1.239
"Medication Administration, PCI" },
{ 0, 0, 0, 3743, // 1.2.840.10008.6.1.240
"Clopidogrel/Ticlopidine Administration" },
{ 0, 0, 0, 3744, // 1.2.840.10008.6.1.241
"EF Testing Method" },
{ 0, 0, 0, 3745, // 1.2.840.10008.6.1.242
"Calculation Method" },
{ 0, 0, 0, 3746, // 1.2.840.10008.6.1.243
"Percutaneous Entry Site" },
{ 0, 0, 0, 3747, // 1.2.840.10008.6.1.244
"Percutaneous Closure" },
{ 0, 0, 0, 3748, // 1.2.840.10008.6.1.245
"Angiographic EF Testing Method" },
{ 0, 0, 0, 3749, // 1.2.840.10008.6.1.246
"PCI Procedure Result" },
{ 0, 0, 0, 3750, // 1.2.840.10008.6.1.247
"Previously Dilated Lesion" },
{ 0, 0, 0, 3752, // 1.2.840.10008.6.1.248
"Guidewire Crossing" },
{ 0, 0, 0, 3754, // 1.2.840.10008.6.1.249
"Vascular Complications" },
{ 0, 0, 0, 3755, // 1.2.840.10008.6.1.250
"Cath Complications" },
{ 0, 0, 0, 3756, // 1.2.840.10008.6.1.251
"Cardiac Patient Risk Factors" },
{ 0, 0, 0, 3757, // 1.2.840.10008.6.1.252
"Cardiac Diagnostic Procedures" },
{ 0, 0, 0, 3758, // 1.2.840.10008.6.1.253
"Cardiovascular Family History" },
{ 0, 0, 0, 3760, // 1.2.840.10008.6.1.254
"Hypertension Therapy" },
{ 0, 0, 0, 3761, // 1.2.840.10008.6.1.255
"Antilipemic Agents" },
{ 0, 0, 0, 3762, // 1.2.840.10008.6.1.256
"Antiarrhythmic Agents" },
{ 0, 0, 0, 3764, // 1.2.840.10008.6.1.257
"Myocardial Infarction Therapies" },
{ 0, 0, 0, 3769, // 1.2.840.10008.6.1.258
"Concern Types" },
{ 0, 0, 0, 3770, // 1.2.840.10008.6.1.259
"Problem Status" },
{ 0, 0, 0, 3772, // 1.2.840.10008.6.1.260
"Health Status" },
{ 0, 0, 0, 3773, // 1.2.840.10008.6.1.261
"Use Status" },
{ 0, 0, 0, 3774, // 1.2.840.10008.6.1.262
"Social History" },
{ 0, 0, 0, 3777, // 1.2.840.10008.6.1.263
"Implanted Devices" },
{ 0, 0, 0, 3802, // 1.2.840.10008.6.1.264
"Plaque Structures" },
{ 0, 0, 0, 3804, // 1.2.840.10008.6.1.265
"Stenosis Measurement Methods" },
{ 0, 0, 0, 3805, // 1.2.840.10008.6.1.266
"Stenosis Types" },
{ 0, 0, 0, 3806, // 1.2.840.10008.6.1.267
"Stenosis Shape" },
{ 0, 0, 0, 3807, // 1.2.840.10008.6.1.268
"Volume Measurement Methods" },
{ 0, 0, 0, 3808, // 1.2.840.10008.6.1.269
"Aneurysm Types" },
{ 0, 0, 0, 3809, // 1.2.840.10008.6.1.270
"Associated Conditions" },
{ 0, 0, 0, 3810, // 1.2.840.10008.6.1.271
"Vascular Morphology" },
{ 0, 0, 0, 3813, // 1.2.840.10008.6.1.272
"Stent Findings" },
{ 0, 0, 0, 3814, // 1.2.840.10008.6.1.273
"Stent Composition" },
{ 0, 0, 0, 3815, // 1.2.840.10008.6.1.274
"Source of Vascular Finding" },
{ 0, 0, 0, 3817, // 1.2.840.10008.6.1.275
"Vascular Sclerosis Types" },
{ 0, 0, 0, 3820, // 1.2.840.10008.6.1.276
"Non-invasive Vascular Procedures" },
{ 0, 0, 0, 3821, // 1.2.840.10008.6.1.277
"Papillary Muscle Included/Excluded" },
{ 0, 0, 0, 3823, // 1.2.840.10008.6.1.278
"Respiratory Status" },
{ 0, 0, 0, 3826, // 1.2.840.10008.6.1.279
"Heart Rhythm" },
{ 0, 0, 0, 3827, // 1.2.840.10008.6.1.280
"Vessel Segments" },
{ 0, 0, 0, 3829, // 1.2.840.10008.6.1.281
"Pulmonary Arteries" },
{ 0, 0, 0, 3831, // 1.2.840.10008.6.1.282
"Stenosis Length" },
{ 0, 0, 0, 3832, // 1.2.840.10008.6.1.283
"Stenosis Grade" },
{ 0, 0, 0, 3833, // 1.2.840.10008.6.1.284
"Cardiac Ejection Fraction" },
{ 0, 0, 0, 3835, // 1.2.840.10008.6.1.285
"Cardiac Volume Measurements" },
{ 0, 0, 0, 3836, // 1.2.840.10008.6.1.286
"Time-based Perfusion Measurements" },
{ 0, 0, 0, 3837, // 1.2.840.10008.6.1.287
"Fiducial Feature" },
{ 0, 0, 0, 3838, // 1.2.840.10008.6.1.288
"Diameter Derivation" },
{ 0, 0, 0, 3839, // 1.2.840.10008.6.1.289
"Coronary Veins" },
{ 0, 0, 0, 3840, // 1.2.840.10008.6.1.290
"Pulmonary Veins" },
{ 0, 0, 0, 3843, // 1.2.840.10008.6.1.291
"Myocardial Subsegment" },
{ 0, 0, 0, 4005, // 1.2.840.10008.6.1.292
"Partial View Section for Mammography" },
{ 0, 0, 0, 4009, // 1.2.840.10008.6.1.293
"DX Anatomy Imaged" },
{ 0, 0, 0, 4010, // 1.2.840.10008.6.1.294
"DX View" },
{ 0, 0, 0, 4011, // 1.2.840.10008.6.1.295
"DX View Modifier" },
{ 0, 0, 0, 4012, // 1.2.840.10008.6.1.296
"Projection Eponymous Name" },
{ 0, 0, 0, 4013, // 1.2.840.10008.6.1.297
"Anatomic Region for Mammography" },
{ 0, 0, 0, 4014, // 1.2.840.10008.6.1.298
"View for Mammography" },
{ 0, 0, 0, 4015, // 1.2.840.10008.6.1.299
"View Modifier for Mammography" },
{ 0, 0, 0, 4016, // 1.2.840.10008.6.1.300
"Anatomic Region for Intra-oral Radiography" },
{ 0, 0, 0, 4017, // 1.2.840.10008.6.1.301
"Anatomic Region Modifier for Intra-oral Radiography" },
{ 0, 0, 0, 4018, // 1.2.840.10008.6.1.302
"Primary Anatomic Structure for Intra-oral Radiography (Permanent Dentition - Designation of Teeth)" },
{ 0, 0, 0, 4019, // 1.2.840.10008.6.1.303
"Primary Anatomic Structure for Intra-oral Radiography (Deciduous Dentition - Designation of Teeth)" },
{ 0, 0, 0, 4020, // 1.2.840.10008.6.1.304
"PET Radionuclide" },
{ 0, 0, 0, 4021, // 1.2.840.10008.6.1.305
"PET Radiopharmaceutical" },
{ 0, 0, 0, 4028, // 1.2.840.10008.6.1.306
"Craniofacial Anatomic Regions" },
{ 0, 0, 0, 4030, // 1.2.840.10008.6.1.307
"CT, MR and PET Anatomy Imaged" },
{ 0, 0, 0, 4031, // 1.2.840.10008.6.1.308
"Common Anatomic Regions" },
{ 0, 0, 0, 4032, // 1.2.840.10008.6.1.309
"MR Spectroscopy Metabolites" },
{ 0, 0, 0, 4033, // 1.2.840.10008.6.1.310
"MR Proton Spectroscopy Metabolites" },
{ 0, 0, 0, 4040, // 1.2.840.10008.6.1.311
"Endoscopy Anatomic Regions" },
{ 0, 0, 0, 4042, // 1.2.840.10008.6.1.312
"XA/XRF Anatomy Imaged" },
{ 0, 0, 0, 4050, // 1.2.840.10008.6.1.313
"Drug or Contrast Agent Characteristics" },
{ 0, 0, 0, 4051, // 1.2.840.10008.6.1.314
"General Devices" },
{ 0, 0, 0, 4052, // 1.2.840.10008.6.1.315
"Phantom Devices" },
{ 0, 0, 0, 4200, // 1.2.840.10008.6.1.316
"Ophthalmic Imaging Agent" },
{ 0, 0, 0, 4201, // 1.2.840.10008.6.1.317
"Patient Eye Movement Command" },
{ 0, 0, 0, 4202, // 1.2.840.10008.6.1.318
"Ophthalmic Photography Acquisition Device" },
{ 0, 0, 0, 4203, // 1.2.840.10008.6.1.319
"Ophthalmic Photography Illumination" },
{ 0, 0, 0, 4204, // 1.2.840.10008.6.1.320
"Ophthalmic Filter" },
{ 0, 0, 0, 4205, // 1.2.840.10008.6.1.321
"Ophthalmic Lens" },
{ 0, 0, 0, 4206, // 1.2.840.10008.6.1.322
"Ophthalmic Channel Description" },
{ 0, 0, 0, 4207, // 1.2.840.10008.6.1.323
"Ophthalmic Image Position" },
{ 0, 0, 0, 4208, // 1.2.840.10008.6.1.324
"Mydriatic Agent" },
{ 0, 0, 0, 4209, // 1.2.840.10008.6.1.325
"Ophthalmic Anatomic Structure Imaged" },
{ 0, 0, 0, 4210, // 1.2.840.10008.6.1.326
"Ophthalmic Tomography Acquisition Device" },
{ 0, 0, 0, 4211, // 1.2.840.10008.6.1.327
"Ophthalmic OCT Anatomic Structure Imaged" },
{ 0, 0, 0, 5000, // 1.2.840.10008.6.1.328
"Languages" },
{ 0, 0, 0, 5001, // 1.2.840.10008.6.1.329
"Countries" },
{ 0, 0, 0, 6000, // 1.2.840.10008.6.1.330
"Overall Breast Composition" },
{ 0, 0, 0, 6001, // 1.2.840.10008.6.1.331
"Overall Breast Composition from BI-RADS(R)" },
{ 0, 0, 0, 6002, // 1.2.840.10008.6.1.332
"Change Since Last Mammogram or Prior Surgery" },
{ 0, 0, 0, 6003, // 1.2.840.10008.6.1.333
"Change Since Last Mammogram or Prior Surgery from BI-RADS(R)" },
{ 0, 0, 0, 6004, // 1.2.840.10008.6.1.334
"Mammography Characteristics of Shape" },
{ 0, 0, 0, 6005, // 1.2.840.10008.6.1.335
"Characteristics of Shape from BI-RADS(R)" },
{ 0, 0, 0, 6006, // 1.2.840.10008.6.1.336
"Mammography Characteristics of Margin" },
{ 0, 0, 0, 6007, // 1.2.840.10008.6.1.337
"Characteristics of Margin from BI-RADS(R)" },
{ 0, 0, 0, 6008, // 1.2.840.10008.6.1.338
"Density Modifier" },
{ 0, 0, 0, 6009, // 1.2.840.10008.6.1.339
"Density Modifier from BI-RADS(R)" },
{ 0, 0, 0, 6010, // 1.2.840.10008.6.1.340
"Mammography Calcification Types" },
{ 0, 0, 0, 6011, // 1.2.840.10008.6.1.341
"Calcification Types from BI-RADS(R)" },
{ 0, 0, 0, 6012, // 1.2.840.10008.6.1.342
"Calcification Distribution Modifier" },
{ 0, 0, 0, 6013, // 1.2.840.10008.6.1.343
"Calcification Distribution Modifier from BI-RADS(R)" },
{ 0, 0, 0, 6014, // 1.2.840.10008.6.1.344
"Mammography Single Image Finding" },
{ 0, 0, 0, 6015, // 1.2.840.10008.6.1.345
"Single Image Finding from BI-RADS(R)" },
{ 0, 0, 0, 6016, // 1.2.840.10008.6.1.346
"Mammography Composite Feature" },
{ 0, 0, 0, 6017, // 1.2.840.10008.6.1.347
"Composite Feature from BI-RADS(R)" },
{ 0, 0, 0, 6018, // 1.2.840.10008.6.1.348
"Clockface Location or Region" },
{ 0, 0, 0, 6019, // 1.2.840.10008.6.1.349
"Clockface Location or Region from BI-RADS(R)" },
{ 0, 0, 0, 6020, // 1.2.840.10008.6.1.350
"Quadrant Location" },
{ 0, 0, 0, 6021, // 1.2.840.10008.6.1.351
"Quadrant Location from BI-RADS(R)" },
{ 0, 0, 0, 6022, // 1.2.840.10008.6.1.352
"Side" },
{ 0, 0, 0, 6023, // 1.2.840.10008.6.1.353
"Side from BI-RADS(R)" },
{ 0, 0, 0, 6024, // 1.2.840.10008.6.1.354
"Depth" },
{ 0, 0, 0, 6025, // 1.2.840.10008.6.1.355
"Depth from BI-RADS(R)" },
{ 0, 0, 0, 6026, // 1.2.840.10008.6.1.356
"Mammography Assessment" },
{ 0, 0, 0, 6027, // 1.2.840.10008.6.1.357
"Assessment from BI-RADS(R)" },
{ 0, 0, 0, 6028, // 1.2.840.10008.6.1.358
"Mammography Recommended Follow-up" },
{ 0, 0, 0, 6029, // 1.2.840.10008.6.1.359
"Recommended Follow-up from BI-RADS(R)" },
{ 0, 0, 0, 6030, // 1.2.840.10008.6.1.360
"Mammography Pathology Codes" },
{ 0, 0, 0, 6031, // 1.2.840.10008.6.1.361
"Benign Pathology Codes from BI-RADS(R)" },
{ 0, 0, 0, 6032, // 1.2.840.10008.6.1.362
"High Risk Lesions Pathology Codes from BI-RADS(R)" },
{ 0, 0, 0, 6033, // 1.2.840.10008.6.1.363
"Malignant Pathology Codes from BI-RADS(R)" },
{ 0, 0, 0, 6034, // 1.2.840.10008.6.1.364
"Intended Use of CAD Output" },
{ 0, 0, 0, 6035, // 1.2.840.10008.6.1.365
"Composite Feature Relations" },
{ 0, 0, 0, 6036, // 1.2.840.10008.6.1.366
"Scope of Feature" },
{ 0, 0, 0, 6037, // 1.2.840.10008.6.1.367
"Mammography Quantitative Temporal Difference Type" },
{ 0, 0, 0, 6038, // 1.2.840.10008.6.1.368
"Mammography Qualitative Temporal Difference Type" },
{ 0, 0, 0, 6039, // 1.2.840.10008.6.1.369
"Nipple Characteristic" },
{ 0, 0, 0, 6040, // 1.2.840.10008.6.1.370
"Non-lesion Object Type" },
{ 0, 0, 0, 6041, // 1.2.840.10008.6.1.371
"Mammography Image Quality Finding" },
{ 0, 0, 0, 6042, // 1.2.840.10008.6.1.372
"Status of Results" },
{ 0, 0, 0, 6043, // 1.2.840.10008.6.1.373
"Types of Mammography CAD Analysis" },
{ 0, 0, 0, 6044, // 1.2.840.10008.6.1.374
"Types of Image Quality Assessment" },
{ 0, 0, 0, 6045, // 1.2.840.10008.6.1.375
"Mammography Types of Quality Control Standard" },
{ 0, 0, 0, 6046, // 1.2.840.10008.6.1.376
"Units of Follow-up Interval" },
{ 0, 0, 0, 6047, // 1.2.840.10008.6.1.377
"CAD Processing and Findings Summary" },
{ 0, 0, 0, 6048, // 1.2.840.10008.6.1.378
"CAD Operating Point Axis Label" },
{ 0, 0, 0, 6050, // 1.2.840.10008.6.1.379
"Breast Procedure Reported" },
{ 0, 0, 0, 6051, // 1.2.840.10008.6.1.380
"Breast Procedure Reason" },
{ 0, 0, 0, 6052, // 1.2.840.10008.6.1.381
"Breast Imaging Report Section Title" },
{ 0, 0, 0, 6053, // 1.2.840.10008.6.1.382
"Breast Imaging Report Elements" },
{ 0, 0, 0, 6054, // 1.2.840.10008.6.1.383
"Breast Imaging Findings" },
{ 0, 0, 0, 6055, // 1.2.840.10008.6.1.384
"Breast Clinical Finding or Indicated Problem" },
{ 0, 0, 0, 6056, // 1.2.840.10008.6.1.385
"Associated Findings for Breast" },
{ 0, 0, 0, 6057, // 1.2.840.10008.6.1.386
"Ductography Findings for Breast" },
{ 0, 0, 0, 6058, // 1.2.840.10008.6.1.387
"Procedure Modifiers for Breast" },
{ 0, 0, 0, 6059, // 1.2.840.10008.6.1.388
"Breast Implant Types" },
{ 0, 0, 0, 6060, // 1.2.840.10008.6.1.389
"Breast Biopsy Techniques" },
{ 0, 0, 0, 6061, // 1.2.840.10008.6.1.390
"Breast Imaging Procedure Modifiers" },
{ 0, 0, 0, 6062, // 1.2.840.10008.6.1.391
"Interventional Procedure Complications" },
{ 0, 0, 0, 6063, // 1.2.840.10008.6.1.392
"Interventional Procedure Results" },
{ 0, 0, 0, 6064, // 1.2.840.10008.6.1.393
"Ultrasound Findings for Breast" },
{ 0, 0, 0, 6065, // 1.2.840.10008.6.1.394
"Instrument Approach" },
{ 0, 0, 0, 6066, // 1.2.840.10008.6.1.395
"Target Confirmation" },
{ 0, 0, 0, 6067, // 1.2.840.10008.6.1.396
"Fluid Color" },
{ 0, 0, 0, 6068, // 1.2.840.10008.6.1.397
"Tumor Stages From AJCC" },
{ 0, 0, 0, 6069, // 1.2.840.10008.6.1.398
"Nottingham Combined Histologic Grade" },
{ 0, 0, 0, 6070, // 1.2.840.10008.6.1.399
"Bloom-Richardson Histologic Grade" },
{ 0, 0, 0, 6071, // 1.2.840.10008.6.1.400
"Histologic Grading Method" },
{ 0, 0, 0, 6072, // 1.2.840.10008.6.1.401
"Breast Implant Findings" },
{ 0, 0, 0, 6080, // 1.2.840.10008.6.1.402
"Gynecological Hormones" },
{ 0, 0, 0, 6081, // 1.2.840.10008.6.1.403
"Breast Cancer Risk Factors" },
{ 0, 0, 0, 6082, // 1.2.840.10008.6.1.404
"Gynecological Procedures" },
{ 0, 0, 0, 6083, // 1.2.840.10008.6.1.405
"Procedures for Breast" },
{ 0, 0, 0, 6084, // 1.2.840.10008.6.1.406
"Mammoplasty Procedures" },
{ 0, 0, 0, 6085, // 1.2.840.10008.6.1.407
"Therapies for Breast" },
{ 0, 0, 0, 6086, // 1.2.840.10008.6.1.408
"Menopausal Phase" },
{ 0, 0, 0, 6087, // 1.2.840.10008.6.1.409
"General Risk Factors" },
{ 0, 0, 0, 6088, // 1.2.840.10008.6.1.410
"OB-GYN Maternal Risk Factors" },
{ 0, 0, 0, 6089, // 1.2.840.10008.6.1.411
"Substances" },
{ 0, 0, 0, 6090, // 1.2.840.10008.6.1.412
"Relative Usage, Exposure Amount" },
{ 0, 0, 0, 6091, // 1.2.840.10008.6.1.413
"Relative Frequency of Event Values" },
{ 0, 0, 0, 6092, // 1.2.840.10008.6.1.414
"Quantitative Concepts for Usage, Exposure" },
{ 0, 0, 0, 6093, // 1.2.840.10008.6.1.415
"Qualitative Concepts for Usage, Exposure Amount" },
{ 0, 0, 0, 6094, // 1.2.840.10008.6.1.416
"Qualitative Concepts for Usage, Exposure Frequency" },
{ 0, 0, 0, 6095, // 1.2.840.10008.6.1.417
"Numeric Properties of Procedures" },
{ 0, 0, 0, 6096, // 1.2.840.10008.6.1.418
"Pregnancy Status" },
{ 0, 0, 0, 6097, // 1.2.840.10008.6.1.419
"Side of Family" },
{ 0, 0, 0, 6100, // 1.2.840.10008.6.1.420
"Chest Component Categories" },
{ 0, 0, 0, 6101, // 1.2.840.10008.6.1.421
"Chest Finding or Feature" },
{ 0, 0, 0, 6102, // 1.2.840.10008.6.1.422
"Chest Finding or Feature Modifier" },
{ 0, 0, 0, 6103, // 1.2.840.10008.6.1.423
"Abnormal Lines Finding or Feature" },
{ 0, 0, 0, 6104, // 1.2.840.10008.6.1.424
"Abnormal Opacity Finding or Feature" },
{ 0, 0, 0, 6105, // 1.2.840.10008.6.1.425
"Abnormal Lucency Finding or Feature" },
{ 0, 0, 0, 6106, // 1.2.840.10008.6.1.426
"Abnormal Texture Finding or Feature" },
{ 0, 0, 0, 6107, // 1.2.840.10008.6.1.427
"Width Descriptor" },
{ 0, 0, 0, 6108, // 1.2.840.10008.6.1.428
"Chest Anatomic Structure Abnormal Distribution" },
{ 0, 0, 0, 6109, // 1.2.840.10008.6.1.429
"Radiographic Anatomy Finding or Feature" },
{ 0, 0, 0, 6110, // 1.2.840.10008.6.1.430
"Lung Anatomy Finding or Feature" },
{ 0, 0, 0, 6111, // 1.2.840.10008.6.1.431
"Bronchovascular Anatomy Finding or Feature" },
{ 0, 0, 0, 6112, // 1.2.840.10008.6.1.432
"Pleura Anatomy Finding or Feature" },
{ 0, 0, 0, 6113, // 1.2.840.10008.6.1.433
"Mediastinum Anatomy Finding or Feature" },
{ 0, 0, 0, 6114, // 1.2.840.10008.6.1.434
"Osseous Anatomy Finding or Feature" },
{ 0, 0, 0, 6115, // 1.2.840.10008.6.1.435
"Osseous Anatomy Modifiers" },
{ 0, 0, 0, 6116, // 1.2.840.10008.6.1.436
"Muscular Anatomy" },
{ 0, 0, 0, 6117, // 1.2.840.10008.6.1.437
"Vascular Anatomy" },
{ 0, 0, 0, 6118, // 1.2.840.10008.6.1.438
"Size Descriptor" },
{ 0, 0, 0, 6119, // 1.2.840.10008.6.1.439
"Chest Border Shape" },
{ 0, 0, 0, 6120, // 1.2.840.10008.6.1.440
"Chest Border Definition" },
{ 0, 0, 0, 6121, // 1.2.840.10008.6.1.441
"Chest Orientation Descriptor" },
{ 0, 0, 0, 6122, // 1.2.840.10008.6.1.442
"Chest Content Descriptor" },
{ 0, 0, 0, 6123, // 1.2.840.10008.6.1.443
"Chest Opacity Descriptor" },
{ 0, 0, 0, 6124, // 1.2.840.10008.6.1.444
"Location in Chest" },
{ 0, 0, 0, 6125, // 1.2.840.10008.6.1.445
"General Chest Location" },
{ 0, 0, 0, 6126, // 1.2.840.10008.6.1.446
"Location in Lung" },
{ 0, 0, 0, 6127, // 1.2.840.10008.6.1.447
"Segment Location in Lung" },
{ 0, 0, 0, 6128, // 1.2.840.10008.6.1.448
"Chest Distribution Descriptor" },
{ 0, 0, 0, 6129, // 1.2.840.10008.6.1.449
"Chest Site Involvement" },
{ 0, 0, 0, 6130, // 1.2.840.10008.6.1.450
"Severity Descriptor" },
{ 0, 0, 0, 6131, // 1.2.840.10008.6.1.451
"Chest Texture Descriptor" },
{ 0, 0, 0, 6132, // 1.2.840.10008.6.1.452
"Chest Calcification Descriptor" },
{ 0, 0, 0, 6133, // 1.2.840.10008.6.1.453
"Chest Quantitative Temporal Difference Type" },
{ 0, 0, 0, 6134, // 1.2.840.10008.6.1.454
"Chest Qualitative Temporal Difference Type" },
{ 0, 0, 0, 6135, // 1.2.840.10008.6.1.455
"Image Quality Finding" },
{ 0, 0, 0, 6136, // 1.2.840.10008.6.1.456
"Chest Types of Quality Control Standard" },
{ 0, 0, 0, 6137, // 1.2.840.10008.6.1.457
"Types of CAD Analysis" },
{ 0, 0, 0, 6138, // 1.2.840.10008.6.1.458
"Chest Non-lesion Object Type" },
{ 0, 0, 0, 6139, // 1.2.840.10008.6.1.459
"Non-lesion Modifiers" },
{ 0, 0, 0, 6140, // 1.2.840.10008.6.1.460
"Calculation Methods" },
{ 0, 0, 0, 6141, // 1.2.840.10008.6.1.461
"Attenuation Coefficient Measurements" },
{ 0, 0, 0, 6142, // 1.2.840.10008.6.1.462
"Calculated Value" },
{ 0, 0, 0, 6143, // 1.2.840.10008.6.1.463
"Lesion Response" },
{ 0, 0, 0, 6144, // 1.2.840.10008.6.1.464
"RECIST Defined Lesion Response" },
{ 0, 0, 0, 6145, // 1.2.840.10008.6.1.465
"Baseline Category" },
{ 0, 0, 0, 6151, // 1.2.840.10008.6.1.466
"Background Echotexture" },
{ 0, 0, 0, 6152, // 1.2.840.10008.6.1.467
"Orientation" },
{ 0, 0, 0, 6153, // 1.2.840.10008.6.1.468
"Lesion Boundary" },
{ 0, 0, 0, 6154, // 1.2.840.10008.6.1.469
"Echo Pattern" },
{ 0, 0, 0, 6155, // 1.2.840.10008.6.1.470
"Posterior Acoustic Features" },
{ 0, 0, 0, 6157, // 1.2.840.10008.6.1.471
"Vascularity" },
{ 0, 0, 0, 6158, // 1.2.840.10008.6.1.472
"Correlation to Other Findings" },
{ 0, 0, 0, 6159, // 1.2.840.10008.6.1.473
"Malignancy Type" },
{ 0, 0, 0, 6160, // 1.2.840.10008.6.1.474
"Breast Primary Tumor Assessment From AJCC" },
{ 0, 0, 0, 6161, // 1.2.840.10008.6.1.475
"Clinical Regional Lymph Node Assessment for Breast" },
{ 0, 0, 0, 6162, // 1.2.840.10008.6.1.476
"Assessment of Metastasis for Breast" },
{ 0, 0, 0, 6163, // 1.2.840.10008.6.1.477
"Menstrual Cycle Phase" },
{ 0, 0, 0, 6164, // 1.2.840.10008.6.1.478
"Time Intervals" },
{ 0, 0, 0, 6165, // 1.2.840.10008.6.1.479
"Breast Linear Measurements" },
{ 0, 0, 0, 6166, // 1.2.840.10008.6.1.480
"CAD Geometry Secondary Graphical Representation" },
{ 0, 0, 0, 7000, // 1.2.840.10008.6.1.481
"Diagnostic Imaging Report Document Titles" },
{ 0, 0, 0, 7001, // 1.2.840.10008.6.1.482
"Diagnostic Imaging Report Headings" },
{ 0, 0, 0, 7002, // 1.2.840.10008.6.1.483
"Diagnostic Imaging Report Elements" },
{ 0, 0, 0, 7003, // 1.2.840.10008.6.1.484
"Diagnostic Imaging Report Purposes of Reference" },
{ 0, 0, 0, 7004, // 1.2.840.10008.6.1.485
"Waveform Purposes of Reference" },
{ 0, 0, 0, 7005, // 1.2.840.10008.6.1.486
"Contributing Equipment Purposes of Reference" },
{ 0, 0, 0, 7006, // 1.2.840.10008.6.1.487
"SR Document Purposes of Reference" },
{ 0, 0, 0, 7007, // 1.2.840.10008.6.1.488
"Signature Purpose" },
{ 0, 0, 0, 7008, // 1.2.840.10008.6.1.489
"Media Import" },
{ 0, 0, 0, 7010, // 1.2.840.10008.6.1.490
"Key Object Selection Document Title" },
{ 0, 0, 0, 7011, // 1.2.840.10008.6.1.491
"Rejected for Quality Reasons" },
{ 0, 0, 0, 7012, // 1.2.840.10008.6.1.492
"Best in Set" },
{ 0, 0, 0, 7020, // 1.2.840.10008.6.1.493
"Document Titles" },
{ 0, 0, 0, 7100, // 1.2.840.10008.6.1.494
"RCS Registration Method Type" },
{ 0, 0, 0, 7101, // 1.2.840.10008.6.1.495
"Brain Atlas Fiducials" },
{ 0, 0, 0, 7150, // 1.2.840.10008.6.1.496
"Segmentation Property Categories" },
{ 0, 0, 0, 7151, // 1.2.840.10008.6.1.497
"Segmentation Property Types" },
{ 0, 0, 0, 7152, // 1.2.840.10008.6.1.498
"Cardiac Structure Segmentation Types" },
{ 0, 0, 0, 7153, // 1.2.840.10008.6.1.499
"CNS Tissue Segmentation Types" },
{ 0, 0, 0, 7154, // 1.2.840.10008.6.1.500
"Abdominal Organ Segmentation Types" },
{ 0, 0, 0, 7155, // 1.2.840.10008.6.1.501
"Thoracic Tissue Segmentation Types" },
{ 0, 0, 0, 7156, // 1.2.840.10008.6.1.502
"Vascular Tissue Segmentation Types" },
{ 0, 0, 0, 7157, // 1.2.840.10008.6.1.503
"Device Segmentation Types" },
{ 0, 0, 0, 7158, // 1.2.840.10008.6.1.504
"Artifact Segmentation Types" },
{ 0, 0, 0, 7159, // 1.2.840.10008.6.1.505
"Lesion Segmentation Types" },
{ 0, 0, 0, 7160, // 1.2.840.10008.6.1.506
"Pelvic Organ Segmentation Types" },
{ 0, 0, 0, 7161, // 1.2.840.10008.6.1.507
"Physiology Segmentation Types" },
{ 0, 0, 0, 7201, // 1.2.840.10008.6.1.508
"Referenced Image Purposes of Reference" },
{ 0, 0, 0, 7202, // 1.2.840.10008.6.1.509
"Source Image Purposes of Reference" },
{ 0, 0, 0, 7203, // 1.2.840.10008.6.1.510
"Image Derivation" },
{ 0, 0, 0, 7205, // 1.2.840.10008.6.1.511
"Purpose of Reference to Alternate Representation" },
{ 0, 0, 0, 7210, // 1.2.840.10008.6.1.512
"Related Series Purposes of Reference" },
{ 0, 0, 0, 7250, // 1.2.840.10008.6.1.513
"Multi-Frame Subset Type" },
{ 0, 0, 0, 7450, // 1.2.840.10008.6.1.514
"Person Roles" },
{ 0, 0, 0, 7451, // 1.2.840.10008.6.1.515
"Family Member" },
{ 0, 0, 0, 7452, // 1.2.840.10008.6.1.516
"Organizational Roles" },
{ 0, 0, 0, 7453, // 1.2.840.10008.6.1.517
"Performing Roles" },
{ 0, 0, 0, 7454, // 1.2.840.10008.6.1.518
"Animal Taxonomic Rank Values" },
{ 0, 0, 0, 7455, // 1.2.840.10008.6.1.519
"Sex" },
{ 0, 0, 0, 7456, // 1.2.840.10008.6.1.520
"Units of Measure for Age" },
{ 0, 0, 0, 7460, // 1.2.840.10008.6.1.521
"Units of Linear Measurement" },
{ 0, 0, 0, 7461, // 1.2.840.10008.6.1.522
"Units of Area Measurement" },
{ 0, 0, 0, 7462, // 1.2.840.10008.6.1.523
"Units of Volume Measurement" },
{ 0, 0, 0, 7470, // 1.2.840.10008.6.1.524
"Linear Measurements" },
{ 0, 0, 0, 7471, // 1.2.840.10008.6.1.525
"Area Measurements" },
{ 0, 0, 0, 7472, // 1.2.840.10008.6.1.526
"Volume Measurements" },
{ 0, 0, 0, 7473, // 1.2.840.10008.6.1.527
"General Area Calculation Methods" },
{ 0, 0, 0, 7474, // 1.2.840.10008.6.1.528
"General Volume Calculation Methods" },
{ 0, 0, 0, 7480, // 1.2.840.10008.6.1.529
"Breed" },
{ 0, 0, 0, 7481, // 1.2.840.10008.6.1.530
"Breed Registry" },
{ 0, 0, 0, 9231, // 1.2.840.10008.6.1.531
"Workitem Definition" },
{ 0, 0, 0, 9232, // 1.2.840.10008.6.1.532 (Retired)
"Non-DICOM Output Types" },
{ 0, 0, 0, 9300, // 1.2.840.10008.6.1.533
"Procedure Discontinuation Reasons" },
{ 0, 0, 0, 10000, // 1.2.840.10008.6.1.534
"Scope of Accumulation" },
{ 0, 0, 0, 10001, // 1.2.840.10008.6.1.535
"UID Types" },
{ 0, 0, 0, 10002, // 1.2.840.10008.6.1.536
"Irradiation Event Types" },
{ 0, 0, 0, 10003, // 1.2.840.10008.6.1.537
"Equipment Plane Identification" },
{ 0, 0, 0, 10004, // 1.2.840.10008.6.1.538
"Fluoro Modes" },
{ 0, 0, 0, 10006, // 1.2.840.10008.6.1.539
"X-Ray Filter Materials" },
{ 0, 0, 0, 10007, // 1.2.840.10008.6.1.540
"X-Ray Filter Types" },
{ 0, 0, 0, 10008, // 1.2.840.10008.6.1.541
"Dose Related Distance Measurements" },
{ 0, 0, 0, 10009, // 1.2.840.10008.6.1.542
"Measured/Calculated" },
{ 0, 0, 0, 10010, // 1.2.840.10008.6.1.543
"Dose Measurement Devices" },
{ 0, 0, 0, 10011, // 1.2.840.10008.6.1.544
"Effective Dose Evaluation Method" },
{ 0, 0, 0, 10013, // 1.2.840.10008.6.1.545
"CT Acquisition Type" },
{ 0, 0, 0, 10014, // 1.2.840.10008.6.1.546
"Contrast Imaging Technique" },
{ 0, 0, 0, 10015, // 1.2.840.10008.6.1.547
"CT Dose Reference Authorities" },
{ 0, 0, 0, 10016, // 1.2.840.10008.6.1.548
"Anode Target Material" },
{ 0, 0, 0, 10017, // 1.2.840.10008.6.1.549
"X-Ray Grid" },
{ 0, 0, 0, 12001, // 1.2.840.10008.6.1.550
"Ultrasound Protocol Types" },
{ 0, 0, 0, 12002, // 1.2.840.10008.6.1.551
"Ultrasound Protocol Stage Types" },
{ 0, 0, 0, 12003, // 1.2.840.10008.6.1.552
"OB-GYN Dates" },
{ 0, 0, 0, 12004, // 1.2.840.10008.6.1.553
"Fetal Biometry Ratios" },
{ 0, 0, 0, 12005, // 1.2.840.10008.6.1.554
"Fetal Biometry Measurements" },
{ 0, 0, 0, 12006, // 1.2.840.10008.6.1.555
"Fetal Long Bones Biometry Measurements" },
{ 0, 0, 0, 12007, // 1.2.840.10008.6.1.556
"Fetal Cranium" },
{ 0, 0, 0, 12008, // 1.2.840.10008.6.1.557
"OB-GYN Amniotic Sac" },
{ 0, 0, 0, 12009, // 1.2.840.10008.6.1.558
"Early Gestation Biometry Measurements" },
{ 0, 0, 0, 12011, // 1.2.840.10008.6.1.559
"Ultrasound Pelvis and Uterus" },
{ 0, 0, 0, 12012, // 1.2.840.10008.6.1.560
"OB Equations and Tables" },
{ 0, 0, 0, 12013, // 1.2.840.10008.6.1.561
"Gestational Age Equations and Tables" },
{ 0, 0, 0, 12014, // 1.2.840.10008.6.1.562
"OB Fetal Body Weight Equations and Tables" },
{ 0, 0, 0, 12015, // 1.2.840.10008.6.1.563
"Fetal Growth Equations and Tables" },
{ 0, 0, 0, 12016, // 1.2.840.10008.6.1.564
"Estimated Fetal Weight Percentile Equations and Tables" },
{ 0, 0, 0, 12017, // 1.2.840.10008.6.1.565
"Growth Distribution Rank" },
{ 0, 0, 0, 12018, // 1.2.840.10008.6.1.566
"OB-GYN Summary" },
{ 0, 0, 0, 12019, // 1.2.840.10008.6.1.567
"OB-GYN Fetus Summary" },
{ 0, 0, 0, 12101, // 1.2.840.10008.6.1.568
"Vascular Summary" },
{ 0, 0, 0, 12102, // 1.2.840.10008.6.1.569
"Temporal Periods Relating to Procedure or Therapy" },
{ 0, 0, 0, 12103, // 1.2.840.10008.6.1.570
"Vascular Ultrasound Anatomic Location" },
{ 0, 0, 0, 12104, // 1.2.840.10008.6.1.571
"Extracranial Arteries" },
{ 0, 0, 0, 12105, // 1.2.840.10008.6.1.572
"Intracranial Cerebral Vessels" },
{ 0, 0, 0, 12106, // 1.2.840.10008.6.1.573
"Intracranial Cerebral Vessels (Unilateral)" },
{ 0, 0, 0, 12107, // 1.2.840.10008.6.1.574
"Upper Extremity Arteries" },
{ 0, 0, 0, 12108, // 1.2.840.10008.6.1.575
"Upper Extremity Veins" },
{ 0, 0, 0, 12109, // 1.2.840.10008.6.1.576
"Lower Extremity Arteries" },
{ 0, 0, 0, 12110, // 1.2.840.10008.6.1.577
"Lower Extremity Veins" },
{ 0, 0, 0, 12111, // 1.2.840.10008.6.1.578
"Abdominal Arteries (Lateral)" },
{ 0, 0, 0, 12112, // 1.2.840.10008.6.1.579
"Abdominal Arteries (Unilateral)" },
{ 0, 0, 0, 12113, // 1.2.840.10008.6.1.580
"Abdominal Veins (Lateral)" },
{ 0, 0, 0, 12114, // 1.2.840.10008.6.1.581
"Abdominal Veins (Unilateral)" },
{ 0, 0, 0, 12115, // 1.2.840.10008.6.1.582
"Renal Vessels" },
{ 0, 0, 0, 12116, // 1.2.840.10008.6.1.583
"Vessel Segment Modifiers" },
{ 0, 0, 0, 12117, // 1.2.840.10008.6.1.584
"Vessel Branch Modifiers" },
{ 0, 0, 0, 12119, // 1.2.840.10008.6.1.585
"Vascular Ultrasound Property" },
{ 0, 0, 0, 12120, // 1.2.840.10008.6.1.586
"Blood Velocity Measurements by Ultrasound" },
{ 0, 0, 0, 12121, // 1.2.840.10008.6.1.587
"Vascular Indices and Ratios" },
{ 0, 0, 0, 12122, // 1.2.840.10008.6.1.588
"Other Vascular Properties" },
{ 0, 0, 0, 12123, // 1.2.840.10008.6.1.589
"Carotid Ratios" },
{ 0, 0, 0, 12124, // 1.2.840.10008.6.1.590
"Renal Ratios" },
{ 0, 0, 0, 12140, // 1.2.840.10008.6.1.591
"Pelvic Vasculature Anatomical Location" },
{ 0, 0, 0, 12141, // 1.2.840.10008.6.1.592
"Fetal Vasculature Anatomical Location" },
{ 0, 0, 0, 12200, // 1.2.840.10008.6.1.593
"Echocardiography Left Ventricle" },
{ 0, 0, 0, 12201, // 1.2.840.10008.6.1.594
"Left Ventricle Linear" },
{ 0, 0, 0, 12202, // 1.2.840.10008.6.1.595
"Left Ventricle Volume" },
{ 0, 0, 0, 12203, // 1.2.840.10008.6.1.596
"Left Ventricle Other" },
{ 0, 0, 0, 12204, // 1.2.840.10008.6.1.597
"Echocardiography Right Ventricle" },
{ 0, 0, 0, 12205, // 1.2.840.10008.6.1.598
"Echocardiography Left Atrium" },
{ 0, 0, 0, 12206, // 1.2.840.10008.6.1.599
"Echocardiography Right Atrium" },
{ 0, 0, 0, 12207, // 1.2.840.10008.6.1.600
"Echocardiography Mitral Valve" },
{ 0, 0, 0, 12208, // 1.2.840.10008.6.1.601
"Echocardiography Tricuspid Valve" },
{ 0, 0, 0, 12209, // 1.2.840.10008.6.1.602
"Echocardiography Pulmonic Valve" },
{ 0, 0, 0, 12210, // 1.2.840.10008.6.1.603
"Echocardiography Pulmonary Artery" },
{ 0, 0, 0, 12211, // 1.2.840.10008.6.1.604
"Echocardiography Aortic Valve" },
{ 0, 0, 0, 12212, // 1.2.840.10008.6.1.605
"Echocardiography Aorta" },
{ 0, 0, 0, 12214, // 1.2.840.10008.6.1.606
"Echocardiography Pulmonary Veins" },
{ 0, 0, 0, 12215, // 1.2.840.10008.6.1.607
"Echocardiography Vena Cavae" },
{ 0, 0, 0, 12216, // 1.2.840.10008.6.1.608
"Echocardiography Hepatic Veins" },
{ 0, 0, 0, 12217, // 1.2.840.10008.6.1.609
"Echocardiography Cardiac Shunt" },
{ 0, 0, 0, 12218, // 1.2.840.10008.6.1.610
"Echocardiography Congenital" },
{ 0, 0, 0, 12219, // 1.2.840.10008.6.1.611
"Pulmonary Vein Modifiers" },
{ 0, 0, 0, 12220, // 1.2.840.10008.6.1.612
"Echocardiography Common Measurements" },
{ 0, 0, 0, 12221, // 1.2.840.10008.6.1.613
"Flow Direction" },
{ 0, 0, 0, 12222, // 1.2.840.10008.6.1.614
"Orifice Flow Properties" },
{ 0, 0, 0, 12223, // 1.2.840.10008.6.1.615
"Echocardiography Stroke Volume Origin" },
{ 0, 0, 0, 12224, // 1.2.840.10008.6.1.616
"Ultrasound Image Modes" },
{ 0, 0, 0, 12226, // 1.2.840.10008.6.1.617
"Echocardiography Image View" },
{ 0, 0, 0, 12227, // 1.2.840.10008.6.1.618
"Echocardiography Measurement Method" },
{ 0, 0, 0, 12228, // 1.2.840.10008.6.1.619
"Echocardiography Volume Methods" },
{ 0, 0, 0, 12229, // 1.2.840.10008.6.1.620
"Echocardiography Area Methods" },
{ 0, 0, 0, 12230, // 1.2.840.10008.6.1.621
"Gradient Methods" },
{ 0, 0, 0, 12231, // 1.2.840.10008.6.1.622
"Volume Flow Methods" },
{ 0, 0, 0, 12232, // 1.2.840.10008.6.1.623
"Myocardium Mass Methods" },
{ 0, 0, 0, 12233, // 1.2.840.10008.6.1.624
"Cardiac Phase" },
{ 0, 0, 0, 12234, // 1.2.840.10008.6.1.625
"Respiration State" },
{ 0, 0, 0, 12235, // 1.2.840.10008.6.1.626
"Mitral Valve Anatomic Sites" },
{ 0, 0, 0, 12236, // 1.2.840.10008.6.1.627
"Echo Anatomic Sites" },
{ 0, 0, 0, 12237, // 1.2.840.10008.6.1.628
"Echocardiography Anatomic Site Modifiers" },
{ 0, 0, 0, 12238, // 1.2.840.10008.6.1.629
"Wall Motion Scoring Schemes" },
{ 0, 0, 0, 12239, // 1.2.840.10008.6.1.630
"Cardiac Output Properties" },
{ 0, 0, 0, 12240, // 1.2.840.10008.6.1.631
"Left Ventricle Area" },
{ 0, 0, 0, 12241, // 1.2.840.10008.6.1.632
"Tricuspid Valve Finding Sites" },
{ 0, 0, 0, 12242, // 1.2.840.10008.6.1.633
"Aortic Valve Finding Sites" },
{ 0, 0, 0, 12243, // 1.2.840.10008.6.1.634
"Left Ventricle Finding Sites" },
{ 0, 0, 0, 12244, // 1.2.840.10008.6.1.635
"Congenital Finding Sites" },
{ 0, 0, 0, 7162, // 1.2.840.10008.6.1.636
"Surface Processing Algorithm Families" },
{ 0, 0, 0, 3207, // 1.2.840.10008.6.1.637
"Stress Test Procedure Phases" },
{ 0, 0, 0, 3778, // 1.2.840.10008.6.1.638
"Stages" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 252, // 1.2.840.10008.6.1.735
"S-M-L Size Descriptor" },
{ 0, 0, 0, 3016, // 1.2.840.10008.6.1.736
"Major Coronary Arteries" },
{ 0, 0, 0, 3083, // 1.2.840.10008.6.1.737
"Units of Radioactivity" },
{ 0, 0, 0, 3102, // 1.2.840.10008.6.1.738
"Rest-Stress" },
{ 0, 0, 0, 3106, // 1.2.840.10008.6.1.739
"PET Cardiology Protocols" },
{ 0, 0, 0, 3107, // 1.2.840.10008.6.1.740
"PET Cardiology Radiopharmaceuticals" },
{ 0, 0, 0, 3108, // 1.2.840.10008.6.1.741
"NM/PET Procedures" },
{ 0, 0, 0, 3110, // 1.2.840.10008.6.1.742
"Nuclear Cardiology Protocols" },
{ 0, 0, 0, 3111, // 1.2.840.10008.6.1.743
"Nuclear Cardiology Radiopharmaceuticals" },
{ 0, 0, 0, 3112, // 1.2.840.10008.6.1.744
"Attenuation Correction" },
{ 0, 0, 0, 3113, // 1.2.840.10008.6.1.745
"Types of Perfusion Defects" },
{ 0, 0, 0, 3114, // 1.2.840.10008.6.1.746
"Study Quality" },
{ 0, 0, 0, 3115, // 1.2.840.10008.6.1.747
"Stress Imaging Quality Issues" },
{ 0, 0, 0, 3116, // 1.2.840.10008.6.1.748
"NM Extracardiac Findings" },
{ 0, 0, 0, 3117, // 1.2.840.10008.6.1.749
"Attenuation Correction Methods" },
{ 0, 0, 0, 3118, // 1.2.840.10008.6.1.750
"Level of Risk" },
{ 0, 0, 0, 3119, // 1.2.840.10008.6.1.751
"LV Function" },
{ 0, 0, 0, 3120, // 1.2.840.10008.6.1.752
"Perfusion Findings" },
{ 0, 0, 0, 3121, // 1.2.840.10008.6.1.753
"Perfusion Morphology" },
{ 0, 0, 0, 3122, // 1.2.840.10008.6.1.754
"Ventricular Enlargement" },
{ 0, 0, 0, 3200, // 1.2.840.10008.6.1.755
"Stress Test Procedure" },
{ 0, 0, 0, 3201, // 1.2.840.10008.6.1.756
"Indications for Stress Test" },
{ 0, 0, 0, 3202, // 1.2.840.10008.6.1.757
"Chest Pain" },
{ 0, 0, 0, 3203, // 1.2.840.10008.6.1.758
"Exerciser Device" },
{ 0, 0, 0, 3204, // 1.2.840.10008.6.1.759
"Stress Agents" },
{ 0, 0, 0, 3205, // 1.2.840.10008.6.1.760
"Indications for Pharmacological Stress Test" },
{ 0, 0, 0, 3206, // 1.2.840.10008.6.1.761
"Non-invasive Cardiac Imaging Procedures" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 3208, // 1.2.840.10008.6.1.763
"Summary Codes Exercise ECG" },
{ 0, 0, 0, 3209, // 1.2.840.10008.6.1.764
"Summary Codes Stress Imaging" },
{ 0, 0, 0, 3210, // 1.2.840.10008.6.1.765
"Speed of Response" },
{ 0, 0, 0, 3211, // 1.2.840.10008.6.1.766
"BP Response" },
{ 0, 0, 0, 3212, // 1.2.840.10008.6.1.767
"Treadmill Speed" },
{ 0, 0, 0, 3213, // 1.2.840.10008.6.1.768
"Stress Hemodynamic Findings" },
{ 0, 0, 0, 3215, // 1.2.840.10008.6.1.769
"Perfusion Finding Method" },
{ 0, 0, 0, 3217, // 1.2.840.10008.6.1.770
"Comparison Finding" },
{ 0, 0, 0, 3220, // 1.2.840.10008.6.1.771
"Stress Symptoms" },
{ 0, 0, 0, 3221, // 1.2.840.10008.6.1.772
"Stress Test Termination Reasons" },
{ 0, 0, 0, 3227, // 1.2.840.10008.6.1.773
"QTc Measurements" },
{ 0, 0, 0, 3228, // 1.2.840.10008.6.1.774
"ECG Timing Measurements" },
{ 0, 0, 0, 3229, // 1.2.840.10008.6.1.775
"ECG Axis Measurements" },
{ 0, 0, 0, 3230, // 1.2.840.10008.6.1.776
"ECG Findings" },
{ 0, 0, 0, 3231, // 1.2.840.10008.6.1.777
"ST Segment Findings" },
{ 0, 0, 0, 3232, // 1.2.840.10008.6.1.778
"ST Segment Location" },
{ 0, 0, 0, 3233, // 1.2.840.10008.6.1.779
"ST Segment Morphology" },
{ 0, 0, 0, 3234, // 1.2.840.10008.6.1.780
"Ectopic Beat Morphology" },
{ 0, 0, 0, 3235, // 1.2.840.10008.6.1.781
"Perfusion Comparison Findings" },
{ 0, 0, 0, 3236, // 1.2.840.10008.6.1.782
"Tolerance Comparison Findings" },
{ 0, 0, 0, 3237, // 1.2.840.10008.6.1.783
"Wall Motion Comparison Findings" },
{ 0, 0, 0, 3238, // 1.2.840.10008.6.1.784
"Stress Scoring Scales" },
{ 0, 0, 0, 3239, // 1.2.840.10008.6.1.785
"Perceived Exertion Scales" },
{ 0, 0, 0, 3463, // 1.2.840.10008.6.1.786
"Ventricle Identification" },
{ 0, 0, 0, 6200, // 1.2.840.10008.6.1.787
"Colon Overall Assessment" },
{ 0, 0, 0, 6201, // 1.2.840.10008.6.1.788
"Colon Finding or Feature" },
{ 0, 0, 0, 6202, // 1.2.840.10008.6.1.789
"Colon Finding or Feature Modifier" },
{ 0, 0, 0, 6203, // 1.2.840.10008.6.1.790
"Colon Non-lesion Object Type" },
{ 0, 0, 0, 6204, // 1.2.840.10008.6.1.791
"Anatomic Non-colon Findings" },
{ 0, 0, 0, 6205, // 1.2.840.10008.6.1.792
"Clockface Location for Colon" },
{ 0, 0, 0, 6206, // 1.2.840.10008.6.1.793
"Recumbent Patient Orientation for Colon" },
{ 0, 0, 0, 6207, // 1.2.840.10008.6.1.794
"Colon Quantitative Temporal Difference Type" },
{ 0, 0, 0, 6208, // 1.2.840.10008.6.1.795
"Colon Types of Quality Control Standard" },
{ 0, 0, 0, 6209, // 1.2.840.10008.6.1.796
"Colon Morphology Descriptor" },
{ 0, 0, 0, 6210, // 1.2.840.10008.6.1.797
"Location in Intestinal Tract" },
{ 0, 0, 0, 6211, // 1.2.840.10008.6.1.798
"Colon CAD Material Description" },
{ 0, 0, 0, 6212, // 1.2.840.10008.6.1.799
"Calculated Value for Colon Findings" },
{ 0, 0, 0, 4214, // 1.2.840.10008.6.1.800
"Ophthalmic Horizontal Directions" },
{ 0, 0, 0, 4215, // 1.2.840.10008.6.1.801
"Ophthalmic Vertical Directions" },
{ 0, 0, 0, 4216, // 1.2.840.10008.6.1.802
"Ophthalmic Visual Acuity Type" },
{ 0, 0, 0, 3004, // 1.2.840.10008.6.1.803
"Arterial Pulse Waveform" },
{ 0, 0, 0, 3005, // 1.2.840.10008.6.1.804
"Respiration Waveform" },
{ 0, 0, 0, 12030, // 1.2.840.10008.6.1.805
"Ultrasound Contrast/Bolus Agents" },
{ 0, 0, 0, 12031, // 1.2.840.10008.6.1.806
"Protocol Interval Events" },
{ 0, 0, 0, 12032, // 1.2.840.10008.6.1.807
"Transducer Scan Pattern" },
{ 0, 0, 0, 12033, // 1.2.840.10008.6.1.808
"Ultrasound Transducer Geometry" },
{ 0, 0, 0, 12034, // 1.2.840.10008.6.1.809
"Ultrasound Transducer Beam Steering" },
{ 0, 0, 0, 12035, // 1.2.840.10008.6.1.810
"Ultrasound Transducer Application" },
{ 0, 0, 0, 50, // 1.2.840.10008.6.1.811
"Instance Availability Status" },
{ 0, 0, 0, 9301, // 1.2.840.10008.6.1.812
"Modality PPS Discontinuation Reasons" },
{ 0, 0, 0, 9302, // 1.2.840.10008.6.1.813
"Media Import PPS Discontinuation Reasons" },
{ 0, 0, 0, 7482, // 1.2.840.10008.6.1.814
"DX Anatomy Imaged for Animals" },
{ 0, 0, 0, 7483, // 1.2.840.10008.6.1.815
"Common Anatomic Regions for Animals" },
{ 0, 0, 0, 7484, // 1.2.840.10008.6.1.816
"DX View for Animals" },
{ 0, 0, 0, 7030, // 1.2.840.10008.6.1.817
"Institutional Departments, Units and Services" },
{ 0, 0, 0, 7009, // 1.2.840.10008.6.1.818
"Purpose of Reference to Predecessor Report" },
{ 0, 0, 0, 4220, // 1.2.840.10008.6.1.819
"Visual Fixation Quality During Acquisition" },
{ 0, 0, 0, 4221, // 1.2.840.10008.6.1.820
"Visual Fixation Quality Problem" },
{ 0, 0, 0, 4222, // 1.2.840.10008.6.1.821
"Ophthalmic Macular Grid Problem" },
{ 0, 0, 0, 5002, // 1.2.840.10008.6.1.822
"Organizations" },
{ 0, 0, 0, 7486, // 1.2.840.10008.6.1.823
"Mixed Breeds" },
{ 0, 0, 0, 7040, // 1.2.840.10008.6.1.824
"Broselow-Luten Pediatric Size Categories" },
{ 0, 0, 0, 7042, // 1.2.840.10008.6.1.825
"Calcium Scoring Patient Size Categories" },
{ 0, 0, 0, 12245, // 1.2.840.10008.6.1.826
"Cardiac Ultrasound Report Titles" },
{ 0, 0, 0, 12246, // 1.2.840.10008.6.1.827
"Cardiac Ultrasound Indication for Study" },
{ 0, 0, 0, 12247, // 1.2.840.10008.6.1.828
"Pediatric, Fetal and Congenital Cardiac Surgical Interventions" },
{ 0, 0, 0, 12248, // 1.2.840.10008.6.1.829
"Cardiac Ultrasound Summary Codes" },
{ 0, 0, 0, 12249, // 1.2.840.10008.6.1.830
"Cardiac Ultrasound Fetal Summary Codes" },
{ 0, 0, 0, 12250, // 1.2.840.10008.6.1.831
"Cardiac Ultrasound Common Linear Measurements" },
{ 0, 0, 0, 12251, // 1.2.840.10008.6.1.832
"Cardiac Ultrasound Linear Valve Measurements" },
{ 0, 0, 0, 12252, // 1.2.840.10008.6.1.833
"Cardiac Ultrasound Cardiac Function" },
{ 0, 0, 0, 12253, // 1.2.840.10008.6.1.834
"Cardiac Ultrasound Area Measurements" },
{ 0, 0, 0, 12254, // 1.2.840.10008.6.1.835
"Cardiac Ultrasound Hemodynamic Measurements" },
{ 0, 0, 0, 12255, // 1.2.840.10008.6.1.836
"Cardiac Ultrasound Myocardium Measurements" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 12257, // 1.2.840.10008.6.1.838
"Cardiac Ultrasound Left Ventricle" },
{ 0, 0, 0, 12258, // 1.2.840.10008.6.1.839
"Cardiac Ultrasound Right Ventricle" },
{ 0, 0, 0, 12259, // 1.2.840.10008.6.1.840
"Cardiac Ultrasound Ventricles Measurements" },
{ 0, 0, 0, 12260, // 1.2.840.10008.6.1.841
"Cardiac Ultrasound Pulmonary Artery" },
{ 0, 0, 0, 12261, // 1.2.840.10008.6.1.842
"Cardiac Ultrasound Pulmonary Vein" },
{ 0, 0, 0, 12262, // 1.2.840.10008.6.1.843
"Cardiac Ultrasound Pulmonary Valve" },
{ 0, 0, 0, 12263, // 1.2.840.10008.6.1.844
"Cardiac Ultrasound Venous Return Pulmonary Measurements" },
{ 0, 0, 0, 12264, // 1.2.840.10008.6.1.845
"Cardiac Ultrasound Venous Return Systemic Measurements" },
{ 0, 0, 0, 12265, // 1.2.840.10008.6.1.846
"Cardiac Ultrasound Atria and Atrial Septum Measurements" },
{ 0, 0, 0, 12266, // 1.2.840.10008.6.1.847
"Cardiac Ultrasound Mitral Valve" },
{ 0, 0, 0, 12267, // 1.2.840.10008.6.1.848
"Cardiac Ultrasound Tricuspid Valve" },
{ 0, 0, 0, 12268, // 1.2.840.10008.6.1.849
"Cardiac Ultrasound Atrioventricular Valves Measurements" },
{ 0, 0, 0, 12269, // 1.2.840.10008.6.1.850
"Cardiac Ultrasound Interventricular Septum Measurements" },
{ 0, 0, 0, 12270, // 1.2.840.10008.6.1.851
"Cardiac Ultrasound Aortic Valve" },
{ 0, 0, 0, 12271, // 1.2.840.10008.6.1.852
"Cardiac Ultrasound Outflow Tracts Measurements" },
{ 0, 0, 0, 12272, // 1.2.840.10008.6.1.853
"Cardiac Ultrasound Semilunar Valves, Annulate and Sinuses Measurements" },
{ 0, 0, 0, 12273, // 1.2.840.10008.6.1.854
"Cardiac Ultrasound Aortic Sinotubular Junction" },
{ 0, 0, 0, 12274, // 1.2.840.10008.6.1.855
"Cardiac Ultrasound Aorta Measurements" },
{ 0, 0, 0, 12275, // 1.2.840.10008.6.1.856
"Cardiac Ultrasound Coronary Arteries Measurements" },
{ 0, 0, 0, 12276, // 1.2.840.10008.6.1.857
"Cardiac Ultrasound Aorto Pulmonary Connections Measurements" },
{ 0, 0, 0, 12277, // 1.2.840.10008.6.1.858
"Cardiac Ultrasound Pericardium and Pleura Measurements" },
{ 0, 0, 0, 12279, // 1.2.840.10008.6.1.859
"Cardiac Ultrasound Fetal General Measurements" },
{ 0, 0, 0, 12280, // 1.2.840.10008.6.1.860
"Cardiac Ultrasound Target Sites" },
{ 0, 0, 0, 12281, // 1.2.840.10008.6.1.861
"Cardiac Ultrasound Target Site Modifiers" },
{ 0, 0, 0, 12282, // 1.2.840.10008.6.1.862
"Cardiac Ultrasound Venous Return Systemic Finding Sites" },
{ 0, 0, 0, 12283, // 1.2.840.10008.6.1.863
"Cardiac Ultrasound Venous Return Pulmonary Finding Sites" },
{ 0, 0, 0, 12284, // 1.2.840.10008.6.1.864
"Cardiac Ultrasound Atria and Atrial Septum Finding Sites" },
{ 0, 0, 0, 12285, // 1.2.840.10008.6.1.865
"Cardiac Ultrasound Atrioventricular Valves Finding Sites" },
{ 0, 0, 0, 12286, // 1.2.840.10008.6.1.866
"Cardiac Ultrasound Interventricular Septum Finding Sites" },
{ 0, 0, 0, 12287, // 1.2.840.10008.6.1.867
"Cardiac Ultrasound Ventricles Finding Sites" },
{ 0, 0, 0, 12288, // 1.2.840.10008.6.1.868
"Cardiac Ultrasound Outflow Tracts Finding Sites" },
{ 0, 0, 0, 12289, // 1.2.840.10008.6.1.869
"Cardiac Ultrasound Semilunar Valves, Annulus and Sinuses Finding Sites" },
{ 0, 0, 0, 12290, // 1.2.840.10008.6.1.870
"Cardiac Ultrasound Pulmonary Arteries Finding Sites" },
{ 0, 0, 0, 12291, // 1.2.840.10008.6.1.871
"Cardiac Ultrasound Aorta Finding Sites" },
{ 0, 0, 0, 12292, // 1.2.840.10008.6.1.872
"Cardiac Ultrasound Coronary Arteries Finding Sites" },
{ 0, 0, 0, 12293, // 1.2.840.10008.6.1.873
"Cardiac Ultrasound Aortopulmonary Connections Finding Sites" },
{ 0, 0, 0, 12294, // 1.2.840.10008.6.1.874
"Cardiac Ultrasound Pericardium and Pleura Finding Sites" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 4230, // 1.2.840.10008.6.1.876
"Ophthalmic Ultrasound Axial Measurements Type" },
{ 0, 0, 0, 4231, // 1.2.840.10008.6.1.877
"Lens Status" },
{ 0, 0, 0, 4232, // 1.2.840.10008.6.1.878
"Vitreous Status" },
{ 0, 0, 0, 4233, // 1.2.840.10008.6.1.879
"Ophthalmic Axial Length Measurements Segment Names" },
{ 0, 0, 0, 4234, // 1.2.840.10008.6.1.880
"Refractive Surgery Types" },
{ 0, 0, 0, 4235, // 1.2.840.10008.6.1.881
"Keratometry Descriptors" },
{ 0, 0, 0, 4236, // 1.2.840.10008.6.1.882
"IOL Calculation Formula" },
{ 0, 0, 0, 4237, // 1.2.840.10008.6.1.883
"Lens Constant Type" },
{ 0, 0, 0, 4238, // 1.2.840.10008.6.1.884
"Refractive Error Types" },
{ 0, 0, 0, 4239, // 1.2.840.10008.6.1.885
"Anterior Chamber Depth Definition" },
{ 0, 0, 0, 4240, // 1.2.840.10008.6.1.886
"Ophthalmic Measurement or Calculation Data Source" },
{ 0, 0, 0, 4241, // 1.2.840.10008.6.1.887
"Ophthalmic Axial Length Selection Method" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 4243, // 1.2.840.10008.6.1.889
"Ophthalmic Quality Metric Type" },
{ 0, 0, 0, 4244, // 1.2.840.10008.6.1.890
"Ophthalmic Agent Concentration Units" },
{ 0, 0, 0, 91, // 1.2.840.10008.6.1.891
"Functional Condition Present During Acquisition" },
{ 0, 0, 0, 92, // 1.2.840.10008.6.1.892
"Joint Position During Acquisition" },
{ 0, 0, 0, 93, // 1.2.840.10008.6.1.893
"Joint Positioning Method" },
{ 0, 0, 0, 94, // 1.2.840.10008.6.1.894
"Physical Force Applied During Acquisition" },
{ 0, 0, 0, 3690, // 1.2.840.10008.6.1.895
"ECG Control Variables Numeric" },
{ 0, 0, 0, 3691, // 1.2.840.10008.6.1.896
"ECG Control Variables Text" },
{ 0, 0, 0, 8120, // 1.2.840.10008.6.1.897
"WSI Referenced Image Purposes of Reference" },
{ 0, 0, 0, 8121, // 1.2.840.10008.6.1.898
"Microscopy Lens Type" },
{ 0, 0, 0, 8122, // 1.2.840.10008.6.1.899
"Microscopy Illuminator and Sensor Color" },
{ 0, 0, 0, 8123, // 1.2.840.10008.6.1.900
"Microscopy Illumination Method" },
{ 0, 0, 0, 8124, // 1.2.840.10008.6.1.901
"Microscopy Filter" },
{ 0, 0, 0, 8125, // 1.2.840.10008.6.1.902
"Microscopy Illuminator Type" },
{ 0, 0, 0, 400, // 1.2.840.10008.6.1.903
"Audit Event ID" },
{ 0, 0, 0, 401, // 1.2.840.10008.6.1.904
"Audit Event Type Code" },
{ 0, 0, 0, 402, // 1.2.840.10008.6.1.905
"Audit Active Participant Role ID Code" },
{ 0, 0, 0, 403, // 1.2.840.10008.6.1.906
"Security Alert Type Code" },
{ 0, 0, 0, 404, // 1.2.840.10008.6.1.907
"Audit Participant Object ID Type Code" },
{ 0, 0, 0, 405, // 1.2.840.10008.6.1.908
"Media Type Code" },
{ 0, 0, 0, 4250, // 1.2.840.10008.6.1.909
"Visual Field Static Perimetry Test Patterns" },
{ 0, 0, 0, 4251, // 1.2.840.10008.6.1.910
"Visual Field Static Perimetry Test Strategies" },
{ 0, 0, 0, 4252, // 1.2.840.10008.6.1.911
"Visual Field Static Perimetry Screening Test Modes" },
{ 0, 0, 0, 4253, // 1.2.840.10008.6.1.912
"Visual Field Static Perimetry Fixation Strategy" },
{ 0, 0, 0, 4254, // 1.2.840.10008.6.1.913
"Visual Field Static Perimetry Test Analysis Results" },
{ 0, 0, 0, 4255, // 1.2.840.10008.6.1.914
"Visual Field Illumination Color" },
{ 0, 0, 0, 4256, // 1.2.840.10008.6.1.915
"Visual Field Procedure Modifier" },
{ 0, 0, 0, 4257, // 1.2.840.10008.6.1.916
"Visual Field Global Index Name" },
{ 0, 0, 0, 7180, // 1.2.840.10008.6.1.917
"Abstract Multi-dimensional Image Model Component Semantics" },
{ 0, 0, 0, 7181, // 1.2.840.10008.6.1.918
"Abstract Multi-dimensional Image Model Component Units" },
{ 0, 0, 0, 7182, // 1.2.840.10008.6.1.919
"Abstract Multi-dimensional Image Model Dimension Semantics" },
{ 0, 0, 0, 7183, // 1.2.840.10008.6.1.920
"Abstract Multi-dimensional Image Model Dimension Units" },
{ 0, 0, 0, 7184, // 1.2.840.10008.6.1.921
"Abstract Multi-dimensional Image Model Axis Direction" },
{ 0, 0, 0, 7185, // 1.2.840.10008.6.1.922
"Abstract Multi-dimensional Image Model Axis Orientation" },
{ 0, 0, 0, 7186, // 1.2.840.10008.6.1.923
"Abstract Multi-dimensional Image Model Qualitative Dimension Sample Semantics" },
{ 0, 0, 0, 7320, // 1.2.840.10008.6.1.924
"Planning Methods" },
{ 0, 0, 0, 7050, // 1.2.840.10008.6.1.925
"De-identification Method" },
{ 0, 0, 0, 12118, // 1.2.840.10008.6.1.926
"Measurement Orientation" },
{ 0, 0, 0, 3689, // 1.2.840.10008.6.1.927
"ECG Global Waveform Durations" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 3692, // 1.2.840.10008.6.1.930
"ICDs" },
{ 0, 0, 0, 9241, // 1.2.840.10008.6.1.931
"Radiotherapy General Workitem Definition" },
{ 0, 0, 0, 9242, // 1.2.840.10008.6.1.932
"Radiotherapy Acquisition Workitem Definition" },
{ 0, 0, 0, 9243, // 1.2.840.10008.6.1.933
"Radiotherapy Registration Workitem Definition" },
{ 0, 0, 0, 3850, // 1.2.840.10008.6.1.934
"Intravascular OCT Flush Agent" },
{ 0, 0, 0, 10022, // 1.2.840.10008.6.1.935
"Label Types" },
{ 0, 0, 0, 4260, // 1.2.840.10008.6.1.936
"Ophthalmic Mapping Units for Real World Value Mapping" },
{ 0, 0, 0, 4261, // 1.2.840.10008.6.1.937
"Ophthalmic Mapping Acquisition Method" },
{ 0, 0, 0, 4262, // 1.2.840.10008.6.1.938
"Retinal Thickness Definition" },
{ 0, 0, 0, 4263, // 1.2.840.10008.6.1.939
"Ophthalmic Thickness Map Value Type" },
{ 0, 0, 0, 4264, // 1.2.840.10008.6.1.940
"Ophthalmic Map Purposes of Reference" },
{ 0, 0, 0, 4265, // 1.2.840.10008.6.1.941
"Ophthalmic Thickness Deviation Categories" },
{ 0, 0, 0, 4266, // 1.2.840.10008.6.1.942
"Ophthalmic Anatomic Structure Reference Point" },
{ 0, 0, 0, 3104, // 1.2.840.10008.6.1.943
"Cardiac Synchronization Technique" },
{ 0, 0, 0, 8130, // 1.2.840.10008.6.1.944
"Staining Protocols" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 10023, // 1.2.840.10008.6.1.947
"Size Specific Dose Estimation Method for CT" },
{ 0, 0, 0, 8131, // 1.2.840.10008.6.1.948
"Pathology Imaging Protocols" },
{ 0, 0, 0, 8132, // 1.2.840.10008.6.1.949
"Magnification Selection" },
{ 0, 0, 0, 8133, // 1.2.840.10008.6.1.950
"Tissue Selection" },
{ 0, 0, 0, 7464, // 1.2.840.10008.6.1.951
"General Region of Interest Measurement Modifiers" },
{ 0, 0, 0, 7465, // 1.2.840.10008.6.1.952
"Measurements Derived From Multiple ROI Measurements" },
{ 0, 0, 0, 8201, // 1.2.840.10008.6.1.953
"Surface Scan Acquisition Types" },
{ 0, 0, 0, 8202, // 1.2.840.10008.6.1.954
"Surface Scan Mode Types" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 8203, // 1.2.840.10008.6.1.956
"Surface Scan Registration Method Types" },
{ 0, 0, 0, 27, // 1.2.840.10008.6.1.957
"Basic Cardiac Views" },
{ 0, 0, 0, 10033, // 1.2.840.10008.6.1.958
"CT Reconstruction Algorithm" },
{ 0, 0, 0, 10030, // 1.2.840.10008.6.1.959
"Detector Types" },
{ 0, 0, 0, 10031, // 1.2.840.10008.6.1.960
"CR/DR Mechanical Configuration" },
{ 0, 0, 0, 10032, // 1.2.840.10008.6.1.961
"Projection X-Ray Acquisition Device Types" },
{ 0, 0, 0, 7165, // 1.2.840.10008.6.1.962
"Abstract Segmentation Types" },
{ 0, 0, 0, 7166, // 1.2.840.10008.6.1.963
"Common Tissue Segmentation Types" },
{ 0, 0, 0, 7167, // 1.2.840.10008.6.1.964
"Peripheral Nervous System Segmentation Types" },
{ 0, 0, 0, 4267, // 1.2.840.10008.6.1.965
"Corneal Topography Mapping Units for Real World Value Mapping" },
{ 0, 0, 0, 4268, // 1.2.840.10008.6.1.966
"Corneal Topography Map Value Type" },
{ 0, 0, 0, 7140, // 1.2.840.10008.6.1.967
"Brain Structures for Volumetric Measurements" },
{ 0, 0, 0, 7220, // 1.2.840.10008.6.1.968
"RT Dose Derivation" },
{ 0, 0, 0, 7221, // 1.2.840.10008.6.1.969
"RT Dose Purpose of Reference" },
{ 0, 0, 0, 7215, // 1.2.840.10008.6.1.970
"Spectroscopy Purpose of Reference" },
{ 0, 0, 0, 9250, // 1.2.840.10008.6.1.971
"Scheduled Processing Parameter Concept Codes for RT Treatment" },
{ 0, 0, 0, 10040, // 1.2.840.10008.6.1.972
"Radiopharmaceutical Organ Dose Reference Authority" },
{ 0, 0, 0, 10041, // 1.2.840.10008.6.1.973
"Source of Radioisotope Activity Information" },
{ 0, 0, 0, 0, nullptr },
{ 0, 0, 0, 10043, // 1.2.840.10008.6.1.975
"Intravenous Extravasation Symptoms" },
{ 0, 0, 0, 10044, // 1.2.840.10008.6.1.976
"Radiosensitive Organs" },
{ 0, 0, 0, 10045, // 1.2.840.10008.6.1.977
"Radiopharmaceutical Patient State" },
{ 0, 0, 0, 10046, // 1.2.840.10008.6.1.978
"GFR Measurements" },
{ 0, 0, 0, 10047, // 1.2.840.10008.6.1.979
"GFR Measurement Methods" },
{ 0, 0, 0, 8300, // 1.2.840.10008.6.1.980
"Visual Evaluation Methods" },
{ 0, 0, 0, 8301, // 1.2.840.10008.6.1.981
"Test Pattern Codes" },
{ 0, 0, 0, 8302, // 1.2.840.10008.6.1.982
"Measurement Pattern Codes" },
{ 0, 0, 0, 8303, // 1.2.840.10008.6.1.983
"Display Device Type" },
{ 0, 0, 0, 85, // 1.2.840.10008.6.1.984
"SUV Units" },
{ 0, 0, 0, 4100, // 1.2.840.10008.6.1.985
"T1 Measurement Methods" },
{ 0, 0, 0, 4101, // 1.2.840.10008.6.1.986
"Tracer Kinetic Models" },
{ 0, 0, 0, 4102, // 1.2.840.10008.6.1.987
"Perfusion Measurement Methods" },
{ 0, 0, 0, 4103, // 1.2.840.10008.6.1.988
"Arterial Input Function Measurement Methods" },
{ 0, 0, 0, 4104, // 1.2.840.10008.6.1.989
"Bolus Arrival Time Derivation Methods" },
{ 0, 0, 0, 4105, // 1.2.840.10008.6.1.990
"Perfusion Analysis Methods" },
{ 0, 0, 0, 4106, // 1.2.840.10008.6.1.991
"Quantitative Methods used for Perfusion And Tracer Kinetic Models" },
{ 0, 0, 0, 4107, // 1.2.840.10008.6.1.992
"Tracer Kinetic Model Parameters" },
{ 0, 0, 0, 4108, // 1.2.840.10008.6.1.993
"Perfusion Model Parameters" },
{ 0, 0, 0, 4109, // 1.2.840.10008.6.1.994
"Model-Independent Dynamic Contrast Analysis Parameters" },
{ 0, 0, 0, 4110, // 1.2.840.10008.6.1.995
"Tracer Kinetic Modeling Covariates" },
{ 0, 0, 0, 4111, // 1.2.840.10008.6.1.996
"Contrast Characteristics" },
{ 0, 0, 0, 7021, // 1.2.840.10008.6.1.997
"Measurement Report Document Titles" },
{ 0, 0, 0, 100, // 1.2.840.10008.6.1.998
"Quantitative Diagnostic Imaging Procedures" },
{ 0, 0, 0, 7466, // 1.2.840.10008.6.1.999
"PET Region of Interest Measurements" },
{ 0, 0, 0, 7467, // 1.2.840.10008.6.1.1000
"Grey Level Co-occurrence Matrix Measurements" },
{ 0, 0, 0, 7468, // 1.2.840.10008.6.1.1001
"Texture Measurements" },
{ 0, 0, 0, 6146, // 1.2.840.10008.6.1.1002
"Time Point Types" },
{ 0, 0, 0, 7469, // 1.2.840.10008.6.1.1003
"Generic Intensity and Size Measurements" },
{ 0, 0, 0, 6147, // 1.2.840.10008.6.1.1004
"Response Criteria" },
{ 0, 0, 0, 12020, // 1.2.840.10008.6.1.1005
"Fetal Biometry Anatomic Sites" },
{ 0, 0, 0, 12021, // 1.2.840.10008.6.1.1006
"Fetal Long Bone Anatomic Sites" },
{ 0, 0, 0, 12022, // 1.2.840.10008.6.1.1007
"Fetal Cranium Anatomic Sites" },
{ 0, 0, 0, 12023, // 1.2.840.10008.6.1.1008
"Pelvis and Uterus Anatomic Sites" },
{ 0, 0, 0, 7222, // 1.2.840.10008.6.1.1009
"Parametric Map Derivation Image Purpose of Reference" },
{ 0, 0, 0, 9000, // 1.2.840.10008.6.1.1010
"Physical Quantity Descriptors" },
{ 0, 0, 0, 7600, // 1.2.840.10008.6.1.1011
"Lymph Node Anatomic Sites" },
{ 0, 0, 0, 7601, // 1.2.840.10008.6.1.1012
"Head and Neck Cancer Anatomic Sites" },
{ 0, 0, 0, 7701, // 1.2.840.10008.6.1.1013
"Fiber Tracts In Brainstem" },
{ 0, 0, 0, 7702, // 1.2.840.10008.6.1.1014
"Projection and Thalamic Fibers" },
{ 0, 0, 0, 7703, // 1.2.840.10008.6.1.1015
"Association Fibers" },
{ 0, 0, 0, 7704, // 1.2.840.10008.6.1.1016
"Limbic System Tracts" },
{ 0, 0, 0, 7705, // 1.2.840.10008.6.1.1017
"Commissural Fibers" },
{ 0, 0, 0, 7706, // 1.2.840.10008.6.1.1018
"Cranial Nerves" },
{ 0, 0, 0, 7707, // 1.2.840.10008.6.1.1019
"Spinal Cord Fibers" },
{ 0, 0, 0, 7710, // 1.2.840.10008.6.1.1020
"Tractography Anatomic Sites" },
{ 0, 0, 0, 4025, // 1.2.840.10008.6.1.1021
"Primary Anatomic Structure for Intra-oral Radiography" },
{ 0, 0, 0, 4026, // 1.2.840.10008.6.1.1022
"Primary Anatomic Structure for Intra-oral and Craniofacial Radiography" },
{ 0, 0, 0, 9401, // 1.2.840.10008.6.1.1023
"IEC61217 Device Position Parameters" },
{ 0, 0, 0, 9402, // 1.2.840.10008.6.1.1024
"IEC61217 Gantry Position Parameters" },
{ 0, 0, 0, 9403, // 1.2.840.10008.6.1.1025
"IEC61217 Patient Support Position Parameters" },
{ 0, 0, 0, 7035, // 1.2.840.10008.6.1.1026
"Actionable Finding Classification" },
{ 0, 0, 0, 7036, // 1.2.840.10008.6.1.1027
"Image Quality Assessment" },
{ 0, 0, 0, 10050, // 1.2.840.10008.6.1.1028
"Summary Radiation Exposure Quantities" },
{ 0, 0, 0, 4245, // 1.2.840.10008.6.1.1029
"Wide Field Ophthalmic Photography Transformation Method" },
{ 0, 0, 0, 84, // 1.2.840.10008.6.1.1030
"PET Units" },
{ 0, 0, 0, 7300, // 1.2.840.10008.6.1.1031
"Implant Materials" },
{ 0, 0, 0, 7301, // 1.2.840.10008.6.1.1032
"Intervention Types" },
{ 0, 0, 0, 7302, // 1.2.840.10008.6.1.1033
"Implant Templates View Orientations" },
{ 0, 0, 0, 7303, // 1.2.840.10008.6.1.1034
"Implant Templates Modified View Orientations" },
{ 0, 0, 0, 7304, // 1.2.840.10008.6.1.1035
"Implant Target Anatomy" },
{ 0, 0, 0, 7305, // 1.2.840.10008.6.1.1036
"Implant Planning Landmarks" },
{ 0, 0, 0, 7306, // 1.2.840.10008.6.1.1037
"Human Hip Implant Planning Landmarks" },
{ 0, 0, 0, 7307, // 1.2.840.10008.6.1.1038
"Implant Component Types" },
{ 0, 0, 0, 7308, // 1.2.840.10008.6.1.1039
"Human Hip Implant Component Types" },
{ 0, 0, 0, 7309, // 1.2.840.10008.6.1.1040
"Human Trauma Implant Component Types" },
{ 0, 0, 0, 7310, // 1.2.840.10008.6.1.1041
"Implant Fixation Method" },
{ 0, 0, 0, 7445, // 1.2.840.10008.6.1.1042
"Device Participating Roles" },
{ 0, 0, 0, 8101, // 1.2.840.10008.6.1.1043
"Container Types" },
{ 0, 0, 0, 8102, // 1.2.840.10008.6.1.1044
"Container Component Types" },
{ 0, 0, 0, 8103, // 1.2.840.10008.6.1.1045
"Anatomic Pathology Specimen Types" },
{ 0, 0, 0, 8104, // 1.2.840.10008.6.1.1046
"Breast Tissue Specimen Types" },
{ 0, 0, 0, 8109, // 1.2.840.10008.6.1.1047
"Specimen Collection Procedure" },
{ 0, 0, 0, 8110, // 1.2.840.10008.6.1.1048
"Specimen Sampling Procedure" },
{ 0, 0, 0, 8111, // 1.2.840.10008.6.1.1049
"Specimen Preparation Procedure" },
{ 0, 0, 0, 8112, // 1.2.840.10008.6.1.1050
"Specimen Stains" },
{ 0, 0, 0, 8113, // 1.2.840.10008.6.1.1051
"Specimen Preparation Steps" },
{ 0, 0, 0, 8114, // 1.2.840.10008.6.1.1052
"Specimen Fixatives" },
{ 0, 0, 0, 8115, // 1.2.840.10008.6.1.1053
"Specimen Embedding Media" },
{ 0, 0, 0, 10020, // 1.2.840.10008.6.1.1054
"Source of Projection X-Ray Dose Information" },
{ 0, 0, 0, 10021, // 1.2.840.10008.6.1.1055
"Source of CT Dose Information" },
{ 0, 0, 0, 10025, // 1.2.840.10008.6.1.1056
"Radiation Dose Reference Points" },
{ 0, 0, 0, 501, // 1.2.840.10008.6.1.1057
"Volumetric View Description" },
{ 0, 0, 0, 502, // 1.2.840.10008.6.1.1058
"Volumetric View Modifier" },
{ 0, 0, 0, 7260, // 1.2.840.10008.6.1.1059
"Diffusion Acquisition Value Types" },
{ 0, 0, 0, 7261, // 1.2.840.10008.6.1.1060
"Diffusion Model Value Types" },
{ 0, 0, 0, 7262, // 1.2.840.10008.6.1.1061
"Diffusion Tractography Algorithm Families" },
{ 0, 0, 0, 7263, // 1.2.840.10008.6.1.1062
"Diffusion Tractography Measurement Types" },
{ 0, 0, 0, 7490, // 1.2.840.10008.6.1.1063
"Research Animal Source Registries" },
{ 0, 0, 0, 231, // 1.2.840.10008.6.1.1064
"Yes-No Only" },
{ 0, 0, 0, 601, // 1.2.840.10008.6.1.1065
"Biosafety Levels" },
{ 0, 0, 0, 602, // 1.2.840.10008.6.1.1066
"Biosafety Control Reasons" },
{ 0, 0, 0, 7457, // 1.2.840.10008.6.1.1067
"Sex - Male Female or Both" },
{ 0, 0, 0, 603, // 1.2.840.10008.6.1.1068
"Animal Room Types" },
{ 0, 0, 0, 604, // 1.2.840.10008.6.1.1069
"Device Reuse" },
{ 0, 0, 0, 605, // 1.2.840.10008.6.1.1070
"Animal Bedding Material" },
{ 0, 0, 0, 606, // 1.2.840.10008.6.1.1071
"Animal Shelter Types" },
{ 0, 0, 0, 607, // 1.2.840.10008.6.1.1072
"Animal Feed Types" },
{ 0, 0, 0, 608, // 1.2.840.10008.6.1.1073
"Animal Feed Sources" },
{ 0, 0, 0, 609, // 1.2.840.10008.6.1.1074
"Animal Feeding Methods" },
{ 0, 0, 0, 610, // 1.2.840.10008.6.1.1075
"Water Types" },
{ 0, 0, 0, 611, // 1.2.840.10008.6.1.1076
"Anesthesia Category Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 612, // 1.2.840.10008.6.1.1077
"Anesthesia Category Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 613, // 1.2.840.10008.6.1.1078
"Anesthesia Induction Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 614, // 1.2.840.10008.6.1.1079
"Anesthesia Induction Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 615, // 1.2.840.10008.6.1.1080
"Anesthesia Maintenance Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 616, // 1.2.840.10008.6.1.1081
"Anesthesia Maintenance Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 617, // 1.2.840.10008.6.1.1082
"Airway Management Method Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 618, // 1.2.840.10008.6.1.1083
"Airway Management Method Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 619, // 1.2.840.10008.6.1.1084
"Airway Management Sub-Method Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 620, // 1.2.840.10008.6.1.1085
"Airway Management Sub-Method Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 621, // 1.2.840.10008.6.1.1086
"Medication Type Code Type for Small Animal Anesthesia" },
{ 0, 0, 0, 622, // 1.2.840.10008.6.1.1087
"Medication Type Code Type from Anesthesia Quality Initiative (AQI)" },
{ 0, 0, 0, 623, // 1.2.840.10008.6.1.1088
"Medication for Small Animal Anesthesia" },
{ 0, 0, 0, 624, // 1.2.840.10008.6.1.1089
"Inhalational Anesthesia Agents for Small Animal Anesthesia" },
{ 0, 0, 0, 625, // 1.2.840.10008.6.1.1090
"Injectable Anesthesia Agents for Small Animal Anesthesia" },
{ 0, 0, 0, 626, // 1.2.840.10008.6.1.1091
"Premedication Agents for Small Animal Anesthesia" },
{ 0, 0, 0, 627, // 1.2.840.10008.6.1.1092
"Neuromuscular Blocking Agents for Small Animal Anesthesia" },
{ 0, 0, 0, 628, // 1.2.840.10008.6.1.1093
"Ancillary Medications for Small Animal Anesthesia" },
{ 0, 0, 0, 629, // 1.2.840.10008.6.1.1094
"Carrier Gases for Small Animal Anesthesia" },
{ 0, 0, 0, 630, // 1.2.840.10008.6.1.1095
"Local Anesthetics for Small Animal Anesthesia" },
{ 0, 0, 0, 631, // 1.2.840.10008.6.1.1096
"Phase of Procedure Requiring Anesthesia" },
{ 0, 0, 0, 632, // 1.2.840.10008.6.1.1097
"Phase of Surgical Procedure Requiring Anesthesia" },
{ 0, 0, 0, 633, // 1.2.840.10008.6.1.1098
"Phase of Imaging Procedure Requiring Anesthesia" },
{ 0, 0, 0, 634, // 1.2.840.10008.6.1.1099
"Phase of Animal Handling" },
{ 0, 0, 0, 635, // 1.2.840.10008.6.1.1100
"Heating Method" },
{ 0, 0, 0, 636, // 1.2.840.10008.6.1.1101
"Temperature Sensor Device Component Type for Small Animal Procedures" },
{ 0, 0, 0, 637, // 1.2.840.10008.6.1.1102
"Exogenous Substance Types" },
{ 0, 0, 0, 638, // 1.2.840.10008.6.1.1103
"Exogenous Substance" },
{ 0, 0, 0, 639, // 1.2.840.10008.6.1.1104
"Tumor Graft Histologic Type" },
{ 0, 0, 0, 640, // 1.2.840.10008.6.1.1105
"Fibrils" },
{ 0, 0, 0, 641, // 1.2.840.10008.6.1.1106
"Viruses" },
{ 0, 0, 0, 642, // 1.2.840.10008.6.1.1107
"Cytokines" },
{ 0, 0, 0, 643, // 1.2.840.10008.6.1.1108
"Toxins" },
{ 0, 0, 0, 644, // 1.2.840.10008.6.1.1109
"Exogenous Substance Administration Sites" },
{ 0, 0, 0, 645, // 1.2.840.10008.6.1.1110
"Exogenous Substance Tissue of Origin" },
{ 0, 0, 0, 646, // 1.2.840.10008.6.1.1111
"Preclinical Small Animal Imaging Procedures" },
{ 0, 0, 0, 647, // 1.2.840.10008.6.1.1112
"Position Reference Indicator for Frame of Reference" },
{ 0, 0, 0, 241, // 1.2.840.10008.6.1.1113
"Present-Absent Only" },
{ 0, 0, 0, 10024, // 1.2.840.10008.6.1.1114
"Water Equivalent Diameter Method" },
{ 0, 0, 0, 7022, // 1.2.840.10008.6.1.1115
"Radiotherapy Purposes of Reference" },
{ 0, 0, 0, 701, // 1.2.840.10008.6.1.1116
"Content Assessment Types" },
{ 0, 0, 0, 702, // 1.2.840.10008.6.1.1117
"RT Content Assessment Types" },
{ 0, 0, 0, 703, // 1.2.840.10008.6.1.1118
"Basis of Assessment" },
{ 0, 0, 0, 7449, // 1.2.840.10008.6.1.1119
"Reader Specialty" },
{ 0, 0, 0, 9233, // 1.2.840.10008.6.1.1120
"Requested Report Types" },
{ 0, 0, 0, 1000, // 1.2.840.10008.6.1.1121
"CT Transverse Plane Reference Basis" },
{ 0, 0, 0, 1001, // 1.2.840.10008.6.1.1122
"Anatomical Reference Basis" },
{ 0, 0, 0, 1002, // 1.2.840.10008.6.1.1123
"Anatomical Reference Basis - Head" },
{ 0, 0, 0, 1003, // 1.2.840.10008.6.1.1124
"Anatomical Reference Basis - Spine" },
{ 0, 0, 0, 1004, // 1.2.840.10008.6.1.1125
"Anatomical Reference Basis - Chest" },
{ 0, 0, 0, 1005, // 1.2.840.10008.6.1.1126
"Anatomical Reference Basis - Abdomen/Pelvis" },
{ 0, 0, 0, 1006, // 1.2.840.10008.6.1.1127
"Anatomical Reference Basis - Extremities" },
{ 0, 0, 0, 1010, // 1.2.840.10008.6.1.1128
"Reference Geometry - Planes" },
{ 0, 0, 0, 1011, // 1.2.840.10008.6.1.1129
"Reference Geometry - Points" },
{ 0, 0, 0, 1015, // 1.2.840.10008.6.1.1130
"Patient Alignment Methods" },
{ 0, 0, 0, 1200, // 1.2.840.10008.6.1.1131
"Contraindications For CT Imaging" },
{ 0, 0, 0, 7110, // 1.2.840.10008.6.1.1132
"Fiducials Categories" },
{ 0, 0, 0, 7111, // 1.2.840.10008.6.1.1133
"Fiducials" },
{ 0, 0, 0, 7013, // 1.2.840.10008.6.1.1134
"Source Instance Purposes of Reference" },
{ 0, 0, 0, 7023, // 1.2.840.10008.6.1.1135
"RT Process Output" },
{ 0, 0, 0, 7024, // 1.2.840.10008.6.1.1136
"RT Process Input" },
{ 0, 0, 0, 7025, // 1.2.840.10008.6.1.1137
"RT Process Input Used" },
{ 0, 0, 0, 6300, // 1.2.840.10008.6.1.1138
"Prostate Sector Anatomy" },
{ 0, 0, 0, 6301, // 1.2.840.10008.6.1.1139
"Prostate Sector Anatomy from PI-RADS v2" },
{ 0, 0, 0, 6302, // 1.2.840.10008.6.1.1140
"Prostate Sector Anatomy from European Concensus 16 Sector (Minimal) Model" },
{ 0, 0, 0, 6303, // 1.2.840.10008.6.1.1141
"Prostate Sector Anatomy from European Concensus 27 Sector (Optimal) Model" },
{ 0, 0, 0, 12301, // 1.2.840.10008.6.1.1142
"Measurement Selection Reasons" },
{ 0, 0, 0, 12302, // 1.2.840.10008.6.1.1143
"Echo Finding Observation Types" },
{ 0, 0, 0, 12303, // 1.2.840.10008.6.1.1144
"Echo Measurement Types" },
{ 0, 0, 0, 12304, // 1.2.840.10008.6.1.1145
"Echo Measured Properties" },
{ 0, 0, 0, 12305, // 1.2.840.10008.6.1.1146
"Basic Echo Anatomic Sites" },
{ 0, 0, 0, 12306, // 1.2.840.10008.6.1.1147
"Echo Flow Directions" },
{ 0, 0, 0, 12307, // 1.2.840.10008.6.1.1148
"Cardiac Phases and Time Points" },
{ 0, 0, 0, 12300, // 1.2.840.10008.6.1.1149
"Core Echo Measurements" },
{ 0, 0, 0, 4270, // 1.2.840.10008.6.1.1150
"OCT-A Processing Algorithm Families" },
{ 0, 0, 0, 4271, // 1.2.840.10008.6.1.1151
"En Face Image Types" },
{ 0, 0, 0, 4272, // 1.2.840.10008.6.1.1152
"Opt Scan Pattern Types" },
{ 0, 0, 0, 4273, // 1.2.840.10008.6.1.1153
"Retinal Segmentation Surfaces" },
{ 0, 0, 0, 10060, // 1.2.840.10008.6.1.1154
"Organs for Radiation Dose Estimates" },
{ 0, 0, 0, 10061, // 1.2.840.10008.6.1.1155
"Absorbed Radiation Dose Types" },
{ 0, 0, 0, 10062, // 1.2.840.10008.6.1.1156
"Equivalent Radiation Dose Types" },
{ 0, 0, 0, 10063, // 1.2.840.10008.6.1.1157
"Radiation Dose Estimate Distribution Representation" },
{ 0, 0, 0, 10064, // 1.2.840.10008.6.1.1158
"Patient Model Type" },
{ 0, 0, 0, 10065, // 1.2.840.10008.6.1.1159
"Radiation Transport Model Type" },
{ 0, 0, 0, 10066, // 1.2.840.10008.6.1.1160
"Attenuator Category" },
{ 0, 0, 0, 10067, // 1.2.840.10008.6.1.1161
"Radiation Attenuator Materials" },
{ 0, 0, 0, 10068, // 1.2.840.10008.6.1.1162
"Estimate Method Types" },
{ 0, 0, 0, 10069, // 1.2.840.10008.6.1.1163
"Radiation Dose Estimation Parameter" },
{ 0, 0, 0, 10070, // 1.2.840.10008.6.1.1164
"Radiation Dose Types" },
{ 0, 0, 0, 7270, // 1.2.840.10008.6.1.1165
"MR Diffusion Component Semantics" },
{ 0, 0, 0, 7271, // 1.2.840.10008.6.1.1166
"MR Diffusion Anisotropy Indices" },
{ 0, 0, 0, 7272, // 1.2.840.10008.6.1.1167
"MR Diffusion Model Parameters" },
{ 0, 0, 0, 7273, // 1.2.840.10008.6.1.1168
"MR Diffusion Models" },
{ 0, 0, 0, 7274, // 1.2.840.10008.6.1.1169
"MR Diffusion Model Fitting Methods" },
{ 0, 0, 0, 7275, // 1.2.840.10008.6.1.1170
"MR Diffusion Model Specific Methods" },
{ 0, 0, 0, 7276, // 1.2.840.10008.6.1.1171
"MR Diffusion Model Inputs" },
{ 0, 0, 0, 7277, // 1.2.840.10008.6.1.1172
"Units of Diffusion Rate Area Over Time" },
{ 0, 0, 0, 7039, // 1.2.840.10008.6.1.1173
"Pediatric Size Categories" },
{ 0, 0, 0, 7041, // 1.2.840.10008.6.1.1174
"Calcium Scoring Patient Size Categories" },
{ 0, 0, 0, 10034, // 1.2.840.10008.6.1.1175
"Reason for Repeating Acquisition" },
{ 0, 0, 0, 800, // 1.2.840.10008.6.1.1176
"Protocol Assertion Codes" },
{ 0, 0, 0, 7026, // 1.2.840.10008.6.1.1177
"Radiotherapeutic Dose Measurement Devices" },
{ 0, 0, 0, 7014, // 1.2.840.10008.6.1.1178
"Export Additional Information Document Titles" },
{ 0, 0, 0, 7015, // 1.2.840.10008.6.1.1179
"Export Delay Reasons" },
{ 0, 0, 0, 7016, // 1.2.840.10008.6.1.1180
"Level of Difficulty" },
{ 0, 0, 0, 7017, // 1.2.840.10008.6.1.1181
"Category of Teaching Material - Imaging" },
{ 0, 0, 0, 7018, // 1.2.840.10008.6.1.1182
"Miscellaneous Document Titles" },
{ 0, 0, 0, 7019, // 1.2.840.10008.6.1.1183
"Segmentation Non-Image Source Purposes of Reference" },
{ 0, 0, 0, 280, // 1.2.840.10008.6.1.1184
"Longitudinal Temporal Event Types" },
{ 0, 0, 0, 6401, // 1.2.840.10008.6.1.1185
"Non-lesion Object Type - Physical Objects" },
{ 0, 0, 0, 6402, // 1.2.840.10008.6.1.1186
"Non-lesion Object Type - Substances" },
{ 0, 0, 0, 6403, // 1.2.840.10008.6.1.1187
"Non-lesion Object Type - Tissues" },
{ 0, 0, 0, 6404, // 1.2.840.10008.6.1.1188
"Chest Non-lesion Object Type - Physical Objects" },
{ 0, 0, 0, 6405, // 1.2.840.10008.6.1.1189
"Chest Non-lesion Object Type - Tissues" },
{ 0, 0, 0, 7191, // 1.2.840.10008.6.1.1190
"Tissue Segmentation Property Types" },
{ 0, 0, 0, 7192, // 1.2.840.10008.6.1.1191
"Anatomical Structure Segmentation Property Types" },
{ 0, 0, 0, 7193, // 1.2.840.10008.6.1.1192
"Physical Object Segmentation Property Types" },
{ 0, 0, 0, 7194, // 1.2.840.10008.6.1.1193
"Morphologically Abnormal Structure Segmentation Property Types" },
{ 0, 0, 0, 7195, // 1.2.840.10008.6.1.1194
"Function Segmentation Property Types" },
{ 0, 0, 0, 7196, // 1.2.840.10008.6.1.1195
"Spatial and Relational Concept Segmentation Property Types" },
{ 0, 0, 0, 7197, // 1.2.840.10008.6.1.1196
"Body Substance Segmentation Property Types" },
{ 0, 0, 0, 7198, // 1.2.840.10008.6.1.1197
"Substance Segmentation Property Types" },
{ 0, 0, 0, 9303, // 1.2.840.10008.6.1.1198
"Interpretation Request Discontinuation Reasons" },
{ 0, 0, 0, 7475, // 1.2.840.10008.6.1.1199
"Gray Level Run Length Based Features" },
{ 0, 0, 0, 7476, // 1.2.840.10008.6.1.1200
"Gray Level Size Zone Based Features" },
{ 0, 0, 0, 7060, // 1.2.840.10008.6.1.1201
"Encapsulated Document Source Purposes of Reference" },
{ 0, 0, 0, 7061, // 1.2.840.10008.6.1.1202
"Model Document Titles" },
{ 0, 0, 0, 7062, // 1.2.840.10008.6.1.1203
"Purpose of Reference to Predecessor 3D Model" },
{ 0, 0, 0, 7063, // 1.2.840.10008.6.1.1204
"Model Scale Units" },
{ 0, 0, 0, 7064, // 1.2.840.10008.6.1.1205
"Model Usage" },
{ 0, 0, 0, 10071, // 1.2.840.10008.6.1.1206
"Radiation Dose Units" },
{ 0, 0, 0, 7112, // 1.2.840.10008.6.1.1207
"Radiotherapy Fiducials" },
{ 0, 0, 0, 300, // 1.2.840.10008.6.1.1208
"Multi-energy Relevant Materials" },
{ 0, 0, 0, 301, // 1.2.840.10008.6.1.1209
"Multi-energy Material Units" },
{ 0, 0, 0, 9500, // 1.2.840.10008.6.1.1210
"Dosimetric Objective Types" },
{ 0, 0, 0, 9501, // 1.2.840.10008.6.1.1211
"Prescription Anatomy Categories" },
{ 0, 0, 0, 9502, // 1.2.840.10008.6.1.1212
"RT Segment Annotation Categories" },
{ 0, 0, 0, 9503, // 1.2.840.10008.6.1.1213
"Radiotherapy Therapeutic Role Categories" },
{ 0, 0, 0, 9504, // 1.2.840.10008.6.1.1214
"RT Geometric Information" },
{ 0, 0, 0, 9505, // 1.2.840.10008.6.1.1215
"Fixation or Positioning Devices" },
{ 0, 0, 0, 9506, // 1.2.840.10008.6.1.1216
"Brachytherapy Devices" },
{ 0, 0, 0, 9507, // 1.2.840.10008.6.1.1217
"External Body Models" },
{ 0, 0, 0, 9508, // 1.2.840.10008.6.1.1218
"Non-specific Volumes" },
{ 0, 0, 0, 9509, // 1.2.840.10008.6.1.1219
"Purpose of Reference For RT Physician Intent Input" },
{ 0, 0, 0, 9510, // 1.2.840.10008.6.1.1220
"Purpose of Reference For RT Treatment Planning Input" },
{ 0, 0, 0, 9511, // 1.2.840.10008.6.1.1221
"General External Radiotherapy Procedure Techniques" },
{ 0, 0, 0, 9512, // 1.2.840.10008.6.1.1222
"Tomotherapeutic Radiotherapy Procedure Techniques" },
{ 0, 0, 0, 9513, // 1.2.840.10008.6.1.1223
"Fixation Devices" },
{ 0, 0, 0, 9514, // 1.2.840.10008.6.1.1224
"Anatomical Structures For Radiotherapy" },
{ 0, 0, 0, 9515, // 1.2.840.10008.6.1.1225
"RT Patient Support Devices" },
{ 0, 0, 0, 9516, // 1.2.840.10008.6.1.1226
"Radiotherapy Bolus Device Types" },
{ 0, 0, 0, 9517, // 1.2.840.10008.6.1.1227
"Radiotherapy Block Device Types" },
{ 0, 0, 0, 9518, // 1.2.840.10008.6.1.1228
"Radiotherapy Accessory No-slot Holder Device Types" },
{ 0, 0, 0, 9519, // 1.2.840.10008.6.1.1229
"Radiotherapy Accessory Slot Holder Device Types" },
{ 0, 0, 0, 9520, // 1.2.840.10008.6.1.1230
"Segmented RT Accessory Devices" },
{ 0, 0, 0, 9521, // 1.2.840.10008.6.1.1231
"Radiotherapy Treatment Energy Unit" },
{ 0, 0, 0, 9522, // 1.2.840.10008.6.1.1232
"Multi-source Radiotherapy Procedure Techniques" },
{ 0, 0, 0, 9523, // 1.2.840.10008.6.1.1233
"Robotic Radiotherapy Procedure Techniques" },
{ 0, 0, 0, 9524, // 1.2.840.10008.6.1.1234
"Radiotherapy Procedure Techniques" },
{ 0, 0, 0, 9525, // 1.2.840.10008.6.1.1235
"Radiation Therapy Particle" },
{ 0, 0, 0, 9526, // 1.2.840.10008.6.1.1236
"Ion Therapy Particle" },
{ 0, 0, 0, 9527, // 1.2.840.10008.6.1.1237
"Teletherapy Isotope" },
{ 0, 0, 0, 9528, // 1.2.840.10008.6.1.1238
"Brachytherapy Isotope" },
{ 0, 0, 0, 9529, // 1.2.840.10008.6.1.1239
"Single Dose Dosimetric Objectives" },
{ 0, 0, 0, 9530, // 1.2.840.10008.6.1.1240
"Percentage and Dose Dosimetric Objectives" },
{ 0, 0, 0, 9531, // 1.2.840.10008.6.1.1241
"Volume and Dose Dosimetric Objectives" },
{ 0, 0, 0, 9532, // 1.2.840.10008.6.1.1242
"No-Parameter Dosimetric Objectives" },
{ 0, 0, 0, 9533, // 1.2.840.10008.6.1.1243
"Delivery Time Structure" },
{ 0, 0, 0, 9534, // 1.2.840.10008.6.1.1244
"Radiotherapy Targets" },
{ 0, 0, 0, 9535, // 1.2.840.10008.6.1.1245
"Radiotherapy Dose Calculation Roles" },
{ 0, 0, 0, 9536, // 1.2.840.10008.6.1.1246
"Radiotherapy Prescribing and Segmenting Person Roles" },
{ 0, 0, 0, 9537, // 1.2.840.10008.6.1.1247
"Effective Dose Calculation Method Categories" },
{ 0, 0, 0, 9538, // 1.2.840.10008.6.1.1248
"Radiation Transport-based Effective Dose Method Modifiers" },
{ 0, 0, 0, 9539, // 1.2.840.10008.6.1.1249
"Fractionation-based Effective Dose Method Modifiers" },
{ 0, 0, 0, 60, // 1.2.840.10008.6.1.1250
"Imaging Agent Administration Adverse Events" },
{ 0, 0, 0, 61, // 1.2.840.10008.6.1.1251
"Time Relative to Procedure" },
{ 0, 0, 0, 62, // 1.2.840.10008.6.1.1252
"Imaging Agent Administration Phase Type" },
{ 0, 0, 0, 63, // 1.2.840.10008.6.1.1253
"Imaging Agent Administration Mode" },
{ 0, 0, 0, 64, // 1.2.840.10008.6.1.1254
"Imaging Agent Administration Patient State" },
{ 0, 0, 0, 65, // 1.2.840.10008.6.1.1255
"Pre-medication For Imaging Agent Administration" },
{ 0, 0, 0, 66, // 1.2.840.10008.6.1.1256
"Medication For Imaging Agent Administration" },
{ 0, 0, 0, 67, // 1.2.840.10008.6.1.1257
"Imaging Agent Administration Completion Status" },
{ 0, 0, 0, 68, // 1.2.840.10008.6.1.1258
"Imaging Agent Administration Pharmaceutical Unit of Presentation" },
{ 0, 0, 0, 69, // 1.2.840.10008.6.1.1259
"Imaging Agent Administration Consumables" },
{ 0, 0, 0, 70, // 1.2.840.10008.6.1.1260
"Flush" },
{ 0, 0, 0, 71, // 1.2.840.10008.6.1.1261
"Imaging Agent Administration Injector Event Type" },
{ 0, 0, 0, 72, // 1.2.840.10008.6.1.1262
"Imaging Agent Administration Step Type" },
{ 0, 0, 0, 73, // 1.2.840.10008.6.1.1263
"Bolus Shaping Curves" },
{ 0, 0, 0, 74, // 1.2.840.10008.6.1.1264
"Imaging Agent Administration Consumable Catheter Type" },
{ 0, 0, 0, 75, // 1.2.840.10008.6.1.1265
"Low-high-equal" },
{ 0, 0, 0, 76, // 1.2.840.10008.6.1.1266
"Type of Pre-medication" },
{ 0, 0, 0, 245, // 1.2.840.10008.6.1.1267
"Laterality with Median" },
{ 0, 0, 0, 4029, // 1.2.840.10008.6.1.1268
"Dermatology Anatomic Sites" },
{ 0, 0, 0, 218, // 1.2.840.10008.6.1.1269
"Quantitative Image Features" },
{ 0, 0, 0, 7477, // 1.2.840.10008.6.1.1270
"Global Shape Descriptors" },
{ 0, 0, 0, 7478, // 1.2.840.10008.6.1.1271
"Intensity Histogram Features" },
{ 0, 0, 0, 7479, // 1.2.840.10008.6.1.1272
"Grey Level Distance Zone Based Features" },
{ 0, 0, 0, 7500, // 1.2.840.10008.6.1.1273
"Neighbourhood Grey Tone Difference Based Features" },
{ 0, 0, 0, 7501, // 1.2.840.10008.6.1.1274
"Neighbouring Grey Level Dependence Based Features" },
{ 0, 0, 0, 4242, // 1.2.840.10008.6.1.1275
"Cornea Measurement Method Descriptors" },
{ 0, 0, 0, 7027, // 1.2.840.10008.6.1.1276
"Segmented Radiotherapeutic Dose Measurement Devices" },
{ 0, 0, 0, 6098, // 1.2.840.10008.6.1.1277
"Clinical Course of Disease" },
{ 0, 0, 0, 6099, // 1.2.840.10008.6.1.1278
"Racial Group" },
{ 0, 0, 0, 246, // 1.2.840.10008.6.1.1279
"Relative Laterality" },
{ 0, 0, 0, 7168, // 1.2.840.10008.6.1.1280
"Brain Lesion Segmentation Types With Necrosis" },
{ 0, 0, 0, 7169, // 1.2.840.10008.6.1.1281
"Brain Lesion Segmentation Types Without Necrosis" },
{ 0, 0, 0, 32, // 1.2.840.10008.6.1.1282
"Non-Acquisition Modality" },
{ 0, 0, 0, 33, // 1.2.840.10008.6.1.1283
"Modality" },
{ 0, 0, 0, 247, // 1.2.840.10008.6.1.1284
"Laterality Left-Right Only" },
{ 0, 0, 0, 210, // 1.2.840.10008.6.1.1285
"Qualitative Evaluation Modifier Types" },
{ 0, 0, 0, 211, // 1.2.840.10008.6.1.1286
"Qualitative Evaluation Modifier Values" },
{ 0, 0, 0, 212, // 1.2.840.10008.6.1.1287
"Generic Anatomic Location Modifiers" },
{ 0, 0, 0, 9541, // 1.2.840.10008.6.1.1288
"Beam Limiting Device Types" },
{ 0, 0, 0, 9542, // 1.2.840.10008.6.1.1289
"Compensator Device Types" },
{ 0, 0, 0, 9543, // 1.2.840.10008.6.1.1290
"Radiotherapy Treatment Machine Modes" },
{ 0, 0, 0, 9544, // 1.2.840.10008.6.1.1291
"Radiotherapy Distance Reference Locations" },
{ 0, 0, 0, 9545, // 1.2.840.10008.6.1.1292
"Fixed Beam Limiting Device Types" },
{ 0, 0, 0, 9546, // 1.2.840.10008.6.1.1293
"Radiotherapy Wedge Types" },
{ 0, 0, 0, 9547, // 1.2.840.10008.6.1.1294
"RT Beam Limiting Device Orientation Labels" },
{ 0, 0, 0, 9548, // 1.2.840.10008.6.1.1295
"General Accessory Device Types" },
{ 0, 0, 0, 9549, // 1.2.840.10008.6.1.1296
"Radiation Generation Mode Types" },
{ 0, 0, 0, 9550, // 1.2.840.10008.6.1.1297
"C-Arm Photon-Electron Delivery Rate Units" },
{ 0, 0, 0, 9551, // 1.2.840.10008.6.1.1298
"Treatment Delivery Device Types" },
{ 0, 0, 0, 9552, // 1.2.840.10008.6.1.1299
"C-Arm Photon-Electron Dosimeter Units" },
{ 0, 0, 0, 9553, // 1.2.840.10008.6.1.1300
"Treatment Points" },
{ 0, 0, 0, 9554, // 1.2.840.10008.6.1.1301
"Equipment Reference Points" },
{ 0, 0, 0, 9555, // 1.2.840.10008.6.1.1302
"Radiotherapy Treatment Planning Person Roles" },
{ 0, 0, 0, 7070, // 1.2.840.10008.6.1.1303
"Real Time Video Rendition Titles" },
{ 0, 0, 0, 219, // 1.2.840.10008.6.1.1304
"Geometry Graphical Representation" },
{ 0, 0, 0, 217, // 1.2.840.10008.6.1.1305
"Visual Explanation" },
{ 0, 0, 0, 6304, // 1.2.840.10008.6.1.1306
"Prostate Sector Anatomy from PI-RADS v2.1" },
{ 0, 0, 0, 9556, // 1.2.840.10008.6.1.1307
"Radiotherapy Robotic Node Sets" },
{ 0, 0, 0, 9557, // 1.2.840.10008.6.1.1308
"Tomotherapeutic Dosimeter Units" },
{ 0, 0, 0, 9558, // 1.2.840.10008.6.1.1309
"Tomotherapeutic Dose Rate Units" },
{ 0, 0, 0, 9559, // 1.2.840.10008.6.1.1310
"Robotic Delivery Device Dosimeter Units" },
{ 0, 0, 0, 9560, // 1.2.840.10008.6.1.1311
"Robotic Delivery Device Dose Rate Units" },
{ 0, 0, 0, 8134, // 1.2.840.10008.6.1.1312
"Anatomic Structures for Anatomic Pathology" },
{ 0, 0, 0, 6148, // 1.2.840.10008.6.1.1313
"Mediastinum Finding or Feature" },
{ 0, 0, 0, 6149, // 1.2.840.10008.6.1.1314
"Mediastinum Anatomy" },
{ 0, 0, 0, 12100, // 1.2.840.10008.6.1.1315
"Vascular Ultrasound Report Document Titles" },
{ 0, 0, 0, 12130, // 1.2.840.10008.6.1.1316
"Parts of Organs (Non-Lateralized)" },
{ 0, 0, 0, 12131, // 1.2.840.10008.6.1.1317
"Parts of Organs (Lateralized)" },
{ 0, 0, 0, 9561, // 1.2.840.10008.6.1.1318
"Treatment Termination Reasons" },
{ 0, 0, 0, 9562, // 1.2.840.10008.6.1.1319
"Radiotherapy Treatment Delivery Person Roles" },
{ 0, 0, 0, 9563, // 1.2.840.10008.6.1.1320
"Interlock Resolutions" },
{ 0, 0, 0, 9564, // 1.2.840.10008.6.1.1321
"Treatment Session Confirmation Assertions" },
{ 0, 0, 0, 9565, // 1.2.840.10008.6.1.1322
"Treatment Tolerance Violation Causes" },
{ 0, 0, 0, 9566, // 1.2.840.10008.6.1.1323
"Clinical Tolerance Violation Types" },
{ 0, 0, 0, 9567, // 1.2.840.10008.6.1.1324
"Machine Tolerance Violation Types" },
{ 0, 0, 0, 9568, // 1.2.840.10008.6.1.1325
"Treatment Interlocks" },
{ 0, 0, 0, 9569, // 1.2.840.10008.6.1.1326
"Isocentric Patient Support Position Parameters" },
{ 0, 0, 0, 9570, // 1.2.840.10008.6.1.1327
"RT Overridden Treatment Parameters" },
{ 0, 0, 0, 3030, // 1.2.840.10008.6.1.1328
"EEG Leads" },
{ 0, 0, 0, 3031, // 1.2.840.10008.6.1.1329
"Lead locations near or in muscles" },
{ 0, 0, 0, 3032, // 1.2.840.10008.6.1.1330
"Lead locations near peripheral nerves" },
{ 0, 0, 0, 3033, // 1.2.840.10008.6.1.1331
"EOG Leads" },
{ 0, 0, 0, 3034, // 1.2.840.10008.6.1.1332
"Body Position Channels" },
{ 0, 0, 0, 3035, // 1.2.840.10008.6.1.1333
"EEG Annotations - Neurophysiologic Enumerations (EEG)" },
{ 0, 0, 0, 3036, // 1.2.840.10008.6.1.1334
"EMG Annotations - Neurophysiological Enumerations (EMG)" },
{ 0, 0, 0, 3037, // 1.2.840.10008.6.1.1335
"EOG Annotations - Neurophysiological Enumerations (EOG)" },
{ 0, 0, 0, 3038, // 1.2.840.10008.6.1.1336
"Pattern Events" },
{ 0, 0, 0, 3039, // 1.2.840.10008.6.1.1337
"Device-related and Environment-related Events" },
{ 0, 0, 0, 3040, // 1.2.840.10008.6.1.1338
"EEG Annotations - Neurological Monitoring Measurements" },
{ 0, 0, 0, 12024, // 1.2.840.10008.6.1.1339
"OB-GYN Ultrasound Report Document Titles" },
{ 0, 0, 0, 7230, // 1.2.840.10008.6.1.1340
"Automation of Measurement" },
{ 0, 0, 0, 12025, // 1.2.840.10008.6.1.1341
"OB-GYN Ultrasound Beam Path" },
{ 0, 0, 0, 7550, // 1.2.840.10008.6.1.1342
"Angle Measurements" },
{ 0, 0, 0, 7551, // 1.2.840.10008.6.1.1343
"Generic Purpose of Reference to Images and Coordinates in Measurements" },
{ 0, 0, 0, 7552, // 1.2.840.10008.6.1.1344
"Generic Purpose of Reference to Images in Measurements" },
{ 0, 0, 0, 7553, // 1.2.840.10008.6.1.1345
"Generic Purpose of Reference to Coordinates in Measurements" },
{ 0, 0, 0, 4401, // 1.2.840.10008.6.1.1346
"Fitzpatrick Skin Type" },
{ 0, 0, 0, 4402, // 1.2.840.10008.6.1.1347
"History of Malignant Melanoma" },
{ 0, 0, 0, 4403, // 1.2.840.10008.6.1.1348
"History of Melanoma in Situ" },
{ 0, 0, 0, 4404, // 1.2.840.10008.6.1.1349
"History of Non-Melanoma Skin Cancer" },
{ 0, 0, 0, 4405, // 1.2.840.10008.6.1.1350
"History of Non-Melanoma Skin Cancer" },
{ 0, 0, 0, 4406, // 1.2.840.10008.6.1.1351
"Patient Reported Lesion Characteristics" },
{ 0, 0, 0, 4407, // 1.2.840.10008.6.1.1352
"Lesion Palpation Findings" },
{ 0, 0, 0, 4408, // 1.2.840.10008.6.1.1353
"Lesion Visual Findings" },
{ 0, 0, 0, 4409, // 1.2.840.10008.6.1.1354
"Lesion Visual Findings" },
{ 0, 0, 0, 12125, // 1.2.840.10008.6.1.1355
"Abdominopelvic Vessels" },
{ 0, 0, 0, 43, // 1.2.840.10008.6.1.1356
"Numeric Value Failure Qualifier" },
{ 0, 0, 0, 44, // 1.2.840.10008.6.1.1357
"Numeric Value Unknown Qualifier" },
{ 0, 0, 0, 7170, // 1.2.840.10008.6.1.1358
"Couinaud Liver Segments" },
{ 0, 0, 0, 7171, // 1.2.840.10008.6.1.1359
"Liver Segmentation Types" },
{ 0, 0, 0, 1201, // 1.2.840.10008.6.1.1360
"Contraindications For XA Imaging" },
{ 0, 0, 0, 3041, // 1.2.840.10008.6.1.1361
"Neurophysiologic Stimulation Modes" },
{ 0, 0, 0, 10072, // 1.2.840.10008.6.1.1362
"Reported Value Types" },
{ 0, 0, 0, 10073, // 1.2.840.10008.6.1.1363
"Value Timings" },
{ 0, 0, 0, 10074, // 1.2.840.10008.6.1.1364
"RDSR Frame of Reference Origins" },
{ 0, 0, 0, 8135, // 1.2.840.10008.6.1.1365
"Microscopy Annotation Property Types" },
{ 0, 0, 0, 8136, // 1.2.840.10008.6.1.1366
"Microscopy Measurement Types" },
{ 0, 0, 0, 6310, // 1.2.840.10008.6.1.1367
"Prostate Reporting Systems" },
{ 0, 0, 0, 6311, // 1.2.840.10008.6.1.1368
"MR Signal Intensity" },
{ 0, 0, 0, 6312, // 1.2.840.10008.6.1.1369
"Cross-sectional Scan Plane Orientation" },
{ 0, 0, 0, 6313, // 1.2.840.10008.6.1.1370
"History of Prostate Disease" },
{ 0, 0, 0, 6314, // 1.2.840.10008.6.1.1371
"Prostate MRI Study Quality Findings" },
{ 0, 0, 0, 6315, // 1.2.840.10008.6.1.1372
"Prostate MRI Series Quality Findings" },
{ 0, 0, 0, 6316, // 1.2.840.10008.6.1.1373
"MR Imaging Artifacts" },
{ 0, 0, 0, 6317, // 1.2.840.10008.6.1.1374
"Prostate DCE MRI Quality Findings" },
{ 0, 0, 0, 6318, // 1.2.840.10008.6.1.1375
"Prostate DWI MRI Quality Findings" },
{ 0, 0, 0, 6319, // 1.2.840.10008.6.1.1376
"Abdominal Intervention Types" },
{ 0, 0, 0, 6320, // 1.2.840.10008.6.1.1377
"Abdominal Interventions" },
{ 0, 0, 0, 6321, // 1.2.840.10008.6.1.1378
"Prostate Cancer Diagnostic Procedures" },
{ 0, 0, 0, 6322, // 1.2.840.10008.6.1.1379
"Prostate Cancer Family History" },
{ 0, 0, 0, 6323, // 1.2.840.10008.6.1.1380
"Prostate Cancer Therapy" },
{ 0, 0, 0, 6324, // 1.2.840.10008.6.1.1381
"Prostate MRI Assessment" },
{ 0, 0, 0, 6325, // 1.2.840.10008.6.1.1382
"Overall Assessment from PI-RADS(R)" },
{ 0, 0, 0, 6326, // 1.2.840.10008.6.1.1383
"Image Quality Control Standards" },
{ 0, 0, 0, 6327, // 1.2.840.10008.6.1.1384
"Prostate Imaging Indications" },
{ 0, 0, 0, 6328, // 1.2.840.10008.6.1.1385
"PI-RADS(R) v2 Lesion Assessment Category" },
{ 0, 0, 0, 6329, // 1.2.840.10008.6.1.1386
"PI-RADS(R) v2 T2WI TZ Lesion Assessment Category" },
{ 0, 0, 0, 6330, // 1.2.840.10008.6.1.1387
"PI-RADS(R) v2 T2WI PZ Lesion Assessment Category" },
{ 0, 0, 0, 6331, // 1.2.840.10008.6.1.1388
"PI-RADS(R) v2 DWI Lesion Assessment Category" },
{ 0, 0, 0, 6332, // 1.2.840.10008.6.1.1389
"PI-RADS(R) v2 DCE Lesion Assessment Category" },
{ 0, 0, 0, 6333, // 1.2.840.10008.6.1.1390
"mpMRI Assessment Types" },
{ 0, 0, 0, 6334, // 1.2.840.10008.6.1.1391
"mpMRI Assessment Types from PI-RADS(R)" },
{ 0, 0, 0, 6335, // 1.2.840.10008.6.1.1392
"mpMRI Assessment Values" },
{ 0, 0, 0, 6336, // 1.2.840.10008.6.1.1393
"MRI Abnormalities" },
{ 0, 0, 0, 6337, // 1.2.840.10008.6.1.1394
"mpMRI Prostate Abnormalities from PI-RADS(R)" },
{ 0, 0, 0, 6338, // 1.2.840.10008.6.1.1395
"mpMRI Benign Prostate Abnormalities from PI-RADS(R)" },
{ 0, 0, 0, 6339, // 1.2.840.10008.6.1.1396
"MRI Shape Characteristics" },
{ 0, 0, 0, 6340, // 1.2.840.10008.6.1.1397
"Prostate MRI Shape Characteristics from PI-RADS(R)" },
{ 0, 0, 0, 6341, // 1.2.840.10008.6.1.1398
"MRI Margin Characteristics" },
{ 0, 0, 0, 6342, // 1.2.840.10008.6.1.1399
"Prostate MRI Margin Characteristics from PI-RADS(R)" },
{ 0, 0, 0, 6343, // 1.2.840.10008.6.1.1400
"MRI Signal Characteristics" },
{ 0, 0, 0, 6344, // 1.2.840.10008.6.1.1401
"Prostate MRI Signal Characteristics from PI-RADS(R)" },
{ 0, 0, 0, 6345, // 1.2.840.10008.6.1.1402
"MRI Enhancement Patterns" },
{ 0, 0, 0, 6346, // 1.2.840.10008.6.1.1403
"Prostate MRI Enhancement Patterns from PI-RADS(R)" },
{ 0, 0, 0, 6347, // 1.2.840.10008.6.1.1404
"Prostate MRI Extra-prostatic Findings" },
{ 0, 0, 0, 6348, // 1.2.840.10008.6.1.1405
"Prostate MRI Assessment of Extra-prostatic Anatomic Sites" },
{ 0, 0, 0, 6349, // 1.2.840.10008.6.1.1406
"MR Coil Types" },
{ 0, 0, 0, 6350, // 1.2.840.10008.6.1.1407
"Endorectal Coil Fill Substances" },
{ 0, 0, 0, 6351, // 1.2.840.10008.6.1.1408
"Prostate Relational Measurements" },
{ 0, 0, 0, 6352, // 1.2.840.10008.6.1.1409
"Prostate Cancer Diagnostic Blood Lab Measurements" },
{ 0, 0, 0, 6353, // 1.2.840.10008.6.1.1410
"Prostate Imaging Types of Quality Control Standard" },
{ 0, 0, 0, 12308, // 1.2.840.10008.6.1.1411
"Ultrasound Shear Wave Measurements" },
{ 0, 0, 0, 3780, // 1.2.840.10008.6.1.1412
"Left Ventricle Myocardial Wall 16 Segments" },
{ 0, 0, 0, 3781, // 1.2.840.10008.6.1.1413
"Left Ventricle Myocardial Wall 18 Segments" },
{ 0, 0, 0, 3782, // 1.2.840.10008.6.1.1414
"Left Ventricle Basal Wall 6 Segments" },
{ 0, 0, 0, 3783, // 1.2.840.10008.6.1.1415
"Left Ventricle Midlevel Wall 6 Segments" },
{ 0, 0, 0, 3784, // 1.2.840.10008.6.1.1416
"Left Ventricle Apical Wall 4 Segments" },
{ 0, 0, 0, 3785, // 1.2.840.10008.6.1.1417
"Left Ventricle Apical Wall 6 Segments" },
{ 0, 0, 0, 9571, // 1.2.840.10008.6.1.1418
"Patient Treatment Preparation Methods" },
{ 0, 0, 0, 9572, // 1.2.840.10008.6.1.1419
"Patient Shielding Devices" },
{ 0, 0, 0, 9573, // 1.2.840.10008.6.1.1420
"Patient Treaqtment Preparation Devices" },
{ 0, 0, 0, 9574, // 1.2.840.10008.6.1.1421
"Patient Position Displacement Reference Points" },
{ 0, 0, 0, 9575, // 1.2.840.10008.6.1.1422
"Patient Alignment Devices" },
{ 0, 0, 0, 9576, // 1.2.840.10008.6.1.1423
"Reasons for RT Radiation Treatment Omission" },
{ 0, 0, 0, 9577, // 1.2.840.10008.6.1.1424
"Patient Treatment Preparation Methods" },
{ 0, 0, 0, 9578, // 1.2.840.10008.6.1.1425
"Motion Management Setup Devices" },
{ 0, 0, 0, 12309, // 1.2.840.10008.6.1.1426
"Core Echo Strain Measurements" },
{ 0, 0, 0, 12310, // 1.2.840.10008.6.1.1427
"Myocardial Strain Methods" },
{ 0, 0, 0, 12311, // 1.2.840.10008.6.1.1428
"Echo Measured Strain Properties" },
{ 0, 0, 0, 3020, // 1.2.840.10008.6.1.1429
"Assessment from CAD-RADS(TM)" },
{ 0, 0, 0, 3021, // 1.2.840.10008.6.1.1430
"CAD-RADS(TM) Stenosis Assessment Modifier" },
{ 0, 0, 0, 3022, // 1.2.840.10008.6.1.1431
"CAD-RADS(TM) Assessment Modifier" },
{ 0, 0, 0, 9579, // 1.2.840.10008.6.1.1432
"RT Segment Materials" },
{ 0, 0, 0, 7602, // 1.2.840.10008.6.1.1433
"Vertebral Anatomic Structures" },
{ 0, 0, 0, 7603, // 1.2.840.10008.6.1.1434
"Vertebrae" },
{ 0, 0, 0, 7604, // 1.2.840.10008.6.1.1435
"Intervertebral Discs" },
{ 0, 0, 0, 101, // 1.2.840.10008.6.1.1436
"Imaging Procedures" },
{ 0, 0, 0, 103, // 1.2.840.10008.6.1.1437
"NICIP Short Codes for Imaging Procedures" },
{ 0, 0, 0, 104, // 1.2.840.10008.6.1.1438
"NICIP SNOMED Subset of Imaging Procedures" },
{ 0, 0, 0, 105, // 1.2.840.10008.6.1.1439
"ICD-10-PCS Imaging Procedures" },
{ 0, 0, 0, 106, // 1.2.840.10008.6.1.1440
"ICD-10-PCS Nuclear Medicine Procedures" },
{ 0, 0, 0, 107, // 1.2.840.10008.6.1.1441
"ICD-10-PCS Radiation Therapy Procedures" },
{ 0, 0, 0, 9580, // 1.2.840.10008.6.1.1442
"RT Segmentation Property Categories" },
{ 0, 0, 0, 9581, // 1.2.840.10008.6.1.1443
"Radiotherapy Registration Marks" },
{ 0, 0, 0, 9582, // 1.2.840.10008.6.1.1444
"Radiotherapy Dose Regions" },
{ 0, 0, 0, 7199, // 1.2.840.10008.6.1.1445
"Anatomically Localized Lesion Segmentation Types" },
{ 0, 0, 0, 7031, // 1.2.840.10008.6.1.1446
"Reason for Removal from Operational Use" },
{ 0, 0, 0, 12320, // 1.2.840.10008.6.1.1447
"General Ultrasound Report Document Title" },
{ 0, 0, 0, 12321, // 1.2.840.10008.6.1.1448
"Elastography Site" },
{ 0, 0, 0, 12322, // 1.2.840.10008.6.1.1449
"Elastography Measurement Site" },
{ 0, 0, 0, 12323, // 1.2.840.10008.6.1.1450
"Ultrasound Relevant Patient Condition" },
{ 0, 0, 0, 12324, // 1.2.840.10008.6.1.1451
"Shear Wave Detection Method" },
{ 0, 0, 0, 12325, // 1.2.840.10008.6.1.1452
"Liver Ultrasound Study Indication" },
{ 0, 0, 0, 3042, // 1.2.840.10008.6.1.1453
"Analog Waveform Filter" },
{ 0, 0, 0, 3043, // 1.2.840.10008.6.1.1454
"Digital Waveform Filter" },
{ 0, 0, 0, 3044, // 1.2.840.10008.6.1.1455
"Waveform Filter Lookup Table Input Frequency Unit" },
{ 0, 0, 0, 3045, // 1.2.840.10008.6.1.1456
"Waveform Filter Lookup Table Output Magnitude Unit" },
{ 0, 0, 0, 272, // 1.2.840.10008.6.1.1457
"Specific Observation Subject Class" },
{ 0, 0, 0, 9540, // 1.2.840.10008.6.1.1458
"Movable Beam Limiting Device Type" },
{ 0, 0, 0, 9260, // 1.2.840.10008.6.1.1459
"Radiotherapy Acquisition WorkItem Subtasks" },
{ 0, 0, 0, 9261, // 1.2.840.10008.6.1.1460
"Patient Position Acquisition Radiation Source Locations" },
{ 0, 0, 0, 9262, // 1.2.840.10008.6.1.1461
"Energy Derivation Types" },
{ 0, 0, 0, 9263, // 1.2.840.10008.6.1.1462
"KV Imaging Acquisition Techniques" },
{ 0, 0, 0, 9264, // 1.2.840.10008.6.1.1463
"MV Imaging Acquisition Techniques" },
{ 0, 0, 0, 9265, // 1.2.840.10008.6.1.1464
"Patient Position Acquisition - Projection Techniques" },
{ 0, 0, 0, 9266, // 1.2.840.10008.6.1.1465
"Patient Position Acquisition - CT Techniques" },
{ 0, 0, 0, 9267, // 1.2.840.10008.6.1.1466
"Patient Positioning Related Object Purposes" },
{ 0, 0, 0, 9268, // 1.2.840.10008.6.1.1467
"Patient Position Acquisition Devices" },
{ 0, 0, 0, 9269, // 1.2.840.10008.6.1.1468
"RT Radiation Meterset Units" },
{ 0, 0, 0, 9270, // 1.2.840.10008.6.1.1469
"Acquisition Initiation Types" },
{ 0, 0, 0, 9271, // 1.2.840.10008.6.1.1470
"RT Image Patient Position Acquisition Devices" },
{ 0, 0, 0, 11001, // 1.2.840.10008.6.1.1471
"Photoacoustic Illumination Method" },
{ 0, 0, 0, 11002, // 1.2.840.10008.6.1.1472
"Acoustic Coupling Medium" },
{ 0, 0, 0, 11003, // 1.2.840.10008.6.1.1473
"Ultrasound Transducer Technology" },
{ 0, 0, 0, 11004, // 1.2.840.10008.6.1.1474
"Speed of Sound Correction Mechanisms" },
{ 0, 0, 0, 11005, // 1.2.840.10008.6.1.1475
"Photoacoustic Reconstruction Algorithm Family" },
{ 0, 0, 0, 11006, // 1.2.840.10008.6.1.1476
"Photoacoustic Imaged Property" },
{ 0, 0, 0, 10005, // 1.2.840.10008.6.1.1477
"X-Ray Radiation Dose Procedure Type Reported" },
{ 0, 0, 0, 4410, // 1.2.840.10008.6.1.1478
"Topical Treatment" },
{ 0, 0, 0, 4411, // 1.2.840.10008.6.1.1479
"Lesion Color" },
{ 0, 0, 0, 4412, // 1.2.840.10008.6.1.1480
"Specimen Stain for Confocal Microscopy" },
{ 0, 0, 0, 9272, // 1.2.840.10008.6.1.1481
"RT ROI Image Acquisition Context" },
{ 0, 0, 0, 6170, // 1.2.840.10008.6.1.1482
"Lobe of Lung" },
{ 0, 0, 0, 6171, // 1.2.840.10008.6.1.1483
"Zone of Lung" },
{ 0, 0, 0, 3046, // 1.2.840.10008.6.1.1484
"Sleep Stage" },
{ 0, 0, 0, 9273, // 1.2.840.10008.6.1.1485
"Patient Position Acquisition - MR Techniques" },
{ 0, 0, 0, 9583, // 1.2.840.10008.6.1.1486
"RT Plan Radiotherapy Procedure Technique" },
{ 0, 0, 0, 3047, // 1.2.840.10008.6.1.1487
"Waveform Annotation Classification" },
{ 0, 0, 0, 3048, // 1.2.840.10008.6.1.1488
"Waveform Annotations Document Title" },
{ 0, 0, 0, 3049, // 1.2.840.10008.6.1.1489
"EEG Procedure" },
{ 0, 0, 0, 3050, // 1.2.840.10008.6.1.1490
"Patient Consciousness" },
{ 0, 0, 0, 12010, // 1.2.840.10008.6.1.1491
"Follicle Type" },
{ 0, 0, 0, 7163, // 1.2.840.10008.6.1.1492
"Breast Segmentation Types" },
{ 0, 0, 0, 3779, // 1.2.840.10008.6.1.1493
"Implanted Device" },
{ 0, 0, 0, 281, // 1.2.840.10008.6.1.1494
"Similarity Measure" },
{ 0, 0, 0, 34, // 1.2.840.10008.6.1.1495
"Waveform Acquisition Modality" },
{ 0, 0, 0, 4274, // 1.2.840.10008.6.1.1496
"En Face Processing Algorithm Family" },
{ 0, 0, 0, 4275, // 1.2.840.10008.6.1.1497
"Anterior Eye Segmentation Surface" },
{ 0, 0, 0, 12312, // 1.2.840.10008.6.1.1498
"Fetal Echocardiography Image View" },
{ 0, 0, 0, 12313, // 1.2.840.10008.6.1.1499
"Cardiac Ultrasound Fetal Arrhythmia Measurements" },
{ 0, 0, 0, 12314, // 1.2.840.10008.6.1.1500
"Common Fetal Echocardiography Measurements" },
{ 2932, 2, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.7.1.1
"Native DICOM Model" },
{ 0, 0, 0, 0, // 1.2.840.10008.7.1.2
"Abstract Multi-Dimensional Image Model" },
{ 2935, 1, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.8.1.1
"DICOM Content Mapping Resource" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.1
"Imaging Report" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.2
"Clinical Information" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.3
"Imaging Procedure Description" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.4
"Comparison Study" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.5
"Impression" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.6
"Addendum" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.7
"Request" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.8
"Radiation Exposure and Protection Information" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.9
"Fetus Findings" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.10
"Labeled Subsection" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.11
"Communication of Actionable Findings" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.12
"Recommendation" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.13
"Procedural Medication" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.14
"Procedure Technique" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.15
"Image Quality" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.16
"Study Act" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.17
"Series Act" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.18
"SOP Instance Observation" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.19
"Section Text" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.20
"General Header" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.21
"Imaging Header" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.22
"Parent Document" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.23
"General Section Entries" },
{ 0, 0, 0, 0, // 1.2.840.10008.9.24
"Imaging Addendum Report" },
{ 0, 0, 0, 0, // 1.2.840.10008.10.1
"Video Endoscopic Image Real-Time Communication" },
{ 0, 0, 0, 0, // 1.2.840.10008.10.2
"Video Photographic Image Real-Time Communication" },
{ 0, 0, 0, 0, // 1.2.840.10008.10.3
"Audio Waveform Real-Time Communication" },
{ 0, 0, 0, 0, // 1.2.840.10008.10.4
"Rendition Selection Document Real-Time Communication" },
{ 2966, 2, 3, 0, nullptr },
{ 3007, 1, 1, 0, nullptr },
{ 2968, 31, 1, 0, nullptr },
{ 2999, 8, 1, 0, nullptr },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.1
"dicomDeviceName" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.2
"dicomDescription" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.3
"dicomManufacturer" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.4
"dicomManufacturerModelName" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.5
"dicomSoftwareVersion" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.6
"dicomVendorData" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.7
"dicomAETitle" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.8
"dicomNetworkConnectionReference" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.9
"dicomApplicationCluster" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.10
"dicomAssociationInitiator" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.11
"dicomAssociationAcceptor" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.12
"dicomHostname" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.13
"dicomPort" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.14
"dicomSOPClass" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.15
"dicomTransferRole" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.16
"dicomTransferSyntax" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.17
"dicomPrimaryDeviceType" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.18
"dicomRelatedDeviceReference" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.19
"dicomPreferredCalledAETitle" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.20
"dicomTLSCyphersuite" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.21
"dicomAuthorizedNodeCertificateReference" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.22
"dicomThisNodeCertificateReference" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.23
"dicomInstalled" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.24
"dicomStationName" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.25
"dicomDeviceSerialNumber" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.26
"dicomInstitutionName" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.27
"dicomInstitutionAddress" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.28
"dicomInstitutionDepartmentName" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.29
"dicomIssuerOfPatientID" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.30
"dicomPreferredCallingAETitle" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.3.31
"dicomSupportedCharacterSet" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.1
"dicomConfigurationRoot" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.2
"dicomDevicesRoot" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.3
"dicomUniqueAETitlesRegistryRoot" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.4
"dicomDevice" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.5
"dicomNetworkAE" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.6
"dicomNetworkConnection" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.7
"dicomUniqueAETitle" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.0.4.8
"dicomTransferCapability" },
{ 0, 0, 0, 0, // 1.2.840.10008.15.1.1
"Universal Coordinated Time" },
};
const UIDTableEntry *GetUIDTableEntry(const char *uid)
{
if (uid == nullptr)
{
return nullptr;
}
const char *prefix = "1.2.840.10008.";
while (*prefix != '\0' && *uid != '\0' && *prefix == *uid)
{
prefix++;
uid++;
}
if (*prefix != '\0')
{
return nullptr;
}
const UIDTableEntry *table = UIDTable;
while (*uid != '\0')
{
int i = -1;
if (*uid >= '0' && *uid <= '9')
{
if (uid[0] != '0' || uid[1] != '0')
{
i = 0;
do
{
i *= 10;
i += (*uid - '0');
uid++;
}
while (*uid >= '0' && *uid <= '9' && i < 214748364);
}
}
if (*uid == '.')
{
uid++;
if (*uid == '\0')
{
table = nullptr;
break;
}
}
else if (*uid != '\0')
{
table = nullptr;
break;
}
i -= table->First;
if (i < 0 || i >= static_cast<int>(table->Size))
{
table = nullptr;
break;
}
table = &UIDTable[table->Next + i];
}
return table;
}
} // anonymous namespace
const char *vtkDICOMUtilities::GetUIDName(const char *uid)
{
const char *result = "";
const UIDTableEntry *table = GetUIDTableEntry(uid);
if (table)
{
if (table->Name)
{
result = table->Name;
}
}
return result;
}
unsigned short vtkDICOMUtilities::GetCIDFromUID(const char *uid)
{
unsigned short result = 0;
const UIDTableEntry *table = GetUIDTableEntry(uid);
if (table)
{
result = table->CID;
}
return result;
}
|