File Coverage

blib/lib/DicomPack/DB/DicomTagDict.pm
Criterion Covered Total %
statement 12 51 23.5
branch 0 38 0.0
condition 0 6 0.0
subroutine 4 7 57.1
pod 3 3 100.0
total 19 105 18.1


line stmt bran cond sub pod time code
1             ##############################################################################
2             # DicomTagDict -- a module including Dicom Data Dictionary
3             #
4             # Copyright (c) 2010 Baoshe Zhang. All rights reserved.
5             # This file is part of "DicomPack". DicomReader is free software. You can
6             # redistribute it and/or modify it under the same terms as Perl itself.
7             ##############################################################################
8              
9             package DicomPack::DB::DicomTagDict;
10              
11 1     1   4 use strict;
  1         2  
  1         31  
12 1     1   4 use warnings;
  1         3  
  1         27  
13              
14 1     1   5 use vars qw(@ISA @EXPORT_OK);
  1         2  
  1         50  
15              
16 1     1   4 use Exporter;
  1         2  
  1         32517  
17             @ISA = qw/Exporter/;
18             @EXPORT_OK = qw/getTag getTagID getTagDesc/;
19              
20             our $VERSION = '0.95';
21              
22             my $DicomTagList = {
23             "0002,0000" => {
24             desc => "File Meta Information Group Length",
25             vr => { UL => "1" }
26             },
27             "0002,0001" => {
28             desc => "File Meta Information Version",
29             vr => { OB => "1" }
30             },
31             "0002,0002" => {
32             desc => "Media Storage SOP Class UID",
33             vr => { UI => "1" }
34             },
35             "0002,0003" => {
36             desc => "Media Storage SOP Instance UID",
37             vr => { UI => "1" }
38             },
39             "0002,0010" => {
40             desc => "Transfer Syntax UID",
41             vr => { UI => "1" }
42             },
43             "0002,0012" => {
44             desc => "Implementation Class UID",
45             vr => { UI => "1" }
46             },
47             "0002,0013" => {
48             desc => "Implementation Version Name",
49             vr => { SH => "1" }
50             },
51             "0002,0016" => {
52             desc => "Source Application Entity Title",
53             vr => { AE => "1" }
54             },
55             "0002,0100" => {
56             desc => "Private Information Creator UID",
57             vr => { UI => "1" }
58             },
59             "0002,0102" => {
60             desc => "Private Information",
61             vr => { OB => "1" }
62             },
63             "0004,1130" => {
64             desc => "File-set ID",
65             vr => { CS => "1" }
66             },
67             "0004,1141" => {
68             desc => "File-set Descriptor File ID",
69             vr => { CS => "1-8" }
70             },
71             "0004,1142" => {
72             desc => "Specific Character Set of File-set Descriptor File",
73             vr => { CS => "1" }
74             },
75             "0004,1200" => {
76             desc => "Offset of the First Directory Record of the Root Directory Entity",
77             vr => { UL => "1" }
78             },
79             "0004,1202" => {
80             desc => "Offset of the Last Directory Record of the Root Directory Entity",
81             vr => { UL => "1" }
82             },
83             "0004,1212" => {
84             desc => "File-set Consistency Flag",
85             vr => { US => "1" }
86             },
87             "0004,1220" => {
88             desc => "Directory Record Sequence",
89             vr => { SQ => "1" }
90             },
91             "0004,1400" => {
92             desc => "Offset of the Next Directory Record",
93             vr => { UL => "1" }
94             },
95             "0004,1410" => {
96             desc => "Record In-use Flag",
97             vr => { US => "1" }
98             },
99             "0004,1420" => {
100             desc => "Offset of Referenced Lower-Level Directory Entity",
101             vr => { UL => "1" }
102             },
103             "0004,1430" => {
104             desc => "Directory Record Type",
105             vr => { CS => "1" }
106             },
107             "0004,1432" => {
108             desc => "Private Record UID",
109             vr => { UI => "1" }
110             },
111             "0004,1500" => {
112             desc => "Referenced File ID",
113             vr => { CS => "1-8" }
114             },
115             "0004,1504" => {
116             desc => "MRDR Directory Record Offset",
117             vr => { UL => "1" },
118             ret => 1
119             },
120             "0004,1510" => {
121             desc => "Referenced SOP Class UID in File",
122             vr => { UI => "1" }
123             },
124             "0004,1511" => {
125             desc => "Referenced SOP Instance UID in File",
126             vr => { UI => "1" }
127             },
128             "0004,1512" => {
129             desc => "Referenced Transfer Syntax UID in File",
130             vr => { UI => "1" }
131             },
132             "0004,151a" => {
133             desc => "Referenced Related General SOP Class UID in File",
134             vr => { UI => "1-n" }
135             },
136             "0004,1600" => {
137             desc => "Number of References",
138             vr => { UL => "1" },
139             ret => 1
140             },
141             "0008,0001" => {
142             desc => "Length to End",
143             vr => { UL => "1" },
144             ret => 1
145             },
146             "0008,0005" => {
147             desc => "Specific Character Set",
148             vr => { CS => "1-n" }
149             },
150             "0008,0006" => {
151             desc => "Language Code Sequence",
152             vr => { SQ => "1" }
153             },
154             "0008,0008" => {
155             desc => "Image Type",
156             vr => { CS => "2-n" }
157             },
158             "0008,0010" => {
159             desc => "Recognition Code",
160             vr => { CS => "1" },
161             ret => 1
162             },
163             "0008,0012" => {
164             desc => "Instance Creation Date",
165             vr => { DA => "1" }
166             },
167             "0008,0013" => {
168             desc => "Instance Creation Time",
169             vr => { TM => "1" }
170             },
171             "0008,0014" => {
172             desc => "Instance Creator UID",
173             vr => { UI => "1" }
174             },
175             "0008,0016" => {
176             desc => "SOP Class UID",
177             vr => { UI => "1" }
178             },
179             "0008,0018" => {
180             desc => "SOP Instance UID",
181             vr => { UI => "1" }
182             },
183             "0008,001a" => {
184             desc => "Related General SOP Class UID",
185             vr => { UI => "1-n" }
186             },
187             "0008,001b" => {
188             desc => "Original Specialized SOP Class UID",
189             vr => { UI => "1" }
190             },
191             "0008,0020" => {
192             desc => "Study Date",
193             vr => { DA => "1" }
194             },
195             "0008,0021" => {
196             desc => "Series Date",
197             vr => { DA => "1" }
198             },
199             "0008,0022" => {
200             desc => "Acquisition Date",
201             vr => { DA => "1" }
202             },
203             "0008,0023" => {
204             desc => "Content Date",
205             vr => { DA => "1" }
206             },
207             "0008,0024" => {
208             desc => "Overlay Date",
209             vr => { DA => "1" },
210             ret => 1
211             },
212             "0008,0025" => {
213             desc => "Curve Date",
214             vr => { DA => "1" },
215             ret => 1
216             },
217             "0008,002a" => {
218             desc => "Acquisition DateTime",
219             vr => { DT => "1" }
220             },
221             "0008,0030" => {
222             desc => "Study Time",
223             vr => { TM => "1" }
224             },
225             "0008,0031" => {
226             desc => "Series Time",
227             vr => { TM => "1" }
228             },
229             "0008,0032" => {
230             desc => "Acquisition Time",
231             vr => { TM => "1" }
232             },
233             "0008,0033" => {
234             desc => "Content Time",
235             vr => { TM => "1" }
236             },
237             "0008,0034" => {
238             desc => "Overlay Time",
239             vr => { TM => "1" },
240             ret => 1
241             },
242             "0008,0035" => {
243             desc => "Curve Time",
244             vr => { TM => "1" },
245             ret => 1
246             },
247             "0008,0040" => {
248             desc => "Data Set Type",
249             vr => { US => "1" },
250             ret => 1
251             },
252             "0008,0041" => {
253             desc => "Data Set Subtype",
254             vr => { LO => "1" },
255             ret => 1
256             },
257             "0008,0042" => {
258             desc => "Nuclear Medicine Series Type",
259             vr => { CS => "1" },
260             ret => 1
261             },
262             "0008,0050" => {
263             desc => "Accession Number",
264             vr => { SH => "1" }
265             },
266             "0008,0051" => {
267             desc => "Issuer of Accession Number Sequence",
268             vr => { SQ => "1" }
269             },
270             "0008,0052" => {
271             desc => "Query/Retrieve Level",
272             vr => { CS => "1" }
273             },
274             "0008,0054" => {
275             desc => "Retrieve AE Title",
276             vr => { AE => "1-n" }
277             },
278             "0008,0056" => {
279             desc => "Instance Availability",
280             vr => { CS => "1" }
281             },
282             "0008,0058" => {
283             desc => "Failed SOP Instance UID List",
284             vr => { UI => "1-n" }
285             },
286             "0008,0060" => {
287             desc => "Modality",
288             vr => { CS => "1" }
289             },
290             "0008,0061" => {
291             desc => "Modalities in Study",
292             vr => { CS => "1-n" }
293             },
294             "0008,0062" => {
295             desc => "SOP Classes in Study",
296             vr => { UI => "1-n" }
297             },
298             "0008,0064" => {
299             desc => "Conversion Type",
300             vr => { CS => "1" }
301             },
302             "0008,0068" => {
303             desc => "Presentation Intent Type",
304             vr => { CS => "1" }
305             },
306             "0008,0070" => {
307             desc => "Manufacturer",
308             vr => { LO => "1" }
309             },
310             "0008,0080" => {
311             desc => "Institution Name",
312             vr => { LO => "1" }
313             },
314             "0008,0081" => {
315             desc => "Institution Address",
316             vr => { ST => "1" }
317             },
318             "0008,0082" => {
319             desc => "Institution Code Sequence",
320             vr => { SQ => "1" }
321             },
322             "0008,0090" => {
323             desc => "Referring Physician's Name",
324             vr => { PN => "1" }
325             },
326             "0008,0092" => {
327             desc => "Referring Physician's Address",
328             vr => { ST => "1" }
329             },
330             "0008,0094" => {
331             desc => "Referring Physician's Telephone Numbers",
332             vr => { SH => "1-n" }
333             },
334             "0008,0096" => {
335             desc => "Referring Physician Identification Sequence",
336             vr => { SQ => "1" }
337             },
338             "0008,0100" => {
339             desc => "Code Value",
340             vr => { SH => "1" }
341             },
342             "0008,0102" => {
343             desc => "Coding Scheme Designator",
344             vr => { SH => "1" }
345             },
346             "0008,0103" => {
347             desc => "Coding Scheme Version",
348             vr => { SH => "1" }
349             },
350             "0008,0104" => {
351             desc => "Code Meaning",
352             vr => { LO => "1" }
353             },
354             "0008,0105" => {
355             desc => "Mapping Resource",
356             vr => { CS => "1" }
357             },
358             "0008,0106" => {
359             desc => "Context Group Version",
360             vr => { DT => "1" }
361             },
362             "0008,0107" => {
363             desc => "Context Group Local Version",
364             vr => { DT => "1" }
365             },
366             "0008,010b" => {
367             desc => "Context Group Extension Flag",
368             vr => { CS => "1" }
369             },
370             "0008,010c" => {
371             desc => "Coding Scheme UID",
372             vr => { UI => "1" }
373             },
374             "0008,010d" => {
375             desc => "Context Group Extension Creator UID",
376             vr => { UI => "1" }
377             },
378             "0008,010f" => {
379             desc => "Context Identifier",
380             vr => { CS => "1" }
381             },
382             "0008,0110" => {
383             desc => "Coding Scheme Identification Sequence",
384             vr => { SQ => "1" }
385             },
386             "0008,0112" => {
387             desc => "Coding Scheme Registry",
388             vr => { LO => "1" }
389             },
390             "0008,0114" => {
391             desc => "Coding Scheme External ID",
392             vr => { ST => "1" }
393             },
394             "0008,0115" => {
395             desc => "Coding Scheme Name",
396             vr => { ST => "1" }
397             },
398             "0008,0116" => {
399             desc => "Coding Scheme Responsible Organization",
400             vr => { ST => "1" }
401             },
402             "0008,0117" => {
403             desc => "Context UID",
404             vr => { UI => "1" }
405             },
406             "0008,0201" => {
407             desc => "Timezone Offset From UTC",
408             vr => { SH => "1" }
409             },
410             "0008,1000" => {
411             desc => "Network ID",
412             vr => { AE => "1" },
413             ret => 1
414             },
415             "0008,1010" => {
416             desc => "Station Name",
417             vr => { SH => "1" }
418             },
419             "0008,1030" => {
420             desc => "Study Description",
421             vr => { LO => "1" }
422             },
423             "0008,1032" => {
424             desc => "Procedure Code Sequence",
425             vr => { SQ => "1" }
426             },
427             "0008,103e" => {
428             desc => "Series Description",
429             vr => { LO => "1" }
430             },
431             "0008,103f" => {
432             desc => "Series Description Code Sequence",
433             vr => { SQ => "1" }
434             },
435             "0008,1040" => {
436             desc => "Institutional Department Name",
437             vr => { LO => "1" }
438             },
439             "0008,1048" => {
440             desc => "Physician(s) of Record",
441             vr => { PN => "1-n" }
442             },
443             "0008,1049" => {
444             desc => "Physician(s) of Record Identification Sequence",
445             vr => { SQ => "1" }
446             },
447             "0008,1050" => {
448             desc => "Performing Physician's Name",
449             vr => { PN => "1-n" }
450             },
451             "0008,1052" => {
452             desc => "Performing Physician Identification Sequence",
453             vr => { SQ => "1" }
454             },
455             "0008,1060" => {
456             desc => "Name of Physician(s) Reading Study",
457             vr => { PN => "1-n" }
458             },
459             "0008,1062" => {
460             desc => "Physician(s) Reading Study Identification Sequence",
461             vr => { SQ => "1" }
462             },
463             "0008,1070" => {
464             desc => "Operators' Name",
465             vr => { PN => "1-n" }
466             },
467             "0008,1072" => {
468             desc => "Operator Identification Sequence",
469             vr => { SQ => "1" }
470             },
471             "0008,1080" => {
472             desc => "Admitting Diagnoses Description",
473             vr => { LO => "1-n" }
474             },
475             "0008,1084" => {
476             desc => "Admitting Diagnoses Code Sequence",
477             vr => { SQ => "1" }
478             },
479             "0008,1090" => {
480             desc => "Manufacturer's Model Name",
481             vr => { LO => "1" }
482             },
483             "0008,1100" => {
484             desc => "Referenced Results Sequence",
485             vr => { SQ => "1" },
486             ret => 1
487             },
488             "0008,1110" => {
489             desc => "Referenced Study Sequence",
490             vr => { SQ => "1" }
491             },
492             "0008,1111" => {
493             desc => "Referenced Performed Procedure Step Sequence",
494             vr => { SQ => "1" }
495             },
496             "0008,1115" => {
497             desc => "Referenced Series Sequence",
498             vr => { SQ => "1" }
499             },
500             "0008,1120" => {
501             desc => "Referenced Patient Sequence",
502             vr => { SQ => "1" }
503             },
504             "0008,1125" => {
505             desc => "Referenced Visit Sequence",
506             vr => { SQ => "1" }
507             },
508             "0008,1130" => {
509             desc => "Referenced Overlay Sequence",
510             vr => { SQ => "1" },
511             ret => 1
512             },
513             "0008,1134" => {
514             desc => "Referenced Stereometric Instance Sequence",
515             vr => { SQ => "1" }
516             },
517             "0008,113a" => {
518             desc => "Referenced Waveform Sequence",
519             vr => { SQ => "1" }
520             },
521             "0008,1140" => {
522             desc => "Referenced Image Sequence",
523             vr => { SQ => "1" }
524             },
525             "0008,1145" => {
526             desc => "Referenced Curve Sequence",
527             vr => { SQ => "1" },
528             ret => 1
529             },
530             "0008,114a" => {
531             desc => "Referenced Instance Sequence",
532             vr => { SQ => "1" }
533             },
534             "0008,114b" => {
535             desc => "Referenced Real World Value Mapping Instance Sequence",
536             vr => { SQ => "1" }
537             },
538             "0008,1150" => {
539             desc => "Referenced SOP Class UID",
540             vr => { UI => "1" }
541             },
542             "0008,1155" => {
543             desc => "Referenced SOP Instance UID",
544             vr => { UI => "1" }
545             },
546             "0008,115a" => {
547             desc => "SOP Classes Supported",
548             vr => { UI => "1-n" }
549             },
550             "0008,1160" => {
551             desc => "Referenced Frame Number",
552             vr => { IS => "1-n" }
553             },
554             "0008,1161" => {
555             desc => "Simple Frame List",
556             vr => { UL => "1-n" }
557             },
558             "0008,1162" => {
559             desc => "Calculated Frame List",
560             vr => { UL => "3-3n" }
561             },
562             "0008,1163" => {
563             desc => "Time Range",
564             vr => { FD => "2" }
565             },
566             "0008,1164" => {
567             desc => "Frame Extraction Sequence",
568             vr => { SQ => "1" }
569             },
570             "0008,1167" => {
571             desc => "Multi-Frame Source SOP Instance UID ",
572             vr => { UI => "1" }
573             },
574             "0008,1195" => {
575             desc => "Transaction UID",
576             vr => { UI => "1" }
577             },
578             "0008,1197" => {
579             desc => "Failure Reason",
580             vr => { US => "1" }
581             },
582             "0008,1198" => {
583             desc => "Failed SOP Sequence",
584             vr => { SQ => "1" }
585             },
586             "0008,1199" => {
587             desc => "Referenced SOP Sequence",
588             vr => { SQ => "1" }
589             },
590             "0008,1200" => {
591             desc => "Studies Containing Other Referenced Instances Sequence",
592             vr => { SQ => "1" }
593             },
594             "0008,1250" => {
595             desc => "Related Series Sequence",
596             vr => { SQ => "1" }
597             },
598             "0008,2110" => {
599             desc => "Lossy Image Compression (Retired)",
600             vr => { CS => "1" },
601             ret => 1
602             },
603             "0008,2111" => {
604             desc => "Derivation Description",
605             vr => { ST => "1" }
606             },
607             "0008,2112" => {
608             desc => "Source Image Sequence",
609             vr => { SQ => "1" }
610             },
611             "0008,2120" => {
612             desc => "Stage Name",
613             vr => { SH => "1" }
614             },
615             "0008,2122" => {
616             desc => "Stage Number",
617             vr => { IS => "1" }
618             },
619             "0008,2124" => {
620             desc => "Number of Stages",
621             vr => { IS => "1" }
622             },
623             "0008,2127" => {
624             desc => "View Name",
625             vr => { SH => "1" }
626             },
627             "0008,2128" => {
628             desc => "View Number",
629             vr => { IS => "1" }
630             },
631             "0008,2129" => {
632             desc => "Number of Event Timers",
633             vr => { IS => "1" }
634             },
635             "0008,212a" => {
636             desc => "Number of Views in Stage",
637             vr => { IS => "1" }
638             },
639             "0008,2130" => {
640             desc => "Event Elapsed Time(s)",
641             vr => { DS => "1-n" }
642             },
643             "0008,2132" => {
644             desc => "Event Timer Name(s)",
645             vr => { LO => "1-n" }
646             },
647             "0008,2133" => {
648             desc => "Event Timer Sequence",
649             vr => { SQ => "1" }
650             },
651             "0008,2134" => {
652             desc => "Event Time Offset",
653             vr => { FD => "1" }
654             },
655             "0008,2135" => {
656             desc => "Event Code Sequence",
657             vr => { SQ => "1" }
658             },
659             "0008,2142" => {
660             desc => "Start Trim",
661             vr => { IS => "1" }
662             },
663             "0008,2143" => {
664             desc => "Stop Trim",
665             vr => { IS => "1" }
666             },
667             "0008,2144" => {
668             desc => "Recommended Display Frame Rate",
669             vr => { IS => "1" }
670             },
671             "0008,2200" => {
672             desc => "Transducer Position",
673             vr => { CS => "1" },
674             ret => 1
675             },
676             "0008,2204" => {
677             desc => "Transducer Orientation",
678             vr => { CS => "1" },
679             ret => 1
680             },
681             "0008,2208" => {
682             desc => "Anatomic Structure",
683             vr => { CS => "1" },
684             ret => 1
685             },
686             "0008,2218" => {
687             desc => "Anatomic Region Sequence",
688             vr => { SQ => "1" }
689             },
690             "0008,2220" => {
691             desc => "Anatomic Region Modifier Sequence",
692             vr => { SQ => "1" }
693             },
694             "0008,2228" => {
695             desc => "Primary Anatomic Structure Sequence",
696             vr => { SQ => "1" }
697             },
698             "0008,2229" => {
699             desc => "Anatomic Structure, Space or Region Sequence",
700             vr => { SQ => "1" }
701             },
702             "0008,2230" => {
703             desc => "Primary Anatomic Structure Modifier Sequence",
704             vr => { SQ => "1" }
705             },
706             "0008,2240" => {
707             desc => "Transducer Position Sequence",
708             vr => { SQ => "1" },
709             ret => 1
710             },
711             "0008,2242" => {
712             desc => "Transducer Position Modifier Sequence",
713             vr => { SQ => "1" },
714             ret => 1
715             },
716             "0008,2244" => {
717             desc => "Transducer Orientation Sequence",
718             vr => { SQ => "1" },
719             ret => 1
720             },
721             "0008,2246" => {
722             desc => "Transducer Orientation Modifier Sequence",
723             vr => { SQ => "1" },
724             ret => 1
725             },
726             "0008,2251" => {
727             desc => "Anatomic Structure Space Or Region Code Sequence (Trial)",
728             vr => { SQ => "1" },
729             ret => 1
730             },
731             "0008,2253" => {
732             desc => "Anatomic Portal Of Entrance Code Sequence (Trial)",
733             vr => { SQ => "1" },
734             ret => 1
735             },
736             "0008,2255" => {
737             desc => "Anatomic Approach Direction Code Sequence (Trial)",
738             vr => { SQ => "1" },
739             ret => 1
740             },
741             "0008,2256" => {
742             desc => "Anatomic Perspective Description (Trial)",
743             vr => { ST => "1" },
744             ret => 1
745             },
746             "0008,2257" => {
747             desc => "Anatomic Perspective Code Sequence (Trial)",
748             vr => { SQ => "1" },
749             ret => 1
750             },
751             "0008,2258" => {
752             desc => "Anatomic Location Of Examining Instrument Description (Trial)",
753             vr => { ST => "1" },
754             ret => 1
755             },
756             "0008,2259" => {
757             desc => "Anatomic Location Of Examining Instrument Code Sequence (Trial)",
758             vr => { SQ => "1" },
759             ret => 1
760             },
761             "0008,225a" => {
762             desc => "Anatomic Structure Space Or Region Modifier Code Sequence (Trial)",
763             vr => { SQ => "1" },
764             ret => 1
765             },
766             "0008,225c" => {
767             desc => "OnAxis Background Anatomic Structure Code Sequence (Trial)",
768             vr => { SQ => "1" },
769             ret => 1
770             },
771             "0008,3001" => {
772             desc => "Alternate Representation Sequence",
773             vr => { SQ => "1" }
774             },
775             "0008,3010" => {
776             desc => "Irradiation Event UID",
777             vr => { UI => "1" }
778             },
779             "0008,4000" => {
780             desc => "Identifying Comments",
781             vr => { LT => "1" },
782             ret => 1
783             },
784             "0008,9007" => {
785             desc => "Frame Type",
786             vr => { CS => "4" }
787             },
788             "0008,9092" => {
789             desc => "Referenced Image Evidence Sequence",
790             vr => { SQ => "1" }
791             },
792             "0008,9121" => {
793             desc => "Referenced Raw Data Sequence",
794             vr => { SQ => "1" }
795             },
796             "0008,9123" => {
797             desc => "Creator-Version UID",
798             vr => { UI => "1" }
799             },
800             "0008,9124" => {
801             desc => "Derivation Image Sequence",
802             vr => { SQ => "1" }
803             },
804             "0008,9154" => {
805             desc => "Source Image Evidence Sequence",
806             vr => { SQ => "1" }
807             },
808             "0008,9205" => {
809             desc => "Pixel Presentation",
810             vr => { CS => "1" }
811             },
812             "0008,9206" => {
813             desc => "Volumetric Properties",
814             vr => { CS => "1" }
815             },
816             "0008,9207" => {
817             desc => "Volume Based Calculation Technique",
818             vr => { CS => "1" }
819             },
820             "0008,9208" => {
821             desc => "Complex Image Component",
822             vr => { CS => "1" }
823             },
824             "0008,9209" => {
825             desc => "Acquisition Contrast",
826             vr => { CS => "1" }
827             },
828             "0008,9215" => {
829             desc => "Derivation Code Sequence",
830             vr => { SQ => "1" }
831             },
832             "0008,9237" => {
833             desc => "Referenced Presentation State Sequence",
834             vr => { SQ => "1" }
835             },
836             "0008,9410" => {
837             desc => "Referenced Other Plane Sequence",
838             vr => { SQ => "1" }
839             },
840             "0008,9458" => {
841             desc => "Frame Display Sequence",
842             vr => { SQ => "1" }
843             },
844             "0008,9459" => {
845             desc => "Recommended Display Frame Rate in Float",
846             vr => { FL => "1" }
847             },
848             "0008,9460" => {
849             desc => "Skip Frame Range Flag",
850             vr => { CS => "1" }
851             },
852             "0010,0010" => {
853             desc => "Patient's Name",
854             vr => { PN => "1" }
855             },
856             "0010,0020" => {
857             desc => "Patient ID",
858             vr => { LO => "1" }
859             },
860             "0010,0021" => {
861             desc => "Issuer of Patient ID",
862             vr => { LO => "1" }
863             },
864             "0010,0022" => {
865             desc => "Type of Patient ID",
866             vr => { CS => "1" }
867             },
868             "0010,0024" => {
869             desc => "Issuer of Patient ID Qualifiers Sequence",
870             vr => { SQ => "1" }
871             },
872             "0010,0030" => {
873             desc => "Patient's Birth Date",
874             vr => { DA => "1" }
875             },
876             "0010,0032" => {
877             desc => "Patient's Birth Time",
878             vr => { TM => "1" }
879             },
880             "0010,0040" => {
881             desc => "Patient's Sex",
882             vr => { CS => "1" }
883             },
884             "0010,0050" => {
885             desc => "Patient's Insurance Plan Code Sequence",
886             vr => { SQ => "1" }
887             },
888             "0010,0101" => {
889             desc => "Patient's Primary Language Code Sequence",
890             vr => { SQ => "1" }
891             },
892             "0010,0102" => {
893             desc => "Patient's Primary Language Modifier Code Sequence",
894             vr => { SQ => "1" }
895             },
896             "0010,1000" => {
897             desc => "Other Patient IDs",
898             vr => { LO => "1-n" }
899             },
900             "0010,1001" => {
901             desc => "Other Patient Names",
902             vr => { PN => "1-n" }
903             },
904             "0010,1002" => {
905             desc => "Other Patient IDs Sequence",
906             vr => { SQ => "1" }
907             },
908             "0010,1005" => {
909             desc => "Patient's Birth Name",
910             vr => { PN => "1" }
911             },
912             "0010,1010" => {
913             desc => "Patient's Age",
914             vr => { AS => "1" }
915             },
916             "0010,1020" => {
917             desc => "Patient's Size",
918             vr => { DS => "1" }
919             },
920             "0010,1030" => {
921             desc => "Patient's Weight",
922             vr => { DS => "1" }
923             },
924             "0010,1040" => {
925             desc => "Patient's Address",
926             vr => { LO => "1" }
927             },
928             "0010,1050" => {
929             desc => "Insurance Plan Identification",
930             vr => { LO => "1-n" },
931             ret => 1
932             },
933             "0010,1060" => {
934             desc => "Patient's Mother's Birth Name",
935             vr => { PN => "1" }
936             },
937             "0010,1080" => {
938             desc => "Military Rank",
939             vr => { LO => "1" }
940             },
941             "0010,1081" => {
942             desc => "Branch of Service",
943             vr => { LO => "1" }
944             },
945             "0010,1090" => {
946             desc => "Medical Record Locator",
947             vr => { LO => "1" }
948             },
949             "0010,2000" => {
950             desc => "Medical Alerts",
951             vr => { LO => "1-n" }
952             },
953             "0010,2110" => {
954             desc => "Allergies",
955             vr => { LO => "1-n" }
956             },
957             "0010,2150" => {
958             desc => "Country of Residence",
959             vr => { LO => "1" }
960             },
961             "0010,2152" => {
962             desc => "Region of Residence",
963             vr => { LO => "1" }
964             },
965             "0010,2154" => {
966             desc => "Patient's Telephone Numbers",
967             vr => { SH => "1-n" }
968             },
969             "0010,2160" => {
970             desc => "Ethnic Group",
971             vr => { SH => "1" }
972             },
973             "0010,2180" => {
974             desc => "Occupation",
975             vr => { SH => "1" }
976             },
977             "0010,21a0" => {
978             desc => "Smoking Status",
979             vr => { CS => "1" }
980             },
981             "0010,21b0" => {
982             desc => "Additional Patient History",
983             vr => { LT => "1" }
984             },
985             "0010,21c0" => {
986             desc => "Pregnancy Status",
987             vr => { US => "1" }
988             },
989             "0010,21d0" => {
990             desc => "Last Menstrual Date",
991             vr => { DA => "1" }
992             },
993             "0010,21f0" => {
994             desc => "Patient's Religious Preference",
995             vr => { LO => "1" }
996             },
997             "0010,2201" => {
998             desc => "Patient Species Description",
999             vr => { LO => "1" }
1000             },
1001             "0010,2202" => {
1002             desc => "Patient Species Code Sequence",
1003             vr => { SQ => "1" }
1004             },
1005             "0010,2203" => {
1006             desc => "Patient's Sex Neutered",
1007             vr => { CS => "1" }
1008             },
1009             "0010,2210" => {
1010             desc => "Anatomical Orientation Type",
1011             vr => { CS => "1" }
1012             },
1013             "0010,2292" => {
1014             desc => "Patient Breed Description",
1015             vr => { LO => "1" }
1016             },
1017             "0010,2293" => {
1018             desc => "Patient Breed Code Sequence",
1019             vr => { SQ => "1" }
1020             },
1021             "0010,2294" => {
1022             desc => "Breed Registration Sequence",
1023             vr => { SQ => "1" }
1024             },
1025             "0010,2295" => {
1026             desc => "Breed Registration Number",
1027             vr => { LO => "1" }
1028             },
1029             "0010,2296" => {
1030             desc => "Breed Registry Code Sequence",
1031             vr => { SQ => "1" }
1032             },
1033             "0010,2297" => {
1034             desc => "Responsible Person",
1035             vr => { PN => "1" }
1036             },
1037             "0010,2298" => {
1038             desc => "Responsible Person Role",
1039             vr => { CS => "1" }
1040             },
1041             "0010,2299" => {
1042             desc => "Responsible Organization",
1043             vr => { LO => "1" }
1044             },
1045             "0010,4000" => {
1046             desc => "Patient Comments",
1047             vr => { LT => "1" }
1048             },
1049             "0010,9431" => {
1050             desc => "Examined Body Thickness",
1051             vr => { FL => "1" }
1052             },
1053             "0012,0010" => {
1054             desc => "Clinical Trial Sponsor Name",
1055             vr => { LO => "1" }
1056             },
1057             "0012,0020" => {
1058             desc => "Clinical Trial Protocol ID",
1059             vr => { LO => "1" }
1060             },
1061             "0012,0021" => {
1062             desc => "Clinical Trial Protocol Name",
1063             vr => { LO => "1" }
1064             },
1065             "0012,0030" => {
1066             desc => "Clinical Trial Site ID",
1067             vr => { LO => "1" }
1068             },
1069             "0012,0031" => {
1070             desc => "Clinical Trial Site Name",
1071             vr => { LO => "1" }
1072             },
1073             "0012,0040" => {
1074             desc => "Clinical Trial Subject ID",
1075             vr => { LO => "1" }
1076             },
1077             "0012,0042" => {
1078             desc => "Clinical Trial Subject Reading ID",
1079             vr => { LO => "1" }
1080             },
1081             "0012,0050" => {
1082             desc => "Clinical Trial Time Point ID",
1083             vr => { LO => "1" }
1084             },
1085             "0012,0051" => {
1086             desc => "Clinical Trial Time Point Description",
1087             vr => { ST => "1" }
1088             },
1089             "0012,0060" => {
1090             desc => "Clinical Trial Coordinating Center Name",
1091             vr => { LO => "1" }
1092             },
1093             "0012,0062" => {
1094             desc => "Patient Identity Removed",
1095             vr => { CS => "1" }
1096             },
1097             "0012,0063" => {
1098             desc => "De-identification Method",
1099             vr => { LO => "1-n" }
1100             },
1101             "0012,0064" => {
1102             desc => "De-identification Method Code Sequence",
1103             vr => { SQ => "1" }
1104             },
1105             "0012,0071" => {
1106             desc => "Clinical Trial Series ID",
1107             vr => { LO => "1" }
1108             },
1109             "0012,0072" => {
1110             desc => "Clinical Trial Series Description",
1111             vr => { LO => "1" }
1112             },
1113             "0012,0081" => {
1114             desc => "Clinical Trial Protocol Ethics Committee Name",
1115             vr => { LO => "1" }
1116             },
1117             "0012,0082" => {
1118             desc => "Clinical Trial Protocol Ethics Committee Approval Number",
1119             vr => { LO => "1" }
1120             },
1121             "0012,0083" => {
1122             desc => "Consent for Clinical Trial Use Sequence",
1123             vr => { SQ => "1" }
1124             },
1125             "0012,0084" => {
1126             desc => "Distribution Type",
1127             vr => { CS => "1" }
1128             },
1129             "0012,0085" => {
1130             desc => "Consent for Distribution Flag",
1131             vr => { CS => "1" }
1132             },
1133             "0018,0010" => {
1134             desc => "Contrast/Bolus Agent",
1135             vr => { LO => "1" }
1136             },
1137             "0018,0012" => {
1138             desc => "Contrast/Bolus Agent Sequence",
1139             vr => { SQ => "1" }
1140             },
1141             "0018,0014" => {
1142             desc => "Contrast/Bolus Administration Route Sequence",
1143             vr => { SQ => "1" }
1144             },
1145             "0018,0015" => {
1146             desc => "Body Part Examined",
1147             vr => { CS => "1" }
1148             },
1149             "0018,0020" => {
1150             desc => "Scanning Sequence",
1151             vr => { CS => "1-n" }
1152             },
1153             "0018,0021" => {
1154             desc => "Sequence Variant",
1155             vr => { CS => "1-n" }
1156             },
1157             "0018,0022" => {
1158             desc => "Scan Options",
1159             vr => { CS => "1-n" }
1160             },
1161             "0018,0023" => {
1162             desc => "MR Acquisition Type",
1163             vr => { CS => "1" }
1164             },
1165             "0018,0024" => {
1166             desc => "Sequence Name",
1167             vr => { SH => "1" }
1168             },
1169             "0018,0025" => {
1170             desc => "Angio Flag",
1171             vr => { CS => "1" }
1172             },
1173             "0018,0026" => {
1174             desc => "Intervention Drug Information Sequence",
1175             vr => { SQ => "1" }
1176             },
1177             "0018,0027" => {
1178             desc => "Intervention Drug Stop Time",
1179             vr => { TM => "1" }
1180             },
1181             "0018,0028" => {
1182             desc => "Intervention Drug Dose",
1183             vr => { DS => "1" }
1184             },
1185             "0018,0029" => {
1186             desc => "Intervention Drug Code Sequence",
1187             vr => { SQ => "1" }
1188             },
1189             "0018,002a" => {
1190             desc => "Additional Drug Sequence",
1191             vr => { SQ => "1" }
1192             },
1193             "0018,0030" => {
1194             desc => "Radionuclide",
1195             vr => { LO => "1-n" },
1196             ret => 1
1197             },
1198             "0018,0031" => {
1199             desc => "Radiopharmaceutical",
1200             vr => { LO => "1" }
1201             },
1202             "0018,0032" => {
1203             desc => "Energy Window Centerline",
1204             vr => { DS => "1" },
1205             ret => 1
1206             },
1207             "0018,0033" => {
1208             desc => "Energy Window Total Width",
1209             vr => { DS => "1-n" },
1210             ret => 1
1211             },
1212             "0018,0034" => {
1213             desc => "Intervention Drug Name",
1214             vr => { LO => "1" }
1215             },
1216             "0018,0035" => {
1217             desc => "Intervention Drug Start Time",
1218             vr => { TM => "1" }
1219             },
1220             "0018,0036" => {
1221             desc => "Intervention Sequence",
1222             vr => { SQ => "1" }
1223             },
1224             "0018,0037" => {
1225             desc => "Therapy Type",
1226             vr => { CS => "1" },
1227             ret => 1
1228             },
1229             "0018,0038" => {
1230             desc => "Intervention Status",
1231             vr => { CS => "1" }
1232             },
1233             "0018,0039" => {
1234             desc => "Therapy Description",
1235             vr => { CS => "1" },
1236             ret => 1
1237             },
1238             "0018,003a" => {
1239             desc => "Intervention Description",
1240             vr => { ST => "1" }
1241             },
1242             "0018,0040" => {
1243             desc => "Cine Rate ",
1244             vr => { IS => "1" }
1245             },
1246             "0018,0042" => {
1247             desc => "Initial Cine Run State",
1248             vr => { CS => "1" }
1249             },
1250             "0018,0050" => {
1251             desc => "Slice Thickness",
1252             vr => { DS => "1" }
1253             },
1254             "0018,0060" => {
1255             desc => "KVP",
1256             vr => { DS => "1" }
1257             },
1258             "0018,0070" => {
1259             desc => "Counts Accumulated",
1260             vr => { IS => "1" }
1261             },
1262             "0018,0071" => {
1263             desc => "Acquisition Termination Condition",
1264             vr => { CS => "1" }
1265             },
1266             "0018,0072" => {
1267             desc => "Effective Duration",
1268             vr => { DS => "1" }
1269             },
1270             "0018,0073" => {
1271             desc => "Acquisition Start Condition",
1272             vr => { CS => "1" }
1273             },
1274             "0018,0074" => {
1275             desc => "Acquisition Start Condition Data",
1276             vr => { IS => "1" }
1277             },
1278             "0018,0075" => {
1279             desc => "Acquisition Termination Condition Data",
1280             vr => { IS => "1" }
1281             },
1282             "0018,0080" => {
1283             desc => "Repetition Time",
1284             vr => { DS => "1" }
1285             },
1286             "0018,0081" => {
1287             desc => "Echo Time",
1288             vr => { DS => "1" }
1289             },
1290             "0018,0082" => {
1291             desc => "Inversion Time",
1292             vr => { DS => "1" }
1293             },
1294             "0018,0083" => {
1295             desc => "Number of Averages",
1296             vr => { DS => "1" }
1297             },
1298             "0018,0084" => {
1299             desc => "Imaging Frequency",
1300             vr => { DS => "1" }
1301             },
1302             "0018,0085" => {
1303             desc => "Imaged Nucleus",
1304             vr => { SH => "1" }
1305             },
1306             "0018,0086" => {
1307             desc => "Echo Number(s)",
1308             vr => { IS => "1-n" }
1309             },
1310             "0018,0087" => {
1311             desc => "Magnetic Field Strength",
1312             vr => { DS => "1" }
1313             },
1314             "0018,0088" => {
1315             desc => "Spacing Between Slices",
1316             vr => { DS => "1" }
1317             },
1318             "0018,0089" => {
1319             desc => "Number of Phase Encoding Steps",
1320             vr => { IS => "1" }
1321             },
1322             "0018,0090" => {
1323             desc => "Data Collection Diameter",
1324             vr => { DS => "1" }
1325             },
1326             "0018,0091" => {
1327             desc => "Echo Train Length",
1328             vr => { IS => "1" }
1329             },
1330             "0018,0093" => {
1331             desc => "Percent Sampling",
1332             vr => { DS => "1" }
1333             },
1334             "0018,0094" => {
1335             desc => "Percent Phase Field of View",
1336             vr => { DS => "1" }
1337             },
1338             "0018,0095" => {
1339             desc => "Pixel Bandwidth",
1340             vr => { DS => "1" }
1341             },
1342             "0018,1000" => {
1343             desc => "Device Serial Number",
1344             vr => { LO => "1" }
1345             },
1346             "0018,1002" => {
1347             desc => "Device UID",
1348             vr => { UI => "1" }
1349             },
1350             "0018,1003" => {
1351             desc => "Device ID",
1352             vr => { LO => "1" }
1353             },
1354             "0018,1004" => {
1355             desc => "Plate ID",
1356             vr => { LO => "1" }
1357             },
1358             "0018,1005" => {
1359             desc => "Generator ID",
1360             vr => { LO => "1" }
1361             },
1362             "0018,1006" => {
1363             desc => "Grid ID",
1364             vr => { LO => "1" }
1365             },
1366             "0018,1007" => {
1367             desc => "Cassette ID",
1368             vr => { LO => "1" }
1369             },
1370             "0018,1008" => {
1371             desc => "Gantry ID",
1372             vr => { LO => "1" }
1373             },
1374             "0018,1010" => {
1375             desc => "Secondary Capture Device ID",
1376             vr => { LO => "1" }
1377             },
1378             "0018,1011" => {
1379             desc => "Hardcopy Creation Device ID",
1380             vr => { LO => "1" },
1381             ret => 1
1382             },
1383             "0018,1012" => {
1384             desc => "Date of Secondary Capture",
1385             vr => { DA => "1" }
1386             },
1387             "0018,1014" => {
1388             desc => "Time of Secondary Capture",
1389             vr => { TM => "1" }
1390             },
1391             "0018,1016" => {
1392             desc => "Secondary Capture Device Manufacturer",
1393             vr => { LO => "1" }
1394             },
1395             "0018,1017" => {
1396             desc => "Hardcopy Device Manufacturer",
1397             vr => { LO => "1" },
1398             ret => 1
1399             },
1400             "0018,1018" => {
1401             desc => "Secondary Capture Device Manufacturer's Model Name",
1402             vr => { LO => "1" }
1403             },
1404             "0018,1019" => {
1405             desc => "Secondary Capture Device Software Versions",
1406             vr => { LO => "1-n" }
1407             },
1408             "0018,101a" => {
1409             desc => "Hardcopy Device Software Version",
1410             vr => { LO => "1-n" },
1411             ret => 1
1412             },
1413             "0018,101b" => {
1414             desc => "Hardcopy Device Manufacturer's Model Name",
1415             vr => { LO => "1" },
1416             ret => 1
1417             },
1418             "0018,1020" => {
1419             desc => "Software Version(s)",
1420             vr => { LO => "1-n" }
1421             },
1422             "0018,1022" => {
1423             desc => "Video Image Format Acquired",
1424             vr => { SH => "1" }
1425             },
1426             "0018,1023" => {
1427             desc => "Digital Image Format Acquired",
1428             vr => { LO => "1" }
1429             },
1430             "0018,1030" => {
1431             desc => "Protocol Name",
1432             vr => { LO => "1" }
1433             },
1434             "0018,1040" => {
1435             desc => "Contrast/Bolus Route",
1436             vr => { LO => "1" }
1437             },
1438             "0018,1041" => {
1439             desc => "Contrast/Bolus Volume",
1440             vr => { DS => "1" }
1441             },
1442             "0018,1042" => {
1443             desc => "Contrast/Bolus Start Time ",
1444             vr => { TM => "1" }
1445             },
1446             "0018,1043" => {
1447             desc => "Contrast/Bolus Stop Time ",
1448             vr => { TM => "1" }
1449             },
1450             "0018,1044" => {
1451             desc => "Contrast/Bolus Total Dose",
1452             vr => { DS => "1" }
1453             },
1454             "0018,1045" => {
1455             desc => "Syringe Counts",
1456             vr => { IS => "1" }
1457             },
1458             "0018,1046" => {
1459             desc => "Contrast Flow Rate",
1460             vr => { DS => "1-n" }
1461             },
1462             "0018,1047" => {
1463             desc => "Contrast Flow Duration",
1464             vr => { DS => "1-n" }
1465             },
1466             "0018,1048" => {
1467             desc => "Contrast/Bolus Ingredient",
1468             vr => { CS => "1" }
1469             },
1470             "0018,1049" => {
1471             desc => "Contrast/Bolus Ingredient Concentration",
1472             vr => { DS => "1" }
1473             },
1474             "0018,1050" => {
1475             desc => "Spatial Resolution",
1476             vr => { DS => "1" }
1477             },
1478             "0018,1060" => {
1479             desc => "Trigger Time",
1480             vr => { DS => "1" }
1481             },
1482             "0018,1061" => {
1483             desc => "Trigger Source or Type",
1484             vr => { LO => "1" }
1485             },
1486             "0018,1062" => {
1487             desc => "Nominal Interval",
1488             vr => { IS => "1" }
1489             },
1490             "0018,1063" => {
1491             desc => "Frame Time",
1492             vr => { DS => "1" }
1493             },
1494             "0018,1064" => {
1495             desc => "Cardiac Framing Type",
1496             vr => { LO => "1" }
1497             },
1498             "0018,1065" => {
1499             desc => "Frame Time Vector",
1500             vr => { DS => "1-n" }
1501             },
1502             "0018,1066" => {
1503             desc => "Frame Delay",
1504             vr => { DS => "1" }
1505             },
1506             "0018,1067" => {
1507             desc => "Image Trigger Delay",
1508             vr => { DS => "1" }
1509             },
1510             "0018,1068" => {
1511             desc => "Multiplex Group Time Offset",
1512             vr => { DS => "1" }
1513             },
1514             "0018,1069" => {
1515             desc => "Trigger Time Offset",
1516             vr => { DS => "1" }
1517             },
1518             "0018,106a" => {
1519             desc => "Synchronization Trigger",
1520             vr => { CS => "1" }
1521             },
1522             "0018,106c" => {
1523             desc => "Synchronization Channel",
1524             vr => { US => "2" }
1525             },
1526             "0018,106e" => {
1527             desc => "Trigger Sample Position",
1528             vr => { UL => "1" }
1529             },
1530             "0018,1070" => {
1531             desc => "Radiopharmaceutical Route",
1532             vr => { LO => "1" }
1533             },
1534             "0018,1071" => {
1535             desc => "Radiopharmaceutical Volume",
1536             vr => { DS => "1" }
1537             },
1538             "0018,1072" => {
1539             desc => "Radiopharmaceutical Start Time",
1540             vr => { TM => "1" }
1541             },
1542             "0018,1073" => {
1543             desc => "Radiopharmaceutical Stop Time",
1544             vr => { TM => "1" }
1545             },
1546             "0018,1074" => {
1547             desc => "Radionuclide Total Dose",
1548             vr => { DS => "1" }
1549             },
1550             "0018,1075" => {
1551             desc => "Radionuclide Half Life",
1552             vr => { DS => "1" }
1553             },
1554             "0018,1076" => {
1555             desc => "Radionuclide Positron Fraction",
1556             vr => { DS => "1" }
1557             },
1558             "0018,1077" => {
1559             desc => "Radiopharmaceutical Specific Activity",
1560             vr => { DS => "1" }
1561             },
1562             "0018,1078" => {
1563             desc => "Radiopharmaceutical Start DateTime",
1564             vr => { DT => "1" }
1565             },
1566             "0018,1079" => {
1567             desc => "Radiopharmaceutical Stop DateTime",
1568             vr => { DT => "1" }
1569             },
1570             "0018,1080" => {
1571             desc => "Beat Rejection Flag",
1572             vr => { CS => "1" }
1573             },
1574             "0018,1081" => {
1575             desc => "Low R-R Value",
1576             vr => { IS => "1" }
1577             },
1578             "0018,1082" => {
1579             desc => "High R-R Value",
1580             vr => { IS => "1" }
1581             },
1582             "0018,1083" => {
1583             desc => "Intervals Acquired",
1584             vr => { IS => "1" }
1585             },
1586             "0018,1084" => {
1587             desc => "Intervals Rejected",
1588             vr => { IS => "1" }
1589             },
1590             "0018,1085" => {
1591             desc => "PVC Rejection",
1592             vr => { LO => "1" }
1593             },
1594             "0018,1086" => {
1595             desc => "Skip Beats",
1596             vr => { IS => "1" }
1597             },
1598             "0018,1088" => {
1599             desc => "Heart Rate",
1600             vr => { IS => "1" }
1601             },
1602             "0018,1090" => {
1603             desc => "Cardiac Number of Images",
1604             vr => { IS => "1" }
1605             },
1606             "0018,1094" => {
1607             desc => "Trigger Window",
1608             vr => { IS => "1" }
1609             },
1610             "0018,1100" => {
1611             desc => "Reconstruction Diameter",
1612             vr => { DS => "1" }
1613             },
1614             "0018,1110" => {
1615             desc => "Distance Source to Detector",
1616             vr => { DS => "1" }
1617             },
1618             "0018,1111" => {
1619             desc => "Distance Source to Patient",
1620             vr => { DS => "1" }
1621             },
1622             "0018,1114" => {
1623             desc => "Estimated Radiographic Magnification Factor",
1624             vr => { DS => "1" }
1625             },
1626             "0018,1120" => {
1627             desc => "Gantry/Detector Tilt",
1628             vr => { DS => "1" }
1629             },
1630             "0018,1121" => {
1631             desc => "Gantry/Detector Slew",
1632             vr => { DS => "1" }
1633             },
1634             "0018,1130" => {
1635             desc => "Table Height",
1636             vr => { DS => "1" }
1637             },
1638             "0018,1131" => {
1639             desc => "Table Traverse",
1640             vr => { DS => "1" }
1641             },
1642             "0018,1134" => {
1643             desc => "Table Motion",
1644             vr => { CS => "1" }
1645             },
1646             "0018,1135" => {
1647             desc => "Table Vertical Increment",
1648             vr => { DS => "1-n" }
1649             },
1650             "0018,1136" => {
1651             desc => "Table Lateral Increment",
1652             vr => { DS => "1-n" }
1653             },
1654             "0018,1137" => {
1655             desc => "Table Longitudinal Increment",
1656             vr => { DS => "1-n" }
1657             },
1658             "0018,1138" => {
1659             desc => "Table Angle",
1660             vr => { DS => "1" }
1661             },
1662             "0018,113a" => {
1663             desc => "Table Type",
1664             vr => { CS => "1" }
1665             },
1666             "0018,1140" => {
1667             desc => "Rotation Direction",
1668             vr => { CS => "1" }
1669             },
1670             "0018,1141" => {
1671             desc => "Angular Position",
1672             vr => { DS => "1" },
1673             ret => 1
1674             },
1675             "0018,1142" => {
1676             desc => "Radial Position",
1677             vr => { DS => "1-n" }
1678             },
1679             "0018,1143" => {
1680             desc => "Scan Arc",
1681             vr => { DS => "1" }
1682             },
1683             "0018,1144" => {
1684             desc => "Angular Step",
1685             vr => { DS => "1" }
1686             },
1687             "0018,1145" => {
1688             desc => "Center of Rotation Offset",
1689             vr => { DS => "1" }
1690             },
1691             "0018,1146" => {
1692             desc => "Rotation Offset",
1693             vr => { DS => "1-n" },
1694             ret => 1
1695             },
1696             "0018,1147" => {
1697             desc => "Field of View Shape",
1698             vr => { CS => "1" }
1699             },
1700             "0018,1149" => {
1701             desc => "Field of View Dimension(s)",
1702             vr => { IS => "1-2" }
1703             },
1704             "0018,1150" => {
1705             desc => "Exposure Time",
1706             vr => { IS => "1" }
1707             },
1708             "0018,1151" => {
1709             desc => "X-Ray Tube Current",
1710             vr => { IS => "1" }
1711             },
1712             "0018,1152" => {
1713             desc => "Exposure ",
1714             vr => { IS => "1" }
1715             },
1716             "0018,1153" => {
1717             desc => "Exposure in muAs",
1718             vr => { IS => "1" }
1719             },
1720             "0018,1154" => {
1721             desc => "Average Pulse Width",
1722             vr => { DS => "1" }
1723             },
1724             "0018,1155" => {
1725             desc => "Radiation Setting",
1726             vr => { CS => "1" }
1727             },
1728             "0018,1156" => {
1729             desc => "Rectification Type",
1730             vr => { CS => "1" }
1731             },
1732             "0018,115a" => {
1733             desc => "Radiation Mode",
1734             vr => { CS => "1" }
1735             },
1736             "0018,115e" => {
1737             desc => "Image and Fluoroscopy Area Dose Product",
1738             vr => { DS => "1" }
1739             },
1740             "0018,1160" => {
1741             desc => "Filter Type",
1742             vr => { SH => "1" }
1743             },
1744             "0018,1161" => {
1745             desc => "Type of Filters",
1746             vr => { LO => "1-n" }
1747             },
1748             "0018,1162" => {
1749             desc => "Intensifier Size",
1750             vr => { DS => "1" }
1751             },
1752             "0018,1164" => {
1753             desc => "Imager Pixel Spacing",
1754             vr => { DS => "2" }
1755             },
1756             "0018,1166" => {
1757             desc => "Grid",
1758             vr => { CS => "1-n" }
1759             },
1760             "0018,1170" => {
1761             desc => "Generator Power",
1762             vr => { IS => "1" }
1763             },
1764             "0018,1180" => {
1765             desc => "Collimator/grid Name ",
1766             vr => { SH => "1" }
1767             },
1768             "0018,1181" => {
1769             desc => "Collimator Type",
1770             vr => { CS => "1" }
1771             },
1772             "0018,1182" => {
1773             desc => "Focal Distance",
1774             vr => { IS => "1-2" }
1775             },
1776             "0018,1183" => {
1777             desc => "X Focus Center",
1778             vr => { DS => "1-2" }
1779             },
1780             "0018,1184" => {
1781             desc => "Y Focus Center",
1782             vr => { DS => "1-2" }
1783             },
1784             "0018,1190" => {
1785             desc => "Focal Spot(s)",
1786             vr => { DS => "1-n" }
1787             },
1788             "0018,1191" => {
1789             desc => "Anode Target Material",
1790             vr => { CS => "1" }
1791             },
1792             "0018,11a0" => {
1793             desc => "Body Part Thickness",
1794             vr => { DS => "1" }
1795             },
1796             "0018,11a2" => {
1797             desc => "Compression Force",
1798             vr => { DS => "1" }
1799             },
1800             "0018,1200" => {
1801             desc => "Date of Last Calibration",
1802             vr => { DA => "1-n" }
1803             },
1804             "0018,1201" => {
1805             desc => "Time of Last Calibration",
1806             vr => { TM => "1-n" }
1807             },
1808             "0018,1210" => {
1809             desc => "Convolution Kernel",
1810             vr => { SH => "1-n" }
1811             },
1812             "0018,1240" => {
1813             desc => "Upper/Lower Pixel Values",
1814             vr => { IS => "1-n" },
1815             ret => 1
1816             },
1817             "0018,1242" => {
1818             desc => "Actual Frame Duration",
1819             vr => { IS => "1" }
1820             },
1821             "0018,1243" => {
1822             desc => "Count Rate",
1823             vr => { IS => "1" }
1824             },
1825             "0018,1244" => {
1826             desc => "Preferred Playback Sequencing",
1827             vr => { US => "1" }
1828             },
1829             "0018,1250" => {
1830             desc => "Receive Coil Name",
1831             vr => { SH => "1" }
1832             },
1833             "0018,1251" => {
1834             desc => "Transmit Coil Name",
1835             vr => { SH => "1" }
1836             },
1837             "0018,1260" => {
1838             desc => "Plate Type",
1839             vr => { SH => "1" }
1840             },
1841             "0018,1261" => {
1842             desc => "Phosphor Type",
1843             vr => { LO => "1" }
1844             },
1845             "0018,1300" => {
1846             desc => "Scan Velocity",
1847             vr => { DS => "1" }
1848             },
1849             "0018,1301" => {
1850             desc => "Whole Body Technique",
1851             vr => { CS => "1-n" }
1852             },
1853             "0018,1302" => {
1854             desc => "Scan Length",
1855             vr => { IS => "1" }
1856             },
1857             "0018,1310" => {
1858             desc => "Acquisition Matrix",
1859             vr => { US => "4" }
1860             },
1861             "0018,1312" => {
1862             desc => "In-plane Phase Encoding Direction",
1863             vr => { CS => "1" }
1864             },
1865             "0018,1314" => {
1866             desc => "Flip Angle",
1867             vr => { DS => "1" }
1868             },
1869             "0018,1315" => {
1870             desc => "Variable Flip Angle Flag",
1871             vr => { CS => "1" }
1872             },
1873             "0018,1316" => {
1874             desc => "SAR",
1875             vr => { DS => "1" }
1876             },
1877             "0018,1318" => {
1878             desc => "dB/dt",
1879             vr => { DS => "1" }
1880             },
1881             "0018,1400" => {
1882             desc => "Acquisition Device Processing Description ",
1883             vr => { LO => "1" }
1884             },
1885             "0018,1401" => {
1886             desc => "Acquisition Device Processing Code",
1887             vr => { LO => "1" }
1888             },
1889             "0018,1402" => {
1890             desc => "Cassette Orientation",
1891             vr => { CS => "1" }
1892             },
1893             "0018,1403" => {
1894             desc => "Cassette Size",
1895             vr => { CS => "1" }
1896             },
1897             "0018,1404" => {
1898             desc => "Exposures on Plate",
1899             vr => { US => "1" }
1900             },
1901             "0018,1405" => {
1902             desc => "Relative X-Ray Exposure",
1903             vr => { IS => "1" }
1904             },
1905             "0018,1450" => {
1906             desc => "Column Angulation",
1907             vr => { DS => "1" }
1908             },
1909             "0018,1460" => {
1910             desc => "Tomo Layer Height",
1911             vr => { DS => "1" }
1912             },
1913             "0018,1470" => {
1914             desc => "Tomo Angle",
1915             vr => { DS => "1" }
1916             },
1917             "0018,1480" => {
1918             desc => "Tomo Time",
1919             vr => { DS => "1" }
1920             },
1921             "0018,1490" => {
1922             desc => "Tomo Type",
1923             vr => { CS => "1" }
1924             },
1925             "0018,1491" => {
1926             desc => "Tomo Class",
1927             vr => { CS => "1" }
1928             },
1929             "0018,1495" => {
1930             desc => "Number of Tomosynthesis Source Images",
1931             vr => { IS => "1" }
1932             },
1933             "0018,1500" => {
1934             desc => "Positioner Motion",
1935             vr => { CS => "1" }
1936             },
1937             "0018,1508" => {
1938             desc => "Positioner Type",
1939             vr => { CS => "1" }
1940             },
1941             "0018,1510" => {
1942             desc => "Positioner Primary Angle",
1943             vr => { DS => "1" }
1944             },
1945             "0018,1511" => {
1946             desc => "Positioner Secondary Angle",
1947             vr => { DS => "1" }
1948             },
1949             "0018,1520" => {
1950             desc => "Positioner Primary Angle Increment",
1951             vr => { DS => "1-n" }
1952             },
1953             "0018,1521" => {
1954             desc => "Positioner Secondary Angle Increment",
1955             vr => { DS => "1-n" }
1956             },
1957             "0018,1530" => {
1958             desc => "Detector Primary Angle",
1959             vr => { DS => "1" }
1960             },
1961             "0018,1531" => {
1962             desc => "Detector Secondary Angle",
1963             vr => { DS => "1" }
1964             },
1965             "0018,1600" => {
1966             desc => "Shutter Shape",
1967             vr => { CS => "1-3" }
1968             },
1969             "0018,1602" => {
1970             desc => "Shutter Left Vertical Edge",
1971             vr => { IS => "1" }
1972             },
1973             "0018,1604" => {
1974             desc => "Shutter Right Vertical Edge",
1975             vr => { IS => "1" }
1976             },
1977             "0018,1606" => {
1978             desc => "Shutter Upper Horizontal Edge",
1979             vr => { IS => "1" }
1980             },
1981             "0018,1608" => {
1982             desc => "Shutter Lower Horizontal Edge",
1983             vr => { IS => "1" }
1984             },
1985             "0018,1610" => {
1986             desc => "Center of Circular Shutter",
1987             vr => { IS => "2" }
1988             },
1989             "0018,1612" => {
1990             desc => "Radius of Circular Shutter",
1991             vr => { IS => "1" }
1992             },
1993             "0018,1620" => {
1994             desc => "Vertices of the Polygonal Shutter",
1995             vr => { IS => "2-2n" }
1996             },
1997             "0018,1622" => {
1998             desc => "Shutter Presentation Value",
1999             vr => { US => "1" }
2000             },
2001             "0018,1623" => {
2002             desc => "Shutter Overlay Group",
2003             vr => { US => "1" }
2004             },
2005             "0018,1624" => {
2006             desc => "Shutter Presentation Color CIELab Value",
2007             vr => { US => "3" }
2008             },
2009             "0018,1700" => {
2010             desc => "Collimator Shape",
2011             vr => { CS => "1-3" }
2012             },
2013             "0018,1702" => {
2014             desc => "Collimator Left Vertical Edge",
2015             vr => { IS => "1" }
2016             },
2017             "0018,1704" => {
2018             desc => "Collimator Right Vertical Edge",
2019             vr => { IS => "1" }
2020             },
2021             "0018,1706" => {
2022             desc => "Collimator Upper Horizontal Edge",
2023             vr => { IS => "1" }
2024             },
2025             "0018,1708" => {
2026             desc => "Collimator Lower Horizontal Edge",
2027             vr => { IS => "1" }
2028             },
2029             "0018,1710" => {
2030             desc => "Center of Circular Collimator",
2031             vr => { IS => "2" }
2032             },
2033             "0018,1712" => {
2034             desc => "Radius of Circular Collimator",
2035             vr => { IS => "1" }
2036             },
2037             "0018,1720" => {
2038             desc => "Vertices of the Polygonal Collimator",
2039             vr => { IS => "2-2n" }
2040             },
2041             "0018,1800" => {
2042             desc => "Acquisition Time Synchronized",
2043             vr => { CS => "1" }
2044             },
2045             "0018,1801" => {
2046             desc => "Time Source",
2047             vr => { SH => "1" }
2048             },
2049             "0018,1802" => {
2050             desc => "Time Distribution Protocol",
2051             vr => { CS => "1" }
2052             },
2053             "0018,1803" => {
2054             desc => "NTP Source Address",
2055             vr => { LO => "1" }
2056             },
2057             "0018,2001" => {
2058             desc => "Page Number Vector",
2059             vr => { IS => "1-n" }
2060             },
2061             "0018,2002" => {
2062             desc => "Frame Label Vector",
2063             vr => { SH => "1-n" }
2064             },
2065             "0018,2003" => {
2066             desc => "Frame Primary Angle Vector",
2067             vr => { DS => "1-n" }
2068             },
2069             "0018,2004" => {
2070             desc => "Frame Secondary Angle Vector",
2071             vr => { DS => "1-n" }
2072             },
2073             "0018,2005" => {
2074             desc => "Slice Location Vector",
2075             vr => { DS => "1-n" }
2076             },
2077             "0018,2006" => {
2078             desc => "Display Window Label Vector",
2079             vr => { SH => "1-n" }
2080             },
2081             "0018,2010" => {
2082             desc => "Nominal Scanned Pixel Spacing",
2083             vr => { DS => "2" }
2084             },
2085             "0018,2020" => {
2086             desc => "Digitizing Device Transport Direction",
2087             vr => { CS => "1" }
2088             },
2089             "0018,2030" => {
2090             desc => "Rotation of Scanned Film",
2091             vr => { DS => "1" }
2092             },
2093             "0018,3100" => {
2094             desc => "IVUS Acquisition",
2095             vr => { CS => "1" }
2096             },
2097             "0018,3101" => {
2098             desc => "IVUS Pullback Rate",
2099             vr => { DS => "1" }
2100             },
2101             "0018,3102" => {
2102             desc => "IVUS Gated Rate",
2103             vr => { DS => "1" }
2104             },
2105             "0018,3103" => {
2106             desc => "IVUS Pullback Start Frame Number",
2107             vr => { IS => "1" }
2108             },
2109             "0018,3104" => {
2110             desc => "IVUS Pullback Stop Frame Number",
2111             vr => { IS => "1" }
2112             },
2113             "0018,3105" => {
2114             desc => "Lesion Number ",
2115             vr => { IS => "1-n" }
2116             },
2117             "0018,4000" => {
2118             desc => "Acquisition Comments",
2119             vr => { LT => "1" },
2120             ret => 1
2121             },
2122             "0018,5000" => {
2123             desc => "Output Power",
2124             vr => { SH => "1-n" }
2125             },
2126             "0018,5010" => {
2127             desc => "Transducer Data",
2128             vr => { LO => "1-n" }
2129             },
2130             "0018,5012" => {
2131             desc => "Focus Depth",
2132             vr => { DS => "1" }
2133             },
2134             "0018,5020" => {
2135             desc => "Processing Function",
2136             vr => { LO => "1" }
2137             },
2138             "0018,5021" => {
2139             desc => "Postprocessing Function",
2140             vr => { LO => "1" },
2141             ret => 1
2142             },
2143             "0018,5022" => {
2144             desc => "Mechanical Index",
2145             vr => { DS => "1" }
2146             },
2147             "0018,5024" => {
2148             desc => "Bone Thermal Index",
2149             vr => { DS => "1" }
2150             },
2151             "0018,5026" => {
2152             desc => "Cranial Thermal Index",
2153             vr => { DS => "1" }
2154             },
2155             "0018,5027" => {
2156             desc => "Soft Tissue Thermal Index",
2157             vr => { DS => "1" }
2158             },
2159             "0018,5028" => {
2160             desc => "Soft Tissue-focus Thermal Index",
2161             vr => { DS => "1" }
2162             },
2163             "0018,5029" => {
2164             desc => "Soft Tissue-surface Thermal Index",
2165             vr => { DS => "1" }
2166             },
2167             "0018,5030" => {
2168             desc => "Dynamic Range",
2169             vr => { DS => "1" },
2170             ret => 1
2171             },
2172             "0018,5040" => {
2173             desc => "Total Gain",
2174             vr => { DS => "1" },
2175             ret => 1
2176             },
2177             "0018,5050" => {
2178             desc => "Depth of Scan Field",
2179             vr => { IS => "1" }
2180             },
2181             "0018,5100" => {
2182             desc => "Patient Position",
2183             vr => { CS => "1" }
2184             },
2185             "0018,5101" => {
2186             desc => "View Position",
2187             vr => { CS => "1" }
2188             },
2189             "0018,5104" => {
2190             desc => "Projection Eponymous Name Code Sequence",
2191             vr => { SQ => "1" }
2192             },
2193             "0018,5210" => {
2194             desc => "Image Transformation Matrix",
2195             vr => { DS => "6" },
2196             ret => 1
2197             },
2198             "0018,5212" => {
2199             desc => "Image Translation Vector",
2200             vr => { DS => "3" },
2201             ret => 1
2202             },
2203             "0018,6000" => {
2204             desc => "Sensitivity",
2205             vr => { DS => "1" }
2206             },
2207             "0018,6011" => {
2208             desc => "Sequence of Ultrasound Regions",
2209             vr => { SQ => "1" }
2210             },
2211             "0018,6012" => {
2212             desc => "Region Spatial Format",
2213             vr => { US => "1" }
2214             },
2215             "0018,6014" => {
2216             desc => "Region Data Type",
2217             vr => { US => "1" }
2218             },
2219             "0018,6016" => {
2220             desc => "Region Flags",
2221             vr => { UL => "1" }
2222             },
2223             "0018,6018" => {
2224             desc => "Region Location Min X0",
2225             vr => { UL => "1" }
2226             },
2227             "0018,601a" => {
2228             desc => "Region Location Min Y0",
2229             vr => { UL => "1" }
2230             },
2231             "0018,601c" => {
2232             desc => "Region Location Max X1",
2233             vr => { UL => "1" }
2234             },
2235             "0018,601e" => {
2236             desc => "Region Location Max Y1",
2237             vr => { UL => "1" }
2238             },
2239             "0018,6020" => {
2240             desc => "Reference Pixel X0",
2241             vr => { SL => "1" }
2242             },
2243             "0018,6022" => {
2244             desc => "Reference Pixel Y0",
2245             vr => { SL => "1" }
2246             },
2247             "0018,6024" => {
2248             desc => "Physical Units X Direction",
2249             vr => { US => "1" }
2250             },
2251             "0018,6026" => {
2252             desc => "Physical Units Y Direction",
2253             vr => { US => "1" }
2254             },
2255             "0018,6028" => {
2256             desc => "Reference Pixel Physical Value X",
2257             vr => { FD => "1" }
2258             },
2259             "0018,602a" => {
2260             desc => "Reference Pixel Physical Value Y",
2261             vr => { FD => "1" }
2262             },
2263             "0018,602c" => {
2264             desc => "Physical Delta X",
2265             vr => { FD => "1" }
2266             },
2267             "0018,602e" => {
2268             desc => "Physical Delta Y",
2269             vr => { FD => "1" }
2270             },
2271             "0018,6030" => {
2272             desc => "Transducer Frequency",
2273             vr => { UL => "1" }
2274             },
2275             "0018,6031" => {
2276             desc => "Transducer Type",
2277             vr => { CS => "1" }
2278             },
2279             "0018,6032" => {
2280             desc => "Pulse Repetition Frequency",
2281             vr => { UL => "1" }
2282             },
2283             "0018,6034" => {
2284             desc => "Doppler Correction Angle",
2285             vr => { FD => "1" }
2286             },
2287             "0018,6036" => {
2288             desc => "Steering Angle",
2289             vr => { FD => "1" }
2290             },
2291             "0018,6038" => {
2292             desc => "Doppler Sample Volume X Position (Retired)",
2293             vr => { UL => "1" },
2294             ret => 1
2295             },
2296             "0018,6039" => {
2297             desc => "Doppler Sample Volume X Position",
2298             vr => { SL => "1" }
2299             },
2300             "0018,603a" => {
2301             desc => "Doppler Sample Volume Y Position (Retired)",
2302             vr => { UL => "1" },
2303             ret => 1
2304             },
2305             "0018,603b" => {
2306             desc => "Doppler Sample Volume Y Position",
2307             vr => { SL => "1" }
2308             },
2309             "0018,603c" => {
2310             desc => "TMLine Position X0 (Retired)",
2311             vr => { UL => "1" },
2312             ret => 1
2313             },
2314             "0018,603d" => {
2315             desc => "TM-Line Position X0",
2316             vr => { SL => "1" }
2317             },
2318             "0018,603e" => {
2319             desc => "TM-Line Position Y0 (Retired)",
2320             vr => { UL => "1" },
2321             ret => 1
2322             },
2323             "0018,603f" => {
2324             desc => "TM-Line Position Y0",
2325             vr => { SL => "1" }
2326             },
2327             "0018,6040" => {
2328             desc => "TM-Line Position X1 (Retired)",
2329             vr => { UL => "1" },
2330             ret => 1
2331             },
2332             "0018,6041" => {
2333             desc => "TM-Line Position X1",
2334             vr => { SL => "1" }
2335             },
2336             "0018,6042" => {
2337             desc => "TM-Line Position Y1 (Retired)",
2338             vr => { UL => "1" },
2339             ret => 1
2340             },
2341             "0018,6043" => {
2342             desc => "TM-Line Position Y1",
2343             vr => { SL => "1" }
2344             },
2345             "0018,6044" => {
2346             desc => "Pixel Component Organization",
2347             vr => { US => "1" }
2348             },
2349             "0018,6046" => {
2350             desc => "Pixel Component Mask",
2351             vr => { UL => "1" }
2352             },
2353             "0018,6048" => {
2354             desc => "Pixel Component Range Start",
2355             vr => { UL => "1" }
2356             },
2357             "0018,604a" => {
2358             desc => "Pixel Component Range Stop",
2359             vr => { UL => "1" }
2360             },
2361             "0018,604c" => {
2362             desc => "Pixel Component Physical Units",
2363             vr => { US => "1" }
2364             },
2365             "0018,604e" => {
2366             desc => "Pixel Component Data Type",
2367             vr => { US => "1" }
2368             },
2369             "0018,6050" => {
2370             desc => "Number of Table Break Points",
2371             vr => { UL => "1" }
2372             },
2373             "0018,6052" => {
2374             desc => "Table of X Break Points",
2375             vr => { UL => "1-n" }
2376             },
2377             "0018,6054" => {
2378             desc => "Table of Y Break Points",
2379             vr => { FD => "1-n" }
2380             },
2381             "0018,6056" => {
2382             desc => "Number of Table Entries",
2383             vr => { UL => "1" }
2384             },
2385             "0018,6058" => {
2386             desc => "Table of Pixel Values",
2387             vr => { UL => "1-n" }
2388             },
2389             "0018,605a" => {
2390             desc => "Table of Parameter Values",
2391             vr => { FL => "1-n" }
2392             },
2393             "0018,6060" => {
2394             desc => "R Wave Time Vector",
2395             vr => { FL => "1-n" }
2396             },
2397             "0018,7000" => {
2398             desc => "Detector Conditions Nominal Flag ",
2399             vr => { CS => "1" }
2400             },
2401             "0018,7001" => {
2402             desc => "Detector Temperature",
2403             vr => { DS => "1" }
2404             },
2405             "0018,7004" => {
2406             desc => "Detector Type",
2407             vr => { CS => "1" }
2408             },
2409             "0018,7005" => {
2410             desc => "Detector Configuration",
2411             vr => { CS => "1" }
2412             },
2413             "0018,7006" => {
2414             desc => "Detector Description",
2415             vr => { LT => "1" }
2416             },
2417             "0018,7008" => {
2418             desc => "Detector Mode",
2419             vr => { LT => "1" }
2420             },
2421             "0018,700a" => {
2422             desc => "Detector ID",
2423             vr => { SH => "1" }
2424             },
2425             "0018,700c" => {
2426             desc => "Date of Last Detector Calibration ",
2427             vr => { DA => "1" }
2428             },
2429             "0018,700e" => {
2430             desc => "Time of Last Detector Calibration",
2431             vr => { TM => "1" }
2432             },
2433             "0018,7010" => {
2434             desc => "Exposures on Detector Since Last Calibration ",
2435             vr => { IS => "1" }
2436             },
2437             "0018,7011" => {
2438             desc => "Exposures on Detector Since Manufactured ",
2439             vr => { IS => "1" }
2440             },
2441             "0018,7012" => {
2442             desc => "Detector Time Since Last Exposure ",
2443             vr => { DS => "1" }
2444             },
2445             "0018,7014" => {
2446             desc => "Detector Active Time ",
2447             vr => { DS => "1" }
2448             },
2449             "0018,7016" => {
2450             desc => "Detector Activation Offset From Exposure",
2451             vr => { DS => "1" }
2452             },
2453             "0018,701a" => {
2454             desc => "Detector Binning ",
2455             vr => { DS => "2" }
2456             },
2457             "0018,7020" => {
2458             desc => "Detector Element Physical Size",
2459             vr => { DS => "2" }
2460             },
2461             "0018,7022" => {
2462             desc => "Detector Element Spacing",
2463             vr => { DS => "2" }
2464             },
2465             "0018,7024" => {
2466             desc => "Detector Active Shape",
2467             vr => { CS => "1" }
2468             },
2469             "0018,7026" => {
2470             desc => "Detector Active Dimension(s)",
2471             vr => { DS => "1-2" }
2472             },
2473             "0018,7028" => {
2474             desc => "Detector Active Origin",
2475             vr => { DS => "2" }
2476             },
2477             "0018,702a" => {
2478             desc => "Detector Manufacturer Name",
2479             vr => { LO => "1" }
2480             },
2481             "0018,702b" => {
2482             desc => "Detector Manufacturer's Model Name",
2483             vr => { LO => "1" }
2484             },
2485             "0018,7030" => {
2486             desc => "Field of View Origin",
2487             vr => { DS => "2" }
2488             },
2489             "0018,7032" => {
2490             desc => "Field of View Rotation",
2491             vr => { DS => "1" }
2492             },
2493             "0018,7034" => {
2494             desc => "Field of View Horizontal Flip",
2495             vr => { CS => "1" }
2496             },
2497             "0018,7040" => {
2498             desc => "Grid Absorbing Material",
2499             vr => { LT => "1" }
2500             },
2501             "0018,7041" => {
2502             desc => "Grid Spacing Material",
2503             vr => { LT => "1" }
2504             },
2505             "0018,7042" => {
2506             desc => "Grid Thickness",
2507             vr => { DS => "1" }
2508             },
2509             "0018,7044" => {
2510             desc => "Grid Pitch",
2511             vr => { DS => "1" }
2512             },
2513             "0018,7046" => {
2514             desc => "Grid Aspect Ratio",
2515             vr => { IS => "2" }
2516             },
2517             "0018,7048" => {
2518             desc => "Grid Period",
2519             vr => { DS => "1" }
2520             },
2521             "0018,704c" => {
2522             desc => "Grid Focal Distance",
2523             vr => { DS => "1" }
2524             },
2525             "0018,7050" => {
2526             desc => "Filter Material",
2527             vr => { CS => "1-n" }
2528             },
2529             "0018,7052" => {
2530             desc => "Filter Thickness Minimum",
2531             vr => { DS => "1-n" }
2532             },
2533             "0018,7054" => {
2534             desc => "Filter Thickness Maximum",
2535             vr => { DS => "1-n" }
2536             },
2537             "0018,7056" => {
2538             desc => "Filter Beam Path Length Minimum",
2539             vr => { FL => "1-n" }
2540             },
2541             "0018,7058" => {
2542             desc => "Filter Beam Path Length Maximum",
2543             vr => { FL => "1-n" }
2544             },
2545             "0018,7060" => {
2546             desc => "Exposure Control Mode",
2547             vr => { CS => "1" }
2548             },
2549             "0018,7062" => {
2550             desc => "Exposure Control Mode Description",
2551             vr => { LT => "1" }
2552             },
2553             "0018,7064" => {
2554             desc => "Exposure Status",
2555             vr => { CS => "1" }
2556             },
2557             "0018,7065" => {
2558             desc => "Phototimer Setting",
2559             vr => { DS => "1" }
2560             },
2561             "0018,8150" => {
2562             desc => "Exposure Time in ?S",
2563             vr => { DS => "1" }
2564             },
2565             "0018,8151" => {
2566             desc => "X-Ray Tube Current in ?A",
2567             vr => { DS => "1" }
2568             },
2569             "0018,9004" => {
2570             desc => "Content Qualification",
2571             vr => { CS => "1" }
2572             },
2573             "0018,9005" => {
2574             desc => "Pulse Sequence Name",
2575             vr => { SH => "1" }
2576             },
2577             "0018,9006" => {
2578             desc => "MR Imaging Modifier Sequence",
2579             vr => { SQ => "1" }
2580             },
2581             "0018,9008" => {
2582             desc => "Echo Pulse Sequence",
2583             vr => { CS => "1" }
2584             },
2585             "0018,9009" => {
2586             desc => "Inversion Recovery",
2587             vr => { CS => "1" }
2588             },
2589             "0018,9010" => {
2590             desc => "Flow Compensation",
2591             vr => { CS => "1" }
2592             },
2593             "0018,9011" => {
2594             desc => "Multiple Spin Echo",
2595             vr => { CS => "1" }
2596             },
2597             "0018,9012" => {
2598             desc => "Multi-planar Excitation",
2599             vr => { CS => "1" }
2600             },
2601             "0018,9014" => {
2602             desc => "Phase Contrast",
2603             vr => { CS => "1" }
2604             },
2605             "0018,9015" => {
2606             desc => "Time of Flight Contrast",
2607             vr => { CS => "1" }
2608             },
2609             "0018,9016" => {
2610             desc => "Spoiling",
2611             vr => { CS => "1" }
2612             },
2613             "0018,9017" => {
2614             desc => "Steady State Pulse Sequence",
2615             vr => { CS => "1" }
2616             },
2617             "0018,9018" => {
2618             desc => "Echo Planar Pulse Sequence",
2619             vr => { CS => "1" }
2620             },
2621             "0018,9019" => {
2622             desc => "Tag Angle First Axis",
2623             vr => { FD => "1" }
2624             },
2625             "0018,9020" => {
2626             desc => "Magnetization Transfer",
2627             vr => { CS => "1" }
2628             },
2629             "0018,9021" => {
2630             desc => "T2 Preparation",
2631             vr => { CS => "1" }
2632             },
2633             "0018,9022" => {
2634             desc => "Blood Signal Nulling",
2635             vr => { CS => "1" }
2636             },
2637             "0018,9024" => {
2638             desc => "Saturation Recovery",
2639             vr => { CS => "1" }
2640             },
2641             "0018,9025" => {
2642             desc => "Spectrally Selected Suppression",
2643             vr => { CS => "1" }
2644             },
2645             "0018,9026" => {
2646             desc => "Spectrally Selected Excitation",
2647             vr => { CS => "1" }
2648             },
2649             "0018,9027" => {
2650             desc => "Spatial Pre-saturation",
2651             vr => { CS => "1" }
2652             },
2653             "0018,9028" => {
2654             desc => "Tagging",
2655             vr => { CS => "1" }
2656             },
2657             "0018,9029" => {
2658             desc => "Oversampling Phase",
2659             vr => { CS => "1" }
2660             },
2661             "0018,9030" => {
2662             desc => "Tag Spacing First Dimension",
2663             vr => { FD => "1" }
2664             },
2665             "0018,9032" => {
2666             desc => "Geometry of k-Space Traversal",
2667             vr => { CS => "1" }
2668             },
2669             "0018,9033" => {
2670             desc => "Segmented k-Space Traversal",
2671             vr => { CS => "1" }
2672             },
2673             "0018,9034" => {
2674             desc => "Rectilinear Phase Encode Reordering",
2675             vr => { CS => "1" }
2676             },
2677             "0018,9035" => {
2678             desc => "Tag Thickness",
2679             vr => { FD => "1" }
2680             },
2681             "0018,9036" => {
2682             desc => "Partial Fourier Direction",
2683             vr => { CS => "1" }
2684             },
2685             "0018,9037" => {
2686             desc => "Cardiac Synchronization Technique",
2687             vr => { CS => "1" }
2688             },
2689             "0018,9041" => {
2690             desc => "Receive Coil Manufacturer Name",
2691             vr => { LO => "1" }
2692             },
2693             "0018,9042" => {
2694             desc => "MR Receive Coil Sequence",
2695             vr => { SQ => "1" }
2696             },
2697             "0018,9043" => {
2698             desc => "Receive Coil Type ",
2699             vr => { CS => "1" }
2700             },
2701             "0018,9044" => {
2702             desc => "Quadrature Receive Coil ",
2703             vr => { CS => "1" }
2704             },
2705             "0018,9045" => {
2706             desc => "Multi-Coil Definition Sequence",
2707             vr => { SQ => "1" }
2708             },
2709             "0018,9046" => {
2710             desc => "Multi-Coil Configuration ",
2711             vr => { LO => "1" }
2712             },
2713             "0018,9047" => {
2714             desc => "Multi-Coil Element Name",
2715             vr => { SH => "1" }
2716             },
2717             "0018,9048" => {
2718             desc => "Multi-Coil Element Used",
2719             vr => { CS => "1" }
2720             },
2721             "0018,9049" => {
2722             desc => "MR Transmit Coil Sequence",
2723             vr => { SQ => "1" }
2724             },
2725             "0018,9050" => {
2726             desc => "Transmit Coil Manufacturer Name",
2727             vr => { LO => "1" }
2728             },
2729             "0018,9051" => {
2730             desc => "Transmit Coil Type",
2731             vr => { CS => "1" }
2732             },
2733             "0018,9052" => {
2734             desc => "Spectral Width",
2735             vr => { FD => "1-2" }
2736             },
2737             "0018,9053" => {
2738             desc => "Chemical Shift Reference",
2739             vr => { FD => "1-2" }
2740             },
2741             "0018,9054" => {
2742             desc => "Volume Localization Technique",
2743             vr => { CS => "1" }
2744             },
2745             "0018,9058" => {
2746             desc => "MR Acquisition Frequency Encoding Steps",
2747             vr => { US => "1" }
2748             },
2749             "0018,9059" => {
2750             desc => "De-coupling",
2751             vr => { CS => "1" }
2752             },
2753             "0018,9060" => {
2754             desc => "De-coupled Nucleus",
2755             vr => { CS => "1-2" }
2756             },
2757             "0018,9061" => {
2758             desc => "De-coupling Frequency",
2759             vr => { FD => "1-2" }
2760             },
2761             "0018,9062" => {
2762             desc => "De-coupling Method",
2763             vr => { CS => "1" }
2764             },
2765             "0018,9063" => {
2766             desc => "De-coupling Chemical Shift Reference",
2767             vr => { FD => "1-2" }
2768             },
2769             "0018,9064" => {
2770             desc => "k-space Filtering",
2771             vr => { CS => "1" }
2772             },
2773             "0018,9065" => {
2774             desc => "Time Domain Filtering",
2775             vr => { CS => "1-2" }
2776             },
2777             "0018,9066" => {
2778             desc => "Number of Zero fills",
2779             vr => { US => "1-2" }
2780             },
2781             "0018,9067" => {
2782             desc => "Baseline Correction",
2783             vr => { CS => "1" }
2784             },
2785             "0018,9069" => {
2786             desc => "Parallel Reduction Factor In-plane",
2787             vr => { FD => "1" }
2788             },
2789             "0018,9070" => {
2790             desc => "Cardiac R-R Interval Specified",
2791             vr => { FD => "1" }
2792             },
2793             "0018,9073" => {
2794             desc => "Acquisition Duration",
2795             vr => { FD => "1" }
2796             },
2797             "0018,9074" => {
2798             desc => "Frame Acquisition DateTime",
2799             vr => { DT => "1" }
2800             },
2801             "0018,9075" => {
2802             desc => "Diffusion Directionality",
2803             vr => { CS => "1" }
2804             },
2805             "0018,9076" => {
2806             desc => "Diffusion Gradient Direction Sequence",
2807             vr => { SQ => "1" }
2808             },
2809             "0018,9077" => {
2810             desc => "Parallel Acquisition",
2811             vr => { CS => "1" }
2812             },
2813             "0018,9078" => {
2814             desc => "Parallel Acquisition Technique",
2815             vr => { CS => "1" }
2816             },
2817             "0018,9079" => {
2818             desc => "Inversion Times",
2819             vr => { FD => "1-n" }
2820             },
2821             "0018,9080" => {
2822             desc => "Metabolite Map Description",
2823             vr => { ST => "1" }
2824             },
2825             "0018,9081" => {
2826             desc => "Partial Fourier",
2827             vr => { CS => "1" }
2828             },
2829             "0018,9082" => {
2830             desc => "Effective Echo Time",
2831             vr => { FD => "1" }
2832             },
2833             "0018,9083" => {
2834             desc => "Metabolite Map Code Sequence",
2835             vr => { SQ => "1" }
2836             },
2837             "0018,9084" => {
2838             desc => "Chemical Shift Sequence",
2839             vr => { SQ => "1" }
2840             },
2841             "0018,9085" => {
2842             desc => "Cardiac Signal Source",
2843             vr => { CS => "1" }
2844             },
2845             "0018,9087" => {
2846             desc => "Diffusion b-value",
2847             vr => { FD => "1" }
2848             },
2849             "0018,9089" => {
2850             desc => "Diffusion Gradient Orientation",
2851             vr => { FD => "3" }
2852             },
2853             "0018,9090" => {
2854             desc => "Velocity Encoding Direction",
2855             vr => { FD => "3" }
2856             },
2857             "0018,9091" => {
2858             desc => "Velocity Encoding Minimum Value",
2859             vr => { FD => "1" }
2860             },
2861             "0018,9093" => {
2862             desc => "Number of k-Space Trajectories",
2863             vr => { US => "1" }
2864             },
2865             "0018,9094" => {
2866             desc => "Coverage of k-Space",
2867             vr => { CS => "1" }
2868             },
2869             "0018,9095" => {
2870             desc => "Spectroscopy Acquisition Phase Rows",
2871             vr => { UL => "1" }
2872             },
2873             "0018,9096" => {
2874             desc => "Parallel Reduction Factor In-plane (Retired)",
2875             vr => { FD => "1" },
2876             ret => 1
2877             },
2878             "0018,9098" => {
2879             desc => "Transmitter Frequency",
2880             vr => { FD => "1-2" }
2881             },
2882             "0018,9100" => {
2883             desc => "Resonant Nucleus",
2884             vr => { CS => "1-2" }
2885             },
2886             "0018,9101" => {
2887             desc => "Frequency Correction",
2888             vr => { CS => "1" }
2889             },
2890             "0018,9103" => {
2891             desc => "MR Spectroscopy FOV/Geometry Sequence",
2892             vr => { SQ => "1" }
2893             },
2894             "0018,9104" => {
2895             desc => "Slab Thickness",
2896             vr => { FD => "1" }
2897             },
2898             "0018,9105" => {
2899             desc => "Slab Orientation",
2900             vr => { FD => "3" }
2901             },
2902             "0018,9106" => {
2903             desc => "Mid Slab Position",
2904             vr => { FD => "3" }
2905             },
2906             "0018,9107" => {
2907             desc => "MR Spatial Saturation Sequence",
2908             vr => { SQ => "1" }
2909             },
2910             "0018,9112" => {
2911             desc => "MR Timing and Related Parameters Sequence",
2912             vr => { SQ => "1" }
2913             },
2914             "0018,9114" => {
2915             desc => "MR Echo Sequence",
2916             vr => { SQ => "1" }
2917             },
2918             "0018,9115" => {
2919             desc => "MR Modifier Sequence",
2920             vr => { SQ => "1" }
2921             },
2922             "0018,9117" => {
2923             desc => "MR Diffusion Sequence",
2924             vr => { SQ => "1" }
2925             },
2926             "0018,9118" => {
2927             desc => "Cardiac Synchronization Sequence",
2928             vr => { SQ => "1" }
2929             },
2930             "0018,9119" => {
2931             desc => "MR Averages Sequence",
2932             vr => { SQ => "1" }
2933             },
2934             "0018,9125" => {
2935             desc => "MR FOV/Geometry Sequence",
2936             vr => { SQ => "1" }
2937             },
2938             "0018,9126" => {
2939             desc => "Volume Localization Sequence",
2940             vr => { SQ => "1" }
2941             },
2942             "0018,9127" => {
2943             desc => "Spectroscopy Acquisition Data Columns",
2944             vr => { UL => "1" }
2945             },
2946             "0018,9147" => {
2947             desc => "Diffusion Anisotropy Type",
2948             vr => { CS => "1" }
2949             },
2950             "0018,9151" => {
2951             desc => "Frame Reference DateTime",
2952             vr => { DT => "1" }
2953             },
2954             "0018,9152" => {
2955             desc => "MR Metabolite Map Sequence",
2956             vr => { SQ => "1" }
2957             },
2958             "0018,9155" => {
2959             desc => "Parallel Reduction Factor out-of-plane",
2960             vr => { FD => "1" }
2961             },
2962             "0018,9159" => {
2963             desc => "Spectroscopy Acquisition Out-of-plane Phase Steps",
2964             vr => { UL => "1" }
2965             },
2966             "0018,9166" => {
2967             desc => "Bulk Motion Status",
2968             vr => { CS => "1" },
2969             ret => 1
2970             },
2971             "0018,9168" => {
2972             desc => "Parallel Reduction Factor Second In-plane",
2973             vr => { FD => "1" }
2974             },
2975             "0018,9169" => {
2976             desc => "Cardiac Beat Rejection Technique",
2977             vr => { CS => "1" }
2978             },
2979             "0018,9170" => {
2980             desc => "Respiratory Motion Compensation Technique",
2981             vr => { CS => "1" }
2982             },
2983             "0018,9171" => {
2984             desc => "Respiratory Signal Source",
2985             vr => { CS => "1" }
2986             },
2987             "0018,9172" => {
2988             desc => "Bulk Motion Compensation Technique",
2989             vr => { CS => "1" }
2990             },
2991             "0018,9173" => {
2992             desc => "Bulk Motion Signal Source",
2993             vr => { CS => "1" }
2994             },
2995             "0018,9174" => {
2996             desc => "Applicable Safety Standard Agency",
2997             vr => { CS => "1" }
2998             },
2999             "0018,9175" => {
3000             desc => "Applicable Safety Standard Description",
3001             vr => { LO => "1" }
3002             },
3003             "0018,9176" => {
3004             desc => "Operating Mode Sequence",
3005             vr => { SQ => "1" }
3006             },
3007             "0018,9177" => {
3008             desc => "Operating Mode Type",
3009             vr => { CS => "1" }
3010             },
3011             "0018,9178" => {
3012             desc => "Operating Mode",
3013             vr => { CS => "1" }
3014             },
3015             "0018,9179" => {
3016             desc => "Specific Absorption Rate Definition",
3017             vr => { CS => "1" }
3018             },
3019             "0018,9180" => {
3020             desc => "Gradient Output Type",
3021             vr => { CS => "1" }
3022             },
3023             "0018,9181" => {
3024             desc => "Specific Absorption Rate Value",
3025             vr => { FD => "1" }
3026             },
3027             "0018,9182" => {
3028             desc => "Gradient Output",
3029             vr => { FD => "1" }
3030             },
3031             "0018,9183" => {
3032             desc => "Flow Compensation Direction",
3033             vr => { CS => "1" }
3034             },
3035             "0018,9184" => {
3036             desc => "Tagging Delay",
3037             vr => { FD => "1" }
3038             },
3039             "0018,9185" => {
3040             desc => "Respiratory Motion Compensation Technique Description",
3041             vr => { ST => "1" }
3042             },
3043             "0018,9186" => {
3044             desc => "Respiratory Signal Source ID",
3045             vr => { SH => "1" }
3046             },
3047             "0018,9195" => {
3048             desc => "Chemical Shift Minimum Integration Limit in Hz",
3049             vr => { FD => "1" },
3050             ret => 1
3051             },
3052             "0018,9196" => {
3053             desc => "Chemical Shift Maximum Integration Limit in Hz",
3054             vr => { FD => "1" },
3055             ret => 1
3056             },
3057             "0018,9197" => {
3058             desc => "MR Velocity Encoding Sequence",
3059             vr => { SQ => "1" }
3060             },
3061             "0018,9198" => {
3062             desc => "First Order Phase Correction",
3063             vr => { CS => "1" }
3064             },
3065             "0018,9199" => {
3066             desc => "Water Referenced Phase Correction",
3067             vr => { CS => "1" }
3068             },
3069             "0018,9200" => {
3070             desc => "MR Spectroscopy Acquisition Type",
3071             vr => { CS => "1" }
3072             },
3073             "0018,9214" => {
3074             desc => "Respiratory Cycle Position",
3075             vr => { CS => "1" }
3076             },
3077             "0018,9217" => {
3078             desc => "Velocity Encoding Maximum Value",
3079             vr => { FD => "1" }
3080             },
3081             "0018,9218" => {
3082             desc => "Tag Spacing Second Dimension",
3083             vr => { FD => "1" }
3084             },
3085             "0018,9219" => {
3086             desc => "Tag Angle Second Axis",
3087             vr => { SS => "1" }
3088             },
3089             "0018,9220" => {
3090             desc => "Frame Acquisition Duration",
3091             vr => { FD => "1" }
3092             },
3093             "0018,9226" => {
3094             desc => "MR Image Frame Type Sequence",
3095             vr => { SQ => "1" }
3096             },
3097             "0018,9227" => {
3098             desc => "MR Spectroscopy Frame Type Sequence",
3099             vr => { SQ => "1" }
3100             },
3101             "0018,9231" => {
3102             desc => "MR Acquisition Phase Encoding Steps in-plane",
3103             vr => { US => "1" }
3104             },
3105             "0018,9232" => {
3106             desc => "MR Acquisition Phase Encoding Steps out-of-plane",
3107             vr => { US => "1" }
3108             },
3109             "0018,9234" => {
3110             desc => "Spectroscopy Acquisition Phase Columns",
3111             vr => { UL => "1" }
3112             },
3113             "0018,9236" => {
3114             desc => "Cardiac Cycle Position",
3115             vr => { CS => "1" }
3116             },
3117             "0018,9239" => {
3118             desc => "Specific Absorption Rate Sequence",
3119             vr => { SQ => "1" }
3120             },
3121             "0018,9240" => {
3122             desc => "RF Echo Train Length",
3123             vr => { US => "1" }
3124             },
3125             "0018,9241" => {
3126             desc => "Gradient Echo Train Length",
3127             vr => { US => "1" }
3128             },
3129             "0018,9295" => {
3130             desc => "Chemical Shift Minimum Integration Limit in ppm",
3131             vr => { FD => "1" }
3132             },
3133             "0018,9296" => {
3134             desc => "Chemical Shift Maximum Integration Limit in ppm",
3135             vr => { FD => "1" }
3136             },
3137             "0018,9301" => {
3138             desc => "CT Acquisition Type Sequence",
3139             vr => { SQ => "1" }
3140             },
3141             "0018,9302" => {
3142             desc => "Acquisition Type",
3143             vr => { CS => "1" }
3144             },
3145             "0018,9303" => {
3146             desc => "Tube Angle",
3147             vr => { FD => "1" }
3148             },
3149             "0018,9304" => {
3150             desc => "CT Acquisition Details Sequence",
3151             vr => { SQ => "1" }
3152             },
3153             "0018,9305" => {
3154             desc => "Revolution Time",
3155             vr => { FD => "1" }
3156             },
3157             "0018,9306" => {
3158             desc => "Single Collimation Width",
3159             vr => { FD => "1" }
3160             },
3161             "0018,9307" => {
3162             desc => "Total Collimation Width",
3163             vr => { FD => "1" }
3164             },
3165             "0018,9308" => {
3166             desc => "CT Table Dynamics Sequence",
3167             vr => { SQ => "1" }
3168             },
3169             "0018,9309" => {
3170             desc => "Table Speed",
3171             vr => { FD => "1" }
3172             },
3173             "0018,9310" => {
3174             desc => "Table Feed per Rotation",
3175             vr => { FD => "1" }
3176             },
3177             "0018,9311" => {
3178             desc => "Spiral Pitch Factor",
3179             vr => { FD => "1" }
3180             },
3181             "0018,9312" => {
3182             desc => "CT Geometry Sequence",
3183             vr => { SQ => "1" }
3184             },
3185             "0018,9313" => {
3186             desc => "Data Collection Center (Patient)",
3187             vr => { FD => "3" }
3188             },
3189             "0018,9314" => {
3190             desc => "CT Reconstruction Sequence",
3191             vr => { SQ => "1" }
3192             },
3193             "0018,9315" => {
3194             desc => "Reconstruction Algorithm",
3195             vr => { CS => "1" }
3196             },
3197             "0018,9316" => {
3198             desc => "Convolution Kernel Group",
3199             vr => { CS => "1" }
3200             },
3201             "0018,9317" => {
3202             desc => "Reconstruction Field of View",
3203             vr => { FD => "2" }
3204             },
3205             "0018,9318" => {
3206             desc => "Reconstruction Target Center (Patient)",
3207             vr => { FD => "3" }
3208             },
3209             "0018,9319" => {
3210             desc => "Reconstruction Angle",
3211             vr => { FD => "1" }
3212             },
3213             "0018,9320" => {
3214             desc => "Image Filter",
3215             vr => { SH => "1" }
3216             },
3217             "0018,9321" => {
3218             desc => "CT Exposure Sequence",
3219             vr => { SQ => "1" }
3220             },
3221             "0018,9322" => {
3222             desc => "Reconstruction Pixel Spacing ",
3223             vr => { FD => "2" }
3224             },
3225             "0018,9323" => {
3226             desc => "Exposure Modulation Type",
3227             vr => { CS => "1" }
3228             },
3229             "0018,9324" => {
3230             desc => "Estimated Dose Saving",
3231             vr => { FD => "1" }
3232             },
3233             "0018,9325" => {
3234             desc => "CT X-Ray Details Sequence",
3235             vr => { SQ => "1" }
3236             },
3237             "0018,9326" => {
3238             desc => "CT Position Sequence",
3239             vr => { SQ => "1" }
3240             },
3241             "0018,9327" => {
3242             desc => "Table Position",
3243             vr => { FD => "1" }
3244             },
3245             "0018,9328" => {
3246             desc => "Exposure Time in ms",
3247             vr => { FD => "1" }
3248             },
3249             "0018,9329" => {
3250             desc => "CT Image Frame Type Sequence",
3251             vr => { SQ => "1" }
3252             },
3253             "0018,9330" => {
3254             desc => "X-Ray Tube Current in mA",
3255             vr => { FD => "1" }
3256             },
3257             "0018,9332" => {
3258             desc => "Exposure in mAs",
3259             vr => { FD => "1" }
3260             },
3261             "0018,9333" => {
3262             desc => "Constant Volume Flag ",
3263             vr => { CS => "1" }
3264             },
3265             "0018,9334" => {
3266             desc => "Fluoroscopy Flag",
3267             vr => { CS => "1" }
3268             },
3269             "0018,9335" => {
3270             desc => "Distance Source to Data Collection Center",
3271             vr => { FD => "1" }
3272             },
3273             "0018,9337" => {
3274             desc => "Contrast/Bolus Agent Number",
3275             vr => { US => "1" }
3276             },
3277             "0018,9338" => {
3278             desc => "Contrast/Bolus Ingredient Code Sequence",
3279             vr => { SQ => "1" }
3280             },
3281             "0018,9340" => {
3282             desc => "Contrast Administration Profile Sequence",
3283             vr => { SQ => "1" }
3284             },
3285             "0018,9341" => {
3286             desc => "Contrast/Bolus Usage Sequence",
3287             vr => { SQ => "1" }
3288             },
3289             "0018,9342" => {
3290             desc => "Contrast/Bolus Agent Administered",
3291             vr => { CS => "1" }
3292             },
3293             "0018,9343" => {
3294             desc => "Contrast/Bolus Agent Detected",
3295             vr => { CS => "1" }
3296             },
3297             "0018,9344" => {
3298             desc => "Contrast/Bolus Agent Phase",
3299             vr => { CS => "1" }
3300             },
3301             "0018,9345" => {
3302             desc => "CTDIvol",
3303             vr => { FD => "1" }
3304             },
3305             "0018,9346" => {
3306             desc => "CTDI Phantom Type Code Sequence",
3307             vr => { SQ => "1" }
3308             },
3309             "0018,9351" => {
3310             desc => "Calcium Scoring Mass Factor Patient",
3311             vr => { FL => "1" }
3312             },
3313             "0018,9352" => {
3314             desc => "Calcium Scoring Mass Factor Device",
3315             vr => { FL => "3" }
3316             },
3317             "0018,9353" => {
3318             desc => "Energy Weighting Factor",
3319             vr => { FL => "1" }
3320             },
3321             "0018,9360" => {
3322             desc => "CT Additional X-Ray Source Sequence",
3323             vr => { SQ => "1" }
3324             },
3325             "0018,9401" => {
3326             desc => "Projection Pixel Calibration Sequence",
3327             vr => { SQ => "1" }
3328             },
3329             "0018,9402" => {
3330             desc => "Distance Source to Isocenter",
3331             vr => { FL => "1" }
3332             },
3333             "0018,9403" => {
3334             desc => "Distance Object to Table Top",
3335             vr => { FL => "1" }
3336             },
3337             "0018,9404" => {
3338             desc => "Object Pixel Spacing in Center of Beam",
3339             vr => { FL => "2" }
3340             },
3341             "0018,9405" => {
3342             desc => "Positioner Position Sequence",
3343             vr => { SQ => "1" }
3344             },
3345             "0018,9406" => {
3346             desc => "Table Position Sequence",
3347             vr => { SQ => "1" }
3348             },
3349             "0018,9407" => {
3350             desc => "Collimator Shape Sequence",
3351             vr => { SQ => "1" }
3352             },
3353             "0018,9412" => {
3354             desc => "XA/XRF Frame Characteristics Sequence",
3355             vr => { SQ => "1" }
3356             },
3357             "0018,9417" => {
3358             desc => "Frame Acquisition Sequence",
3359             vr => { SQ => "1" }
3360             },
3361             "0018,9420" => {
3362             desc => "X-Ray Receptor Type",
3363             vr => { CS => "1" }
3364             },
3365             "0018,9423" => {
3366             desc => "Acquisition Protocol Name",
3367             vr => { LO => "1" }
3368             },
3369             "0018,9424" => {
3370             desc => "Acquisition Protocol Description",
3371             vr => { LT => "1" }
3372             },
3373             "0018,9425" => {
3374             desc => "Contrast/Bolus Ingredient Opaque",
3375             vr => { CS => "1" }
3376             },
3377             "0018,9426" => {
3378             desc => "Distance Receptor Plane to Detector Housing",
3379             vr => { FL => "1" }
3380             },
3381             "0018,9427" => {
3382             desc => "Intensifier Active Shape",
3383             vr => { CS => "1" }
3384             },
3385             "0018,9428" => {
3386             desc => "Intensifier Active Dimension(s)",
3387             vr => { FL => "1-2" }
3388             },
3389             "0018,9429" => {
3390             desc => "Physical Detector Size",
3391             vr => { FL => "2" }
3392             },
3393             "0018,9430" => {
3394             desc => "Position of Isocenter Projection",
3395             vr => { US => "2" }
3396             },
3397             "0018,9432" => {
3398             desc => "Field of View Sequence",
3399             vr => { SQ => "1" }
3400             },
3401             "0018,9433" => {
3402             desc => "Field of View Description",
3403             vr => { LO => "1" }
3404             },
3405             "0018,9434" => {
3406             desc => "Exposure Control Sensing Regions Sequence",
3407             vr => { SQ => "1" }
3408             },
3409             "0018,9435" => {
3410             desc => "Exposure Control Sensing Region Shape",
3411             vr => { CS => "1" }
3412             },
3413             "0018,9436" => {
3414             desc => "Exposure Control Sensing Region Left Vertical Edge",
3415             vr => { SS => "1" }
3416             },
3417             "0018,9437" => {
3418             desc => "Exposure Control Sensing Region Right Vertical Edge",
3419             vr => { SS => "1" }
3420             },
3421             "0018,9438" => {
3422             desc => "Exposure Control Sensing Region Upper Horizontal Edge",
3423             vr => { SS => "1" }
3424             },
3425             "0018,9439" => {
3426             desc => "Exposure Control Sensing Region Lower Horizontal Edge",
3427             vr => { SS => "1" }
3428             },
3429             "0018,9440" => {
3430             desc => "Center of Circular Exposure Control Sensing Region",
3431             vr => { SS => "2" }
3432             },
3433             "0018,9441" => {
3434             desc => "Radius of Circular Exposure Control Sensing Region",
3435             vr => { US => "1" }
3436             },
3437             "0018,9442" => {
3438             desc => "Vertices of the Polygonal Exposure Control Sensing Region",
3439             vr => { SS => "2-n" }
3440             },
3441             "0018,9445" => {
3442             desc => "",
3443             vr => { },
3444             ret => 1
3445             },
3446             "0018,9447" => {
3447             desc => "Column Angulation (Patient)",
3448             vr => { FL => "1" }
3449             },
3450             "0018,9449" => {
3451             desc => "Beam Angle",
3452             vr => { FL => "1" }
3453             },
3454             "0018,9451" => {
3455             desc => "Frame Detector Parameters Sequence",
3456             vr => { SQ => "1" }
3457             },
3458             "0018,9452" => {
3459             desc => "Calculated Anatomy Thickness",
3460             vr => { FL => "1" }
3461             },
3462             "0018,9455" => {
3463             desc => "Calibration Sequence",
3464             vr => { SQ => "1" }
3465             },
3466             "0018,9456" => {
3467             desc => "Object Thickness Sequence",
3468             vr => { SQ => "1" }
3469             },
3470             "0018,9457" => {
3471             desc => "Plane Identification",
3472             vr => { CS => "1" }
3473             },
3474             "0018,9461" => {
3475             desc => "Field of View Dimension(s) in Float",
3476             vr => { FL => "1-2" }
3477             },
3478             "0018,9462" => {
3479             desc => "Isocenter Reference System Sequence",
3480             vr => { SQ => "1" }
3481             },
3482             "0018,9463" => {
3483             desc => "Positioner Isocenter Primary Angle",
3484             vr => { FL => "1" }
3485             },
3486             "0018,9464" => {
3487             desc => "Positioner Isocenter Secondary Angle",
3488             vr => { FL => "1" }
3489             },
3490             "0018,9465" => {
3491             desc => "Positioner Isocenter Detector Rotation Angle",
3492             vr => { FL => "1" }
3493             },
3494             "0018,9466" => {
3495             desc => "Table X Position to Isocenter",
3496             vr => { FL => "1" }
3497             },
3498             "0018,9467" => {
3499             desc => "Table Y Position to Isocenter",
3500             vr => { FL => "1" }
3501             },
3502             "0018,9468" => {
3503             desc => "Table Z Position to Isocenter",
3504             vr => { FL => "1" }
3505             },
3506             "0018,9469" => {
3507             desc => "Table Horizontal Rotation Angle",
3508             vr => { FL => "1" }
3509             },
3510             "0018,9470" => {
3511             desc => "Table Head Tilt Angle",
3512             vr => { FL => "1" }
3513             },
3514             "0018,9471" => {
3515             desc => "Table Cradle Tilt Angle",
3516             vr => { FL => "1" }
3517             },
3518             "0018,9472" => {
3519             desc => "Frame Display Shutter Sequence",
3520             vr => { SQ => "1" }
3521             },
3522             "0018,9473" => {
3523             desc => "Acquired Image Area Dose Product",
3524             vr => { FL => "1" }
3525             },
3526             "0018,9474" => {
3527             desc => "C-arm Positioner Tabletop Relationship",
3528             vr => { CS => "1" }
3529             },
3530             "0018,9476" => {
3531             desc => "X-Ray Geometry Sequence",
3532             vr => { SQ => "1" }
3533             },
3534             "0018,9477" => {
3535             desc => "Irradiation Event Identification Sequence",
3536             vr => { SQ => "1" }
3537             },
3538             "0018,9504" => {
3539             desc => "X-Ray 3D Frame Type Sequence",
3540             vr => { SQ => "1" }
3541             },
3542             "0018,9506" => {
3543             desc => "Contributing Sources Sequence",
3544             vr => { SQ => "1" }
3545             },
3546             "0018,9507" => {
3547             desc => "X-Ray 3D Acquisition Sequence",
3548             vr => { SQ => "1" }
3549             },
3550             "0018,9508" => {
3551             desc => "Primary Positioner Scan Arc",
3552             vr => { FL => "1" }
3553             },
3554             "0018,9509" => {
3555             desc => "Secondary Positioner Scan Arc",
3556             vr => { FL => "1" }
3557             },
3558             "0018,9510" => {
3559             desc => "Primary Positioner Scan Start Angle",
3560             vr => { FL => "1" }
3561             },
3562             "0018,9511" => {
3563             desc => "Secondary Positioner Scan Start Angle",
3564             vr => { FL => "1" }
3565             },
3566             "0018,9514" => {
3567             desc => "Primary Positioner Increment",
3568             vr => { FL => "1" }
3569             },
3570             "0018,9515" => {
3571             desc => "Secondary Positioner Increment",
3572             vr => { FL => "1" }
3573             },
3574             "0018,9516" => {
3575             desc => "Start Acquisition DateTime",
3576             vr => { DT => "1" }
3577             },
3578             "0018,9517" => {
3579             desc => "End Acquisition DateTime",
3580             vr => { DT => "1" }
3581             },
3582             "0018,9524" => {
3583             desc => "Application Name",
3584             vr => { LO => "1" }
3585             },
3586             "0018,9525" => {
3587             desc => "Application Version",
3588             vr => { LO => "1" }
3589             },
3590             "0018,9526" => {
3591             desc => "Application Manufacturer",
3592             vr => { LO => "1" }
3593             },
3594             "0018,9527" => {
3595             desc => "Algorithm Type",
3596             vr => { CS => "1" }
3597             },
3598             "0018,9528" => {
3599             desc => "Algorithm Description",
3600             vr => { LO => "1" }
3601             },
3602             "0018,9530" => {
3603             desc => "X-Ray 3D Reconstruction Sequence",
3604             vr => { SQ => "1" }
3605             },
3606             "0018,9531" => {
3607             desc => "Reconstruction Description",
3608             vr => { LO => "1" }
3609             },
3610             "0018,9538" => {
3611             desc => "Per Projection Acquisition Sequence",
3612             vr => { SQ => "1" }
3613             },
3614             "0018,9601" => {
3615             desc => "Diffusion b-matrix Sequence",
3616             vr => { SQ => "1" }
3617             },
3618             "0018,9602" => {
3619             desc => "Diffusion b-value XX",
3620             vr => { FD => "1" }
3621             },
3622             "0018,9603" => {
3623             desc => "Diffusion b-value XY",
3624             vr => { FD => "1" }
3625             },
3626             "0018,9604" => {
3627             desc => "Diffusion b-value XZ",
3628             vr => { FD => "1" }
3629             },
3630             "0018,9605" => {
3631             desc => "Diffusion b-value YY",
3632             vr => { FD => "1" }
3633             },
3634             "0018,9606" => {
3635             desc => "Diffusion b-value YZ",
3636             vr => { FD => "1" }
3637             },
3638             "0018,9607" => {
3639             desc => "Diffusion b-value ZZ",
3640             vr => { FD => "1" }
3641             },
3642             "0018,9701" => {
3643             desc => "Decay Correction DateTime",
3644             vr => { DT => "1" }
3645             },
3646             "0018,9715" => {
3647             desc => "Start Density Threshold",
3648             vr => { FD => "1" }
3649             },
3650             "0018,9716" => {
3651             desc => "Start Relative Density Difference Threshold",
3652             vr => { FD => "1" }
3653             },
3654             "0018,9717" => {
3655             desc => "Start Cardiac Trigger Count Threshold",
3656             vr => { FD => "1" }
3657             },
3658             "0018,9718" => {
3659             desc => "Start Respiratory Trigger Count Threshold",
3660             vr => { FD => "1" }
3661             },
3662             "0018,9719" => {
3663             desc => "Termination Counts Threshold",
3664             vr => { FD => "1" }
3665             },
3666             "0018,9720" => {
3667             desc => "Termination Density Threshold",
3668             vr => { FD => "1" }
3669             },
3670             "0018,9721" => {
3671             desc => "Termination Relative Density Threshold",
3672             vr => { FD => "1" }
3673             },
3674             "0018,9722" => {
3675             desc => "Termination Time Threshold",
3676             vr => { FD => "1" }
3677             },
3678             "0018,9723" => {
3679             desc => "Termination Cardiac Trigger Count Threshold",
3680             vr => { FD => "1" }
3681             },
3682             "0018,9724" => {
3683             desc => "Termination Respiratory Trigger Count Threshold",
3684             vr => { FD => "1" }
3685             },
3686             "0018,9725" => {
3687             desc => "Detector Geometry",
3688             vr => { CS => "1" }
3689             },
3690             "0018,9726" => {
3691             desc => "Transverse Detector Separation",
3692             vr => { FD => "1" }
3693             },
3694             "0018,9727" => {
3695             desc => "Axial Detector Dimension",
3696             vr => { FD => "1" }
3697             },
3698             "0018,9729" => {
3699             desc => "Radiopharmaceutical Agent Number",
3700             vr => { US => "1" }
3701             },
3702             "0018,9732" => {
3703             desc => "PET Frame Acquisition Sequence",
3704             vr => { SQ => "1" }
3705             },
3706             "0018,9733" => {
3707             desc => "PET Detector Motion Details Sequence",
3708             vr => { SQ => "1" }
3709             },
3710             "0018,9734" => {
3711             desc => "PET Table Dynamics Sequence",
3712             vr => { SQ => "1" }
3713             },
3714             "0018,9735" => {
3715             desc => "PET Position Sequence",
3716             vr => { SQ => "1" }
3717             },
3718             "0018,9736" => {
3719             desc => "PET Frame Correction Factors Sequence",
3720             vr => { SQ => "1" }
3721             },
3722             "0018,9737" => {
3723             desc => "Radiopharmaceutical Usage Sequence",
3724             vr => { SQ => "1" }
3725             },
3726             "0018,9738" => {
3727             desc => "Attenuation Correction Source",
3728             vr => { CS => "1" }
3729             },
3730             "0018,9739" => {
3731             desc => "Number of Iterations",
3732             vr => { US => "1" }
3733             },
3734             "0018,9740" => {
3735             desc => "Number of Subsets",
3736             vr => { US => "1" }
3737             },
3738             "0018,9749" => {
3739             desc => "PET Reconstruction Sequence",
3740             vr => { SQ => "1" }
3741             },
3742             "0018,9751" => {
3743             desc => "PET Frame Type Sequence",
3744             vr => { SQ => "1" }
3745             },
3746             "0018,9755" => {
3747             desc => "Time of Flight Information Used",
3748             vr => { CS => "1" }
3749             },
3750             "0018,9756" => {
3751             desc => "Reconstruction Type",
3752             vr => { CS => "1" }
3753             },
3754             "0018,9758" => {
3755             desc => "Decay Corrected ",
3756             vr => { CS => "1" }
3757             },
3758             "0018,9759" => {
3759             desc => "Attenuation Corrected ",
3760             vr => { CS => "1" }
3761             },
3762             "0018,9760" => {
3763             desc => "Scatter Corrected ",
3764             vr => { CS => "1" }
3765             },
3766             "0018,9761" => {
3767             desc => "Dead Time Corrected ",
3768             vr => { CS => "1" }
3769             },
3770             "0018,9762" => {
3771             desc => "Gantry Motion Corrected ",
3772             vr => { CS => "1" }
3773             },
3774             "0018,9763" => {
3775             desc => "Patient Motion Corrected ",
3776             vr => { CS => "1" }
3777             },
3778             "0018,9764" => {
3779             desc => "Count Loss Normalization Corrected",
3780             vr => { CS => "1" }
3781             },
3782             "0018,9765" => {
3783             desc => "Randoms Corrected",
3784             vr => { CS => "1" }
3785             },
3786             "0018,9766" => {
3787             desc => "Non-uniform Radial Sampling Corrected",
3788             vr => { CS => "1" }
3789             },
3790             "0018,9767" => {
3791             desc => "Sensitivity Calibrated",
3792             vr => { CS => "1" }
3793             },
3794             "0018,9768" => {
3795             desc => "Detector Normalization Correction",
3796             vr => { CS => "1" }
3797             },
3798             "0018,9769" => {
3799             desc => "Iterative Reconstruction Method ",
3800             vr => { CS => "1" }
3801             },
3802             "0018,9770" => {
3803             desc => "Attenuation Correction Temporal Relationship",
3804             vr => { CS => "1" }
3805             },
3806             "0018,9771" => {
3807             desc => "Patient Physiological State Sequence",
3808             vr => { SQ => "1" }
3809             },
3810             "0018,9772" => {
3811             desc => "Patient Physiological State Code Sequence",
3812             vr => { SQ => "1" }
3813             },
3814             "0018,9801" => {
3815             desc => "Depth(s) of Focus",
3816             vr => { FD => "1-n" }
3817             },
3818             "0018,9803" => {
3819             desc => "Excluded Intervals Sequence",
3820             vr => { SQ => "1" }
3821             },
3822             "0018,9804" => {
3823             desc => "Exclusion Start Datetime",
3824             vr => { DT => "1" }
3825             },
3826             "0018,9805" => {
3827             desc => "Exclusion Duration",
3828             vr => { FD => "1" }
3829             },
3830             "0018,9806" => {
3831             desc => "US Image Description Sequence",
3832             vr => { SQ => "1" }
3833             },
3834             "0018,9807" => {
3835             desc => "Image Data Type Sequence",
3836             vr => { SQ => "1" }
3837             },
3838             "0018,9808" => {
3839             desc => "Data Type",
3840             vr => { CS => "1" }
3841             },
3842             "0018,9809" => {
3843             desc => "Transducer Scan Pattern Code Sequence",
3844             vr => { SQ => "1" }
3845             },
3846             "0018,980b" => {
3847             desc => "Aliased Data Type",
3848             vr => { CS => "1" }
3849             },
3850             "0018,980c" => {
3851             desc => "Position Measuring Device Used",
3852             vr => { CS => "1" }
3853             },
3854             "0018,980d" => {
3855             desc => "Transducer Geometry Code Sequence",
3856             vr => { SQ => "1" }
3857             },
3858             "0018,980e" => {
3859             desc => "Transducer Beam Steering Code Sequence",
3860             vr => { SQ => "1" }
3861             },
3862             "0018,980f" => {
3863             desc => "Transducer Application Code Sequence",
3864             vr => { SQ => "1" }
3865             },
3866             "0018,a001" => {
3867             desc => "Contributing Equipment Sequence",
3868             vr => { SQ => "1" }
3869             },
3870             "0018,a002" => {
3871             desc => "Contribution Date Time",
3872             vr => { DT => "1" }
3873             },
3874             "0018,a003" => {
3875             desc => "Contribution Description",
3876             vr => { ST => "1" }
3877             },
3878             "0020,000d" => {
3879             desc => "Study Instance UID",
3880             vr => { UI => "1" }
3881             },
3882             "0020,000e" => {
3883             desc => "Series Instance UID",
3884             vr => { UI => "1" }
3885             },
3886             "0020,0010" => {
3887             desc => "Study ID",
3888             vr => { SH => "1" }
3889             },
3890             "0020,0011" => {
3891             desc => "Series Number",
3892             vr => { IS => "1" }
3893             },
3894             "0020,0012" => {
3895             desc => "Acquisition Number",
3896             vr => { IS => "1" }
3897             },
3898             "0020,0013" => {
3899             desc => "Instance Number",
3900             vr => { IS => "1" }
3901             },
3902             "0020,0014" => {
3903             desc => "Isotope Number",
3904             vr => { IS => "1" },
3905             ret => 1
3906             },
3907             "0020,0015" => {
3908             desc => "Phase Number",
3909             vr => { IS => "1" },
3910             ret => 1
3911             },
3912             "0020,0016" => {
3913             desc => "Interval Number",
3914             vr => { IS => "1" },
3915             ret => 1
3916             },
3917             "0020,0017" => {
3918             desc => "Time Slot Number",
3919             vr => { IS => "1" },
3920             ret => 1
3921             },
3922             "0020,0018" => {
3923             desc => "Angle Number",
3924             vr => { IS => "1" },
3925             ret => 1
3926             },
3927             "0020,0019" => {
3928             desc => "Item Number",
3929             vr => { IS => "1" }
3930             },
3931             "0020,0020" => {
3932             desc => "Patient Orientation",
3933             vr => { CS => "2" }
3934             },
3935             "0020,0022" => {
3936             desc => "Overlay Number",
3937             vr => { IS => "1" },
3938             ret => 1
3939             },
3940             "0020,0024" => {
3941             desc => "Curve Number",
3942             vr => { IS => "1" },
3943             ret => 1
3944             },
3945             "0020,0026" => {
3946             desc => "LUT Number",
3947             vr => { IS => "1" },
3948             ret => 1
3949             },
3950             "0020,0030" => {
3951             desc => "Image Position",
3952             vr => { DS => "3" },
3953             ret => 1
3954             },
3955             "0020,0032" => {
3956             desc => "Image Position (Patient)",
3957             vr => { DS => "3" }
3958             },
3959             "0020,0035" => {
3960             desc => "Image Orientation",
3961             vr => { DS => "6" },
3962             ret => 1
3963             },
3964             "0020,0037" => {
3965             desc => "Image Orientation (Patient)",
3966             vr => { DS => "6" }
3967             },
3968             "0020,0050" => {
3969             desc => "Location",
3970             vr => { DS => "1" },
3971             ret => 1
3972             },
3973             "0020,0052" => {
3974             desc => "Frame of Reference UID",
3975             vr => { UI => "1" }
3976             },
3977             "0020,0060" => {
3978             desc => "Laterality",
3979             vr => { CS => "1" }
3980             },
3981             "0020,0062" => {
3982             desc => "Image Laterality",
3983             vr => { CS => "1" }
3984             },
3985             "0020,0070" => {
3986             desc => "Image Geometry Type",
3987             vr => { LO => "1" },
3988             ret => 1
3989             },
3990             "0020,0080" => {
3991             desc => "Masking Image",
3992             vr => { CS => "1-n" },
3993             ret => 1
3994             },
3995             "0020,0100" => {
3996             desc => "Temporal Position Identifier",
3997             vr => { IS => "1" }
3998             },
3999             "0020,0105" => {
4000             desc => "Number of Temporal Positions",
4001             vr => { IS => "1" }
4002             },
4003             "0020,0110" => {
4004             desc => "Temporal Resolution",
4005             vr => { DS => "1" }
4006             },
4007             "0020,0200" => {
4008             desc => "Synchronization Frame of Reference UID",
4009             vr => { UI => "1" }
4010             },
4011             "0020,0242" => {
4012             desc => "SOP Instance UID of Concatenation Source",
4013             vr => { UI => "1" }
4014             },
4015             "0020,1000" => {
4016             desc => "Series in Study",
4017             vr => { IS => "1" },
4018             ret => 1
4019             },
4020             "0020,1001" => {
4021             desc => "Acquisitions in Series",
4022             vr => { IS => "1" },
4023             ret => 1
4024             },
4025             "0020,1002" => {
4026             desc => "Images in Acquisition",
4027             vr => { IS => "1" }
4028             },
4029             "0020,1003" => {
4030             desc => "Images in Series",
4031             vr => { IS => "1" },
4032             ret => 1
4033             },
4034             "0020,1004" => {
4035             desc => "Acquisitions in Study",
4036             vr => { IS => "1" },
4037             ret => 1
4038             },
4039             "0020,1005" => {
4040             desc => "Images in Study",
4041             vr => { IS => "1" },
4042             ret => 1
4043             },
4044             "0020,1020" => {
4045             desc => "Reference",
4046             vr => { CS => "1-n" },
4047             ret => 1
4048             },
4049             "0020,1040" => {
4050             desc => "Position Reference Indicator",
4051             vr => { LO => "1" }
4052             },
4053             "0020,1041" => {
4054             desc => "Slice Location",
4055             vr => { DS => "1" }
4056             },
4057             "0020,1070" => {
4058             desc => "Other Study Numbers",
4059             vr => { IS => "1-n" },
4060             ret => 1
4061             },
4062             "0020,1200" => {
4063             desc => "Number of Patient Related Studies",
4064             vr => { IS => "1" }
4065             },
4066             "0020,1202" => {
4067             desc => "Number of Patient Related Series",
4068             vr => { IS => "1" }
4069             },
4070             "0020,1204" => {
4071             desc => "Number of Patient Related Instances",
4072             vr => { IS => "1" }
4073             },
4074             "0020,1206" => {
4075             desc => "Number of Study Related Series",
4076             vr => { IS => "1" }
4077             },
4078             "0020,1208" => {
4079             desc => "Number of Study Related Instances",
4080             vr => { IS => "1" }
4081             },
4082             "0020,1209" => {
4083             desc => "Number of Series Related Instances",
4084             vr => { IS => "1" }
4085             },
4086             "0020,31xx" => {
4087             desc => "Source Image IDs",
4088             vr => { CS => "1-n" },
4089             ret => 1
4090             },
4091             "0020,3401" => {
4092             desc => "Modifying Device ID",
4093             vr => { CS => "1" },
4094             ret => 1
4095             },
4096             "0020,3402" => {
4097             desc => "Modified Image ID",
4098             vr => { CS => "1" },
4099             ret => 1
4100             },
4101             "0020,3403" => {
4102             desc => "Modified Image Date",
4103             vr => { DA => "1" },
4104             ret => 1
4105             },
4106             "0020,3404" => {
4107             desc => "Modifying Device Manufacturer",
4108             vr => { LO => "1" },
4109             ret => 1
4110             },
4111             "0020,3405" => {
4112             desc => "Modified Image Time",
4113             vr => { TM => "1" },
4114             ret => 1
4115             },
4116             "0020,3406" => {
4117             desc => "Modified Image Description",
4118             vr => { LO => "1" },
4119             ret => 1
4120             },
4121             "0020,4000" => {
4122             desc => "Image Comments",
4123             vr => { LT => "1" }
4124             },
4125             "0020,5000" => {
4126             desc => "Original Image Identification",
4127             vr => { AT => "1-n" },
4128             ret => 1
4129             },
4130             "0020,5002" => {
4131             desc => "Original Image Identification Nomenclature",
4132             vr => { CS => "1-n" },
4133             ret => 1
4134             },
4135             "0020,9056" => {
4136             desc => "Stack ID",
4137             vr => { SH => "1" }
4138             },
4139             "0020,9057" => {
4140             desc => "In-Stack Position Number",
4141             vr => { UL => "1" }
4142             },
4143             "0020,9071" => {
4144             desc => "Frame Anatomy Sequence",
4145             vr => { SQ => "1" }
4146             },
4147             "0020,9072" => {
4148             desc => "Frame Laterality",
4149             vr => { CS => "1" }
4150             },
4151             "0020,9111" => {
4152             desc => "Frame Content Sequence",
4153             vr => { SQ => "1" }
4154             },
4155             "0020,9113" => {
4156             desc => "Plane Position Sequence",
4157             vr => { SQ => "1" }
4158             },
4159             "0020,9116" => {
4160             desc => "Plane Orientation Sequence",
4161             vr => { SQ => "1" }
4162             },
4163             "0020,9128" => {
4164             desc => "Temporal Position Index",
4165             vr => { UL => "1" }
4166             },
4167             "0020,9153" => {
4168             desc => "Nominal Cardiac Trigger Delay Time",
4169             vr => { FD => "1" }
4170             },
4171             "0020,9156" => {
4172             desc => "Frame Acquisition Number",
4173             vr => { US => "1" }
4174             },
4175             "0020,9157" => {
4176             desc => "Dimension Index Values",
4177             vr => { UL => "1-n" }
4178             },
4179             "0020,9158" => {
4180             desc => "Frame Comments",
4181             vr => { LT => "1" }
4182             },
4183             "0020,9161" => {
4184             desc => "Concatenation UID",
4185             vr => { UI => "1" }
4186             },
4187             "0020,9162" => {
4188             desc => "In-concatenation Number",
4189             vr => { US => "1" }
4190             },
4191             "0020,9163" => {
4192             desc => "In-concatenation Total Number",
4193             vr => { US => "1" }
4194             },
4195             "0020,9164" => {
4196             desc => "Dimension Organization UID",
4197             vr => { UI => "1" }
4198             },
4199             "0020,9165" => {
4200             desc => "Dimension Index Pointer",
4201             vr => { AT => "1" }
4202             },
4203             "0020,9167" => {
4204             desc => "Functional Group Pointer",
4205             vr => { AT => "1" }
4206             },
4207             "0020,9213" => {
4208             desc => "Dimension Index Private Creator",
4209             vr => { LO => "1" }
4210             },
4211             "0020,9221" => {
4212             desc => "Dimension Organization Sequence",
4213             vr => { SQ => "1" }
4214             },
4215             "0020,9222" => {
4216             desc => "Dimension Index Sequence",
4217             vr => { SQ => "1" }
4218             },
4219             "0020,9228" => {
4220             desc => "Concatenation Frame Offset Number",
4221             vr => { UL => "1" }
4222             },
4223             "0020,9238" => {
4224             desc => "Functional Group Private Creator",
4225             vr => { LO => "1" }
4226             },
4227             "0020,9241" => {
4228             desc => "Nominal Percentage of Cardiac Phase",
4229             vr => { FL => "1" }
4230             },
4231             "0020,9245" => {
4232             desc => "Nominal Percentage of Respiratory Phase",
4233             vr => { FL => "1" }
4234             },
4235             "0020,9246" => {
4236             desc => "Starting Respiratory Amplitude",
4237             vr => { FL => "1" }
4238             },
4239             "0020,9247" => {
4240             desc => "Starting Respiratory Phase",
4241             vr => { CS => "1" }
4242             },
4243             "0020,9248" => {
4244             desc => "Ending Respiratory Amplitude",
4245             vr => { FL => "1" }
4246             },
4247             "0020,9249" => {
4248             desc => "Ending Respiratory Phase",
4249             vr => { CS => "1" }
4250             },
4251             "0020,9250" => {
4252             desc => "Respiratory Trigger Type",
4253             vr => { CS => "1" }
4254             },
4255             "0020,9251" => {
4256             desc => "R - R Interval Time Nominal",
4257             vr => { FD => "1" }
4258             },
4259             "0020,9252" => {
4260             desc => "Actual Cardiac Trigger Delay Time",
4261             vr => { FD => "1" }
4262             },
4263             "0020,9253" => {
4264             desc => "Respiratory Synchronization Sequence",
4265             vr => { SQ => "1" }
4266             },
4267             "0020,9254" => {
4268             desc => "Respiratory Interval Time",
4269             vr => { FD => "1" }
4270             },
4271             "0020,9255" => {
4272             desc => "Nominal Respiratory Trigger Delay Time",
4273             vr => { FD => "1" }
4274             },
4275             "0020,9256" => {
4276             desc => "Respiratory Trigger Delay Threshold",
4277             vr => { FD => "1" }
4278             },
4279             "0020,9257" => {
4280             desc => "Actual Respiratory Trigger Delay Time",
4281             vr => { FD => "1" }
4282             },
4283             "0020,9301" => {
4284             desc => "Image Position (Volume)",
4285             vr => { FD => "3" }
4286             },
4287             "0020,9302" => {
4288             desc => "Image Orientation (Volume)",
4289             vr => { FD => "6" }
4290             },
4291             "0020,9307" => {
4292             desc => "Ultrasound Acquisition Geometry",
4293             vr => { CS => "1" }
4294             },
4295             "0020,9308" => {
4296             desc => "Apex Position",
4297             vr => { FD => "3" }
4298             },
4299             "0020,9309" => {
4300             desc => "Volume to Transducer Mapping Matrix",
4301             vr => { FD => "16" }
4302             },
4303             "0020,930a" => {
4304             desc => "Volume to Table Mapping Matrix",
4305             vr => { FD => "16" }
4306             },
4307             "0020,930c" => {
4308             desc => "Patient Frame of Reference Source",
4309             vr => { CS => "1" }
4310             },
4311             "0020,930d" => {
4312             desc => "Temporal Position Time Offset",
4313             vr => { FD => "1" }
4314             },
4315             "0020,930e" => {
4316             desc => "Plane Position (Volume) Sequence",
4317             vr => { SQ => "1" }
4318             },
4319             "0020,930f" => {
4320             desc => "Plane Orientation (Volume) Sequence",
4321             vr => { SQ => "1" }
4322             },
4323             "0020,9310" => {
4324             desc => "Temporal Position Sequence",
4325             vr => { SQ => "1" }
4326             },
4327             "0020,9311" => {
4328             desc => "Dimension Organization Type",
4329             vr => { CS => "1" }
4330             },
4331             "0020,9312" => {
4332             desc => "Volume Frame of Reference UID",
4333             vr => { UI => "1" }
4334             },
4335             "0020,9313" => {
4336             desc => "Table Frame of Reference UID",
4337             vr => { UI => "1" }
4338             },
4339             "0020,9421" => {
4340             desc => "Dimension Description Label",
4341             vr => { LO => "1" }
4342             },
4343             "0020,9450" => {
4344             desc => "Patient Orientation in Frame Sequence",
4345             vr => { SQ => "1" }
4346             },
4347             "0020,9453" => {
4348             desc => "Frame Label",
4349             vr => { LO => "1" }
4350             },
4351             "0020,9518" => {
4352             desc => "Acquisition Index",
4353             vr => { US => "1-n" }
4354             },
4355             "0020,9529" => {
4356             desc => "Contributing SOP Instances Reference Sequence",
4357             vr => { SQ => "1" }
4358             },
4359             "0020,9536" => {
4360             desc => "Reconstruction Index",
4361             vr => { US => "1" }
4362             },
4363             "0022,0001" => {
4364             desc => "Light Path Filter Pass-Through Wavelength",
4365             vr => { US => "1" }
4366             },
4367             "0022,0002" => {
4368             desc => "Light Path Filter Pass Band",
4369             vr => { US => "2" }
4370             },
4371             "0022,0003" => {
4372             desc => "Image Path Filter Pass-Through Wavelength",
4373             vr => { US => "1" }
4374             },
4375             "0022,0004" => {
4376             desc => "Image Path Filter Pass Band",
4377             vr => { US => "2" }
4378             },
4379             "0022,0005" => {
4380             desc => "Patient Eye Movement Commanded",
4381             vr => { CS => "1" }
4382             },
4383             "0022,0006" => {
4384             desc => "Patient Eye Movement Command Code Sequence",
4385             vr => { SQ => "1" }
4386             },
4387             "0022,0007" => {
4388             desc => "Spherical Lens Power",
4389             vr => { FL => "1" }
4390             },
4391             "0022,0008" => {
4392             desc => "Cylinder Lens Power",
4393             vr => { FL => "1" }
4394             },
4395             "0022,0009" => {
4396             desc => "Cylinder Axis",
4397             vr => { FL => "1" }
4398             },
4399             "0022,000a" => {
4400             desc => "Emmetropic Magnification",
4401             vr => { FL => "1" }
4402             },
4403             "0022,000b" => {
4404             desc => "Intra Ocular Pressure",
4405             vr => { FL => "1" }
4406             },
4407             "0022,000c" => {
4408             desc => "Horizontal Field of View",
4409             vr => { FL => "1" }
4410             },
4411             "0022,000d" => {
4412             desc => "Pupil Dilated",
4413             vr => { CS => "1" }
4414             },
4415             "0022,000e" => {
4416             desc => "Degree of Dilation",
4417             vr => { FL => "1" }
4418             },
4419             "0022,0010" => {
4420             desc => "Stereo Baseline Angle",
4421             vr => { FL => "1" }
4422             },
4423             "0022,0011" => {
4424             desc => "Stereo Baseline Displacement",
4425             vr => { FL => "1" }
4426             },
4427             "0022,0012" => {
4428             desc => "Stereo Horizontal Pixel Offset",
4429             vr => { FL => "1" }
4430             },
4431             "0022,0013" => {
4432             desc => "Stereo Vertical Pixel Offset",
4433             vr => { FL => "1" }
4434             },
4435             "0022,0014" => {
4436             desc => "Stereo Rotation",
4437             vr => { FL => "1" }
4438             },
4439             "0022,0015" => {
4440             desc => "Acquisition Device Type Code Sequence",
4441             vr => { SQ => "1" }
4442             },
4443             "0022,0016" => {
4444             desc => "Illumination Type Code Sequence",
4445             vr => { SQ => "1" }
4446             },
4447             "0022,0017" => {
4448             desc => "Light Path Filter Type Stack Code Sequence",
4449             vr => { SQ => "1" }
4450             },
4451             "0022,0018" => {
4452             desc => "Image Path Filter Type Stack Code Sequence",
4453             vr => { SQ => "1" }
4454             },
4455             "0022,0019" => {
4456             desc => "Lenses Code Sequence",
4457             vr => { SQ => "1" }
4458             },
4459             "0022,001a" => {
4460             desc => "Channel Description Code Sequence",
4461             vr => { SQ => "1" }
4462             },
4463             "0022,001b" => {
4464             desc => "Refractive State Sequence",
4465             vr => { SQ => "1" }
4466             },
4467             "0022,001c" => {
4468             desc => "Mydriatic Agent Code Sequence",
4469             vr => { SQ => "1" }
4470             },
4471             "0022,001d" => {
4472             desc => "Relative Image Position Code Sequence",
4473             vr => { SQ => "1" }
4474             },
4475             "0022,0020" => {
4476             desc => "Stereo Pairs Sequence",
4477             vr => { SQ => "1" }
4478             },
4479             "0022,0021" => {
4480             desc => "Left Image Sequence",
4481             vr => { SQ => "1" }
4482             },
4483             "0022,0022" => {
4484             desc => "Right Image Sequence",
4485             vr => { SQ => "1" }
4486             },
4487             "0022,0030" => {
4488             desc => "Axial Length of the Eye",
4489             vr => { FL => "1" }
4490             },
4491             "0022,0031" => {
4492             desc => "Ophthalmic Frame Location Sequence",
4493             vr => { SQ => "1" }
4494             },
4495             "0022,0032" => {
4496             desc => "Reference Coordinates",
4497             vr => { FL => "2-2n" }
4498             },
4499             "0022,0035" => {
4500             desc => "Depth Spatial Resolution",
4501             vr => { FL => "1" }
4502             },
4503             "0022,0036" => {
4504             desc => "Maximum Depth Distortion",
4505             vr => { FL => "1" }
4506             },
4507             "0022,0037" => {
4508             desc => "Along-scan Spatial Resolution",
4509             vr => { FL => "1" }
4510             },
4511             "0022,0038" => {
4512             desc => "Maximum Along-scan Distortion",
4513             vr => { FL => "1" }
4514             },
4515             "0022,0039" => {
4516             desc => "Ophthalmic Image Orientation",
4517             vr => { CS => "1" }
4518             },
4519             "0022,0041" => {
4520             desc => "Depth of Transverse Image",
4521             vr => { FL => "1" }
4522             },
4523             "0022,0042" => {
4524             desc => "Mydriatic Agent Concentration Units Sequence",
4525             vr => { SQ => "1" }
4526             },
4527             "0022,0048" => {
4528             desc => "Across-scan Spatial Resolution",
4529             vr => { FL => "1" }
4530             },
4531             "0022,0049" => {
4532             desc => "Maximum Across-scan Distortion",
4533             vr => { FL => "1" }
4534             },
4535             "0022,004e" => {
4536             desc => "Mydriatic Agent Concentration",
4537             vr => { DS => "1" }
4538             },
4539             "0022,0055" => {
4540             desc => "Illumination Wave Length",
4541             vr => { FL => "1" }
4542             },
4543             "0022,0056" => {
4544             desc => "Illumination Power",
4545             vr => { FL => "1" }
4546             },
4547             "0022,0057" => {
4548             desc => "Illumination Bandwidth",
4549             vr => { FL => "1" }
4550             },
4551             "0022,0058" => {
4552             desc => "Mydriatic Agent Sequence",
4553             vr => { SQ => "1" }
4554             },
4555             "0028,0002" => {
4556             desc => "Samples per Pixel",
4557             vr => { US => "1" }
4558             },
4559             "0028,0003" => {
4560             desc => "Samples per Pixel Used",
4561             vr => { US => "1" }
4562             },
4563             "0028,0004" => {
4564             desc => "Photometric Interpretation",
4565             vr => { CS => "1" }
4566             },
4567             "0028,0005" => {
4568             desc => "Image Dimensions",
4569             vr => { US => "1" },
4570             ret => 1
4571             },
4572             "0028,0006" => {
4573             desc => "Planar Configuration",
4574             vr => { US => "1" }
4575             },
4576             "0028,0008" => {
4577             desc => "Number of Frames",
4578             vr => { IS => "1" }
4579             },
4580             "0028,0009" => {
4581             desc => "Frame Increment Pointer",
4582             vr => { AT => "1-n" }
4583             },
4584             "0028,000a" => {
4585             desc => "Frame Dimension Pointer",
4586             vr => { AT => "1-n" }
4587             },
4588             "0028,0010" => {
4589             desc => "Rows",
4590             vr => { US => "1" }
4591             },
4592             "0028,0011" => {
4593             desc => "Columns",
4594             vr => { US => "1" }
4595             },
4596             "0028,0012" => {
4597             desc => "Planes",
4598             vr => { US => "1" },
4599             ret => 1
4600             },
4601             "0028,0014" => {
4602             desc => "Ultrasound Color Data Present",
4603             vr => { US => "1" }
4604             },
4605             "0028,0020" => {
4606             desc => "",
4607             vr => { },
4608             ret => 1
4609             },
4610             "0028,0030" => {
4611             desc => "Pixel Spacing",
4612             vr => { DS => "2" }
4613             },
4614             "0028,0031" => {
4615             desc => "Zoom Factor",
4616             vr => { DS => "2" }
4617             },
4618             "0028,0032" => {
4619             desc => "Zoom Center",
4620             vr => { DS => "2" }
4621             },
4622             "0028,0034" => {
4623             desc => "Pixel Aspect Ratio",
4624             vr => { IS => "2" }
4625             },
4626             "0028,0040" => {
4627             desc => "Image Format",
4628             vr => { CS => "1" },
4629             ret => 1
4630             },
4631             "0028,0050" => {
4632             desc => "Manipulated Image",
4633             vr => { LO => "1-n" },
4634             ret => 1
4635             },
4636             "0028,0051" => {
4637             desc => "Corrected Image",
4638             vr => { CS => "1-n" }
4639             },
4640             "0028,005f" => {
4641             desc => "Compression Recognition Code",
4642             vr => { LO => "1" },
4643             ret => 1
4644             },
4645             "0028,0060" => {
4646             desc => "Compression Code",
4647             vr => { CS => "1" },
4648             ret => 1
4649             },
4650             "0028,0061" => {
4651             desc => "Compression Originator",
4652             vr => { SH => "1" },
4653             ret => 1
4654             },
4655             "0028,0062" => {
4656             desc => "Compression Label",
4657             vr => { LO => "1" },
4658             ret => 1
4659             },
4660             "0028,0063" => {
4661             desc => "Compression Description",
4662             vr => { SH => "1" },
4663             ret => 1
4664             },
4665             "0028,0065" => {
4666             desc => "Compression Sequence",
4667             vr => { CS => "1-n" },
4668             ret => 1
4669             },
4670             "0028,0066" => {
4671             desc => "Compression Step Pointers",
4672             vr => { AT => "1-n" },
4673             ret => 1
4674             },
4675             "0028,0068" => {
4676             desc => "Repeat Interval",
4677             vr => { US => "1" },
4678             ret => 1
4679             },
4680             "0028,0069" => {
4681             desc => "Bits Grouped",
4682             vr => { US => "1" },
4683             ret => 1
4684             },
4685             "0028,0070" => {
4686             desc => "Perimeter Table",
4687             vr => { US => "1-n" },
4688             ret => 1
4689             },
4690             "0028,0071" => {
4691             desc => "Perimeter Value",
4692             vr => { SS => "1", US => "1" },
4693             ret => 1
4694             },
4695             "0028,0080" => {
4696             desc => "Predictor Rows",
4697             vr => { US => "1" },
4698             ret => 1
4699             },
4700             "0028,0081" => {
4701             desc => "Predictor Columns",
4702             vr => { US => "1" },
4703             ret => 1
4704             },
4705             "0028,0082" => {
4706             desc => "Predictor Constants",
4707             vr => { US => "1-n" },
4708             ret => 1
4709             },
4710             "0028,0090" => {
4711             desc => "Blocked Pixels",
4712             vr => { CS => "1" },
4713             ret => 1
4714             },
4715             "0028,0091" => {
4716             desc => "Block Rows",
4717             vr => { US => "1" },
4718             ret => 1
4719             },
4720             "0028,0092" => {
4721             desc => "Block Columns",
4722             vr => { US => "1" },
4723             ret => 1
4724             },
4725             "0028,0093" => {
4726             desc => "Row Overlap",
4727             vr => { US => "1" },
4728             ret => 1
4729             },
4730             "0028,0094" => {
4731             desc => "Column Overlap",
4732             vr => { US => "1" },
4733             ret => 1
4734             },
4735             "0028,0100" => {
4736             desc => "Bits Allocated",
4737             vr => { US => "1" }
4738             },
4739             "0028,0101" => {
4740             desc => "Bits Stored",
4741             vr => { US => "1" }
4742             },
4743             "0028,0102" => {
4744             desc => "High Bit",
4745             vr => { US => "1" }
4746             },
4747             "0028,0103" => {
4748             desc => "Pixel Representation",
4749             vr => { US => "1" }
4750             },
4751             "0028,0104" => {
4752             desc => "Smallest Valid Pixel Value",
4753             vr => { SS => "1", US => "1" },
4754             ret => 1
4755             },
4756             "0028,0105" => {
4757             desc => "Largest Valid Pixel Value",
4758             vr => { SS => "1", US => "1" },
4759             ret => 1
4760             },
4761             "0028,0106" => {
4762             desc => "Smallest Image Pixel Value",
4763             vr => { SS => "1", US => "1" }
4764             },
4765             "0028,0107" => {
4766             desc => "Largest Image Pixel Value",
4767             vr => { SS => "1", US => "1" }
4768             },
4769             "0028,0108" => {
4770             desc => "Smallest Pixel Value in Series",
4771             vr => { SS => "1", US => "1" }
4772             },
4773             "0028,0109" => {
4774             desc => "Largest Pixel Value in Series",
4775             vr => { SS => "1", US => "1" }
4776             },
4777             "0028,0110" => {
4778             desc => "Smallest Image Pixel Value in Plane",
4779             vr => { SS => "1", US => "1" },
4780             ret => 1
4781             },
4782             "0028,0111" => {
4783             desc => "Largest Image Pixel Value in Plane",
4784             vr => { SS => "1", US => "1" },
4785             ret => 1
4786             },
4787             "0028,0120" => {
4788             desc => "Pixel Padding Value",
4789             vr => { SS => "1", US => "1" }
4790             },
4791             "0028,0121" => {
4792             desc => "Pixel Padding Range Limit",
4793             vr => { SS => "1", US => "1" }
4794             },
4795             "0028,0200" => {
4796             desc => "Image Location",
4797             vr => { US => "1" },
4798             ret => 1
4799             },
4800             "0028,0300" => {
4801             desc => "Quality Control Image",
4802             vr => { CS => "1" }
4803             },
4804             "0028,0301" => {
4805             desc => "Burned In Annotation",
4806             vr => { CS => "1" }
4807             },
4808             "0028,0400" => {
4809             desc => "Transform Label",
4810             vr => { LO => "1" },
4811             ret => 1
4812             },
4813             "0028,0401" => {
4814             desc => "Transform Version Number",
4815             vr => { LO => "1" },
4816             ret => 1
4817             },
4818             "0028,0402" => {
4819             desc => "Number of Transform Steps",
4820             vr => { US => "1" },
4821             ret => 1
4822             },
4823             "0028,0403" => {
4824             desc => "Sequence of Compressed Data",
4825             vr => { LO => "1-n" },
4826             ret => 1
4827             },
4828             "0028,0404" => {
4829             desc => "Details of Coefficients",
4830             vr => { AT => "1-n" },
4831             ret => 1
4832             },
4833             "0028,04x0" => {
4834             desc => "Rows For Nth Order Coefficients",
4835             vr => { US => "1" },
4836             ret => 1
4837             },
4838             "0028,04x1" => {
4839             desc => "Columns For Nth Order Coefficients",
4840             vr => { US => "1" },
4841             ret => 1
4842             },
4843             "0028,04x2" => {
4844             desc => "Coefficient Coding",
4845             vr => { LO => "1-n" },
4846             ret => 1
4847             },
4848             "0028,04x3" => {
4849             desc => "Coefficient Coding Pointers",
4850             vr => { AT => "1-n" },
4851             ret => 1
4852             },
4853             "0028,0700" => {
4854             desc => "DCT Label",
4855             vr => { LO => "1" },
4856             ret => 1
4857             },
4858             "0028,0701" => {
4859             desc => "Data Block Description",
4860             vr => { CS => "1-n" },
4861             ret => 1
4862             },
4863             "0028,0702" => {
4864             desc => "Data Block",
4865             vr => { AT => "1-n" },
4866             ret => 1
4867             },
4868             "0028,0710" => {
4869             desc => "Normalization Factor Format",
4870             vr => { US => "1" },
4871             ret => 1
4872             },
4873             "0028,0720" => {
4874             desc => "Zonal Map Number Format",
4875             vr => { US => "1" },
4876             ret => 1
4877             },
4878             "0028,0721" => {
4879             desc => "Zonal Map Location",
4880             vr => { AT => "1-n" },
4881             ret => 1
4882             },
4883             "0028,0722" => {
4884             desc => "Zonal Map Format",
4885             vr => { US => "1" },
4886             ret => 1
4887             },
4888             "0028,0730" => {
4889             desc => "Adaptive Map Format",
4890             vr => { US => "1" },
4891             ret => 1
4892             },
4893             "0028,0740" => {
4894             desc => "Code Number Format",
4895             vr => { US => "1" },
4896             ret => 1
4897             },
4898             "0028,08x0" => {
4899             desc => "Code Label",
4900             vr => { CS => "1-n" },
4901             ret => 1
4902             },
4903             "0028,08x2" => {
4904             desc => "Number of Tables",
4905             vr => { US => "1" },
4906             ret => 1
4907             },
4908             "0028,08x3" => {
4909             desc => "Code Table Location",
4910             vr => { AT => "1-n" },
4911             ret => 1
4912             },
4913             "0028,08x4" => {
4914             desc => "Bits For Code Word",
4915             vr => { US => "1" },
4916             ret => 1
4917             },
4918             "0028,08x8" => {
4919             desc => "Image Data Location",
4920             vr => { AT => "1-n" },
4921             ret => 1
4922             },
4923             "0028,0a02" => {
4924             desc => "Pixel Spacing Calibration Type",
4925             vr => { CS => "1" }
4926             },
4927             "0028,0a04" => {
4928             desc => "Pixel Spacing Calibration Description",
4929             vr => { LO => "1" }
4930             },
4931             "0028,1040" => {
4932             desc => "Pixel Intensity Relationship",
4933             vr => { CS => "1" }
4934             },
4935             "0028,1041" => {
4936             desc => "Pixel Intensity Relationship Sign",
4937             vr => { SS => "1" }
4938             },
4939             "0028,1050" => {
4940             desc => "Window Center",
4941             vr => { DS => "1-n" }
4942             },
4943             "0028,1051" => {
4944             desc => "Window Width",
4945             vr => { DS => "1-n" }
4946             },
4947             "0028,1052" => {
4948             desc => "Rescale Intercept",
4949             vr => { DS => "1" }
4950             },
4951             "0028,1053" => {
4952             desc => "Rescale Slope",
4953             vr => { DS => "1" }
4954             },
4955             "0028,1054" => {
4956             desc => "Rescale Type",
4957             vr => { LO => "1" }
4958             },
4959             "0028,1055" => {
4960             desc => "Window Center & Width Explanation",
4961             vr => { LO => "1-n" }
4962             },
4963             "0028,1056" => {
4964             desc => "VOI LUT Function",
4965             vr => { CS => "1" }
4966             },
4967             "0028,1080" => {
4968             desc => "Gray Scale",
4969             vr => { CS => "1" },
4970             ret => 1
4971             },
4972             "0028,1090" => {
4973             desc => "Recommended Viewing Mode",
4974             vr => { CS => "1" }
4975             },
4976             "0028,1100" => {
4977             desc => "Gray Lookup Table Descriptor ",
4978             vr => { SS => "3", US => "3" },
4979             ret => 1
4980             },
4981             "0028,1101" => {
4982             desc => "Red Palette Color Lookup Table Descriptor ",
4983             vr => { SS => "3", US => "3" }
4984             },
4985             "0028,1102" => {
4986             desc => "Green Palette Color Lookup Table Descriptor ",
4987             vr => { SS => "3", US => "3" }
4988             },
4989             "0028,1103" => {
4990             desc => "Blue Palette Color Lookup Table Descriptor ",
4991             vr => { SS => "3", US => "3" }
4992             },
4993             "0028,1104" => {
4994             desc => "Alpha Palette Color Lookup Table Descriptor",
4995             vr => { US => "3" }
4996             },
4997             "0028,1111" => {
4998             desc => "Large Red Palette Color Lookup Table Descriptor ",
4999             vr => { SS => "4", US => "4" },
5000             ret => 1
5001             },
5002             "0028,1112" => {
5003             desc => "Large Green Palette Color Lookup Table Descriptor ",
5004             vr => { SS => "4", US => "4" },
5005             ret => 1
5006             },
5007             "0028,1113" => {
5008             desc => "Large Blue Palette Color Lookup Table Descriptor ",
5009             vr => { SS => "4", US => "4" },
5010             ret => 1
5011             },
5012             "0028,1199" => {
5013             desc => "Palette Color Lookup Table UID",
5014             vr => { UI => "1" }
5015             },
5016             "0028,1200" => {
5017             desc => "Gray Lookup Table Data",
5018             vr => { OW => "1", SS => "1-n", US => "1-n" },
5019             ret => 1
5020             },
5021             "0028,1201" => {
5022             desc => "Red Palette Color Lookup Table Data",
5023             vr => { OW => "1" }
5024             },
5025             "0028,1202" => {
5026             desc => "Green Palette Color Lookup Table Data",
5027             vr => { OW => "1" }
5028             },
5029             "0028,1203" => {
5030             desc => "Blue Palette Color Lookup Table Data",
5031             vr => { OW => "1" }
5032             },
5033             "0028,1204" => {
5034             desc => "Alpha Palette Color Lookup Table Data",
5035             vr => { OW => "1" }
5036             },
5037             "0028,1211" => {
5038             desc => "Large Red Palette Color Lookup Table Data",
5039             vr => { OW => "1" },
5040             ret => 1
5041             },
5042             "0028,1212" => {
5043             desc => "Large Green Palette Color Lookup Table Data",
5044             vr => { OW => "1" },
5045             ret => 1
5046             },
5047             "0028,1213" => {
5048             desc => "Large Blue Palette Color Lookup Table Data",
5049             vr => { OW => "1" },
5050             ret => 1
5051             },
5052             "0028,1214" => {
5053             desc => "Large Palette Color Lookup Table UID",
5054             vr => { UI => "1" },
5055             ret => 1
5056             },
5057             "0028,1221" => {
5058             desc => "Segmented Red Palette Color Lookup Table Data",
5059             vr => { OW => "1" }
5060             },
5061             "0028,1222" => {
5062             desc => "Segmented Green Palette Color Lookup Table Data",
5063             vr => { OW => "1" }
5064             },
5065             "0028,1223" => {
5066             desc => "Segmented Blue Palette Color Lookup Table Data",
5067             vr => { OW => "1" }
5068             },
5069             "0028,1300" => {
5070             desc => "Breast Implant Present",
5071             vr => { CS => "1" }
5072             },
5073             "0028,1350" => {
5074             desc => "Partial View",
5075             vr => { CS => "1" }
5076             },
5077             "0028,1351" => {
5078             desc => "Partial View Description",
5079             vr => { ST => "1" }
5080             },
5081             "0028,1352" => {
5082             desc => "Partial View Code Sequence",
5083             vr => { SQ => "1" }
5084             },
5085             "0028,135a" => {
5086             desc => "Spatial Locations Preserved",
5087             vr => { CS => "1" }
5088             },
5089             "0028,1401" => {
5090             desc => "Data Frame Assignment Sequence",
5091             vr => { SQ => "1" }
5092             },
5093             "0028,1402" => {
5094             desc => "Data Path Assignment",
5095             vr => { CS => "1" }
5096             },
5097             "0028,1403" => {
5098             desc => "Bits Mapped to Color Lookup Table",
5099             vr => { US => "1" }
5100             },
5101             "0028,1404" => {
5102             desc => "Blending LUT 1 Sequence",
5103             vr => { SQ => "1" }
5104             },
5105             "0028,1405" => {
5106             desc => "Blending LUT 1 Transfer Function",
5107             vr => { CS => "1" }
5108             },
5109             "0028,1406" => {
5110             desc => "Blending Weight Constant",
5111             vr => { FD => "1" }
5112             },
5113             "0028,1407" => {
5114             desc => "Blending Lookup Table Descriptor",
5115             vr => { US => "3" }
5116             },
5117             "0028,1408" => {
5118             desc => "Blending Lookup Table Data",
5119             vr => { OW => "1" }
5120             },
5121             "0028,140b" => {
5122             desc => "Enhanced Palette Color Lookup Table Sequence",
5123             vr => { SQ => "1" }
5124             },
5125             "0028,140c" => {
5126             desc => "Blending LUT 2 Sequence",
5127             vr => { SQ => "1" }
5128             },
5129             "0028,140d" => {
5130             desc => "Blending LUT 2 Transfer Function",
5131             vr => { CS => "1" }
5132             },
5133             "0028,140e" => {
5134             desc => "Data Path ID",
5135             vr => { CS => "1" }
5136             },
5137             "0028,140f" => {
5138             desc => "RGB LUT Transfer Function",
5139             vr => { CS => "1" }
5140             },
5141             "0028,1410" => {
5142             desc => "Alpha LUT Transfer Function",
5143             vr => { CS => "1" }
5144             },
5145             "0028,2000" => {
5146             desc => "ICC Profile",
5147             vr => { OB => "1" }
5148             },
5149             "0028,2110" => {
5150             desc => "Lossy Image Compression",
5151             vr => { CS => "1" }
5152             },
5153             "0028,2112" => {
5154             desc => "Lossy Image Compression Ratio",
5155             vr => { DS => "1-n" }
5156             },
5157             "0028,2114" => {
5158             desc => "Lossy Image Compression Method",
5159             vr => { CS => "1-n" }
5160             },
5161             "0028,3000" => {
5162             desc => "Modality LUT Sequence",
5163             vr => { SQ => "1" }
5164             },
5165             "0028,3002" => {
5166             desc => "LUT Descriptor",
5167             vr => { SS => "3", US => "3" }
5168             },
5169             "0028,3003" => {
5170             desc => "LUT Explanation",
5171             vr => { LO => "1" }
5172             },
5173             "0028,3004" => {
5174             desc => "Modality LUT Type",
5175             vr => { LO => "1" }
5176             },
5177             "0028,3006" => {
5178             desc => "LUT Data",
5179             vr => { OW => "1", US => "1-n" }
5180             },
5181             "0028,3010" => {
5182             desc => "VOI LUT Sequence",
5183             vr => { SQ => "1" }
5184             },
5185             "0028,3110" => {
5186             desc => "Softcopy VOI LUT Sequence",
5187             vr => { SQ => "1" }
5188             },
5189             "0028,4000" => {
5190             desc => "Image Presentation Comments",
5191             vr => { LT => "1" },
5192             ret => 1
5193             },
5194             "0028,5000" => {
5195             desc => "Bi-Plane Acquisition Sequence",
5196             vr => { SQ => "1" },
5197             ret => 1
5198             },
5199             "0028,6010" => {
5200             desc => "Representative Frame Number",
5201             vr => { US => "1" }
5202             },
5203             "0028,6020" => {
5204             desc => "Frame Numbers of Interest (FOI) ",
5205             vr => { US => "1-n" }
5206             },
5207             "0028,6022" => {
5208             desc => "Frame of Interest Description",
5209             vr => { LO => "1-n" }
5210             },
5211             "0028,6023" => {
5212             desc => "Frame of Interest Type",
5213             vr => { CS => "1-n" }
5214             },
5215             "0028,6030" => {
5216             desc => "Mask Pointer(s)",
5217             vr => { US => "1-n" },
5218             ret => 1
5219             },
5220             "0028,6040" => {
5221             desc => "R Wave Pointer",
5222             vr => { US => "1-n" }
5223             },
5224             "0028,6100" => {
5225             desc => "Mask Subtraction Sequence",
5226             vr => { SQ => "1" }
5227             },
5228             "0028,6101" => {
5229             desc => "Mask Operation",
5230             vr => { CS => "1" }
5231             },
5232             "0028,6102" => {
5233             desc => "Applicable Frame Range",
5234             vr => { US => "2-2n" }
5235             },
5236             "0028,6110" => {
5237             desc => "Mask Frame Numbers",
5238             vr => { US => "1-n" }
5239             },
5240             "0028,6112" => {
5241             desc => "Contrast Frame Averaging",
5242             vr => { US => "1" }
5243             },
5244             "0028,6114" => {
5245             desc => "Mask Sub-pixel Shift",
5246             vr => { FL => "2" }
5247             },
5248             "0028,6120" => {
5249             desc => "TID Offset",
5250             vr => { SS => "1" }
5251             },
5252             "0028,6190" => {
5253             desc => "Mask Operation Explanation",
5254             vr => { ST => "1" }
5255             },
5256             "0028,7fe0" => {
5257             desc => "Pixel Data Provider URL",
5258             vr => { UT => "1" }
5259             },
5260             "0028,9001" => {
5261             desc => "Data Point Rows",
5262             vr => { UL => "1" }
5263             },
5264             "0028,9002" => {
5265             desc => "Data Point Columns",
5266             vr => { UL => "1" }
5267             },
5268             "0028,9003" => {
5269             desc => "Signal Domain Columns",
5270             vr => { CS => "1" }
5271             },
5272             "0028,9099" => {
5273             desc => "Largest Monochrome Pixel Value",
5274             vr => { US => "1" },
5275             ret => 1
5276             },
5277             "0028,9108" => {
5278             desc => "Data Representation",
5279             vr => { CS => "1" }
5280             },
5281             "0028,9110" => {
5282             desc => "Pixel Measures Sequence",
5283             vr => { SQ => "1" }
5284             },
5285             "0028,9132" => {
5286             desc => "Frame VOI LUT Sequence",
5287             vr => { SQ => "1" }
5288             },
5289             "0028,9145" => {
5290             desc => "Pixel Value Transformation Sequence",
5291             vr => { SQ => "1" }
5292             },
5293             "0028,9235" => {
5294             desc => "Signal Domain Rows",
5295             vr => { CS => "1" }
5296             },
5297             "0028,9411" => {
5298             desc => "Display Filter Percentage",
5299             vr => { FL => "1" }
5300             },
5301             "0028,9415" => {
5302             desc => "Frame Pixel Shift Sequence",
5303             vr => { SQ => "1" }
5304             },
5305             "0028,9416" => {
5306             desc => "Subtraction Item ID",
5307             vr => { US => "1" }
5308             },
5309             "0028,9422" => {
5310             desc => "Pixel Intensity Relationship LUT Sequence",
5311             vr => { SQ => "1" }
5312             },
5313             "0028,9443" => {
5314             desc => "Frame Pixel Data Properties Sequence",
5315             vr => { SQ => "1" }
5316             },
5317             "0028,9444" => {
5318             desc => "Geometrical Properties",
5319             vr => { CS => "1" }
5320             },
5321             "0028,9445" => {
5322             desc => "Geometric Maximum Distortion",
5323             vr => { FL => "1" }
5324             },
5325             "0028,9446" => {
5326             desc => "Image Processing Applied",
5327             vr => { CS => "1-n" }
5328             },
5329             "0028,9454" => {
5330             desc => "Mask Selection Mode",
5331             vr => { CS => "1" }
5332             },
5333             "0028,9474" => {
5334             desc => "LUT Function",
5335             vr => { CS => "1" }
5336             },
5337             "0028,9478" => {
5338             desc => "Mask Visibility Percentage",
5339             vr => { FL => "1" }
5340             },
5341             "0028,9501" => {
5342             desc => "Pixel Shift Sequence",
5343             vr => { SQ => "1" }
5344             },
5345             "0028,9502" => {
5346             desc => "Region Pixel Shift Sequence",
5347             vr => { SQ => "1" }
5348             },
5349             "0028,9503" => {
5350             desc => "Vertices of the Region",
5351             vr => { SS => "2-2n" }
5352             },
5353             "0028,9505" => {
5354             desc => "Multi-frame Presentation Sequence",
5355             vr => { SQ => "1" }
5356             },
5357             "0028,9506" => {
5358             desc => "Pixel Shift Frame Range",
5359             vr => { US => "2-2n" }
5360             },
5361             "0028,9507" => {
5362             desc => "LUT Frame Range",
5363             vr => { US => "2-2n" }
5364             },
5365             "0028,9520" => {
5366             desc => "Image to Equipment Mapping Matrix",
5367             vr => { DS => "16" }
5368             },
5369             "0028,9537" => {
5370             desc => "Equipment Coordinate System Identification",
5371             vr => { CS => "1" }
5372             },
5373             "0032,000a" => {
5374             desc => "Study Status ID",
5375             vr => { CS => "1" },
5376             ret => 1
5377             },
5378             "0032,000c" => {
5379             desc => "Study Priority ID",
5380             vr => { CS => "1" },
5381             ret => 1
5382             },
5383             "0032,0012" => {
5384             desc => "Study ID Issuer",
5385             vr => { LO => "1" },
5386             ret => 1
5387             },
5388             "0032,0032" => {
5389             desc => "Study Verified Date",
5390             vr => { DA => "1" },
5391             ret => 1
5392             },
5393             "0032,0033" => {
5394             desc => "Study Verified Time",
5395             vr => { TM => "1" },
5396             ret => 1
5397             },
5398             "0032,0034" => {
5399             desc => "Study Read Date",
5400             vr => { DA => "1" },
5401             ret => 1
5402             },
5403             "0032,0035" => {
5404             desc => "Study Read Time",
5405             vr => { TM => "1" },
5406             ret => 1
5407             },
5408             "0032,1000" => {
5409             desc => "Scheduled Study Start Date",
5410             vr => { DA => "1" },
5411             ret => 1
5412             },
5413             "0032,1001" => {
5414             desc => "Scheduled Study Start Time",
5415             vr => { TM => "1" },
5416             ret => 1
5417             },
5418             "0032,1010" => {
5419             desc => "Scheduled Study Stop Date",
5420             vr => { DA => "1" },
5421             ret => 1
5422             },
5423             "0032,1011" => {
5424             desc => "Scheduled Study Stop Time",
5425             vr => { TM => "1" },
5426             ret => 1
5427             },
5428             "0032,1020" => {
5429             desc => "Scheduled Study Location",
5430             vr => { LO => "1" },
5431             ret => 1
5432             },
5433             "0032,1021" => {
5434             desc => "Scheduled Study Location AE Title",
5435             vr => { AE => "1-n" },
5436             ret => 1
5437             },
5438             "0032,1030" => {
5439             desc => "Reason for Study",
5440             vr => { LO => "1" },
5441             ret => 1
5442             },
5443             "0032,1031" => {
5444             desc => "Requesting Physician Identification Sequence",
5445             vr => { SQ => "1" }
5446             },
5447             "0032,1032" => {
5448             desc => "Requesting Physician",
5449             vr => { PN => "1" }
5450             },
5451             "0032,1033" => {
5452             desc => "Requesting Service",
5453             vr => { LO => "1" }
5454             },
5455             "0032,1034" => {
5456             desc => "Requesting Service Code Sequence",
5457             vr => { SQ => "1" }
5458             },
5459             "0032,1040" => {
5460             desc => "Study Arrival Date",
5461             vr => { DA => "1" },
5462             ret => 1
5463             },
5464             "0032,1041" => {
5465             desc => "Study Arrival Time",
5466             vr => { TM => "1" },
5467             ret => 1
5468             },
5469             "0032,1050" => {
5470             desc => "Study Completion Date",
5471             vr => { DA => "1" },
5472             ret => 1
5473             },
5474             "0032,1051" => {
5475             desc => "Study Completion Time",
5476             vr => { TM => "1" },
5477             ret => 1
5478             },
5479             "0032,1055" => {
5480             desc => "Study Component Status ID",
5481             vr => { CS => "1" },
5482             ret => 1
5483             },
5484             "0032,1060" => {
5485             desc => "Requested Procedure Description",
5486             vr => { LO => "1" }
5487             },
5488             "0032,1064" => {
5489             desc => "Requested Procedure Code Sequence",
5490             vr => { SQ => "1" }
5491             },
5492             "0032,1070" => {
5493             desc => "Requested Contrast Agent",
5494             vr => { LO => "1" }
5495             },
5496             "0032,4000" => {
5497             desc => "Study Comments",
5498             vr => { LT => "1" },
5499             ret => 1
5500             },
5501             "0038,0004" => {
5502             desc => "Referenced Patient Alias Sequence",
5503             vr => { SQ => "1" }
5504             },
5505             "0038,0008" => {
5506             desc => "Visit Status ID",
5507             vr => { CS => "1" }
5508             },
5509             "0038,0010" => {
5510             desc => "Admission ID",
5511             vr => { LO => "1" }
5512             },
5513             "0038,0011" => {
5514             desc => "Issuer of Admission ID",
5515             vr => { LO => "1" },
5516             ret => 1
5517             },
5518             "0038,0014" => {
5519             desc => "Issuer of Admission ID Sequence",
5520             vr => { SQ => "1" }
5521             },
5522             "0038,0016" => {
5523             desc => "Route of Admissions",
5524             vr => { LO => "1" }
5525             },
5526             "0038,001a" => {
5527             desc => "Scheduled Admission Date",
5528             vr => { DA => "1" },
5529             ret => 1
5530             },
5531             "0038,001b" => {
5532             desc => "Scheduled Admission Time",
5533             vr => { TM => "1" },
5534             ret => 1
5535             },
5536             "0038,001c" => {
5537             desc => "Scheduled Discharge Date",
5538             vr => { DA => "1" },
5539             ret => 1
5540             },
5541             "0038,001d" => {
5542             desc => "Scheduled Discharge Time",
5543             vr => { TM => "1" },
5544             ret => 1
5545             },
5546             "0038,001e" => {
5547             desc => "Scheduled Patient Institution Residence",
5548             vr => { LO => "1" },
5549             ret => 1
5550             },
5551             "0038,0020" => {
5552             desc => "Admitting Date",
5553             vr => { DA => "1" }
5554             },
5555             "0038,0021" => {
5556             desc => "Admitting Time",
5557             vr => { TM => "1" }
5558             },
5559             "0038,0030" => {
5560             desc => "Discharge Date",
5561             vr => { DA => "1" },
5562             ret => 1
5563             },
5564             "0038,0032" => {
5565             desc => "Discharge Time",
5566             vr => { TM => "1" },
5567             ret => 1
5568             },
5569             "0038,0040" => {
5570             desc => "Discharge Diagnosis Description",
5571             vr => { LO => "1" },
5572             ret => 1
5573             },
5574             "0038,0044" => {
5575             desc => "Discharge Diagnosis Code Sequence",
5576             vr => { SQ => "1" },
5577             ret => 1
5578             },
5579             "0038,0050" => {
5580             desc => "Special Needs",
5581             vr => { LO => "1" }
5582             },
5583             "0038,0060" => {
5584             desc => "Service Episode ID",
5585             vr => { LO => "1" }
5586             },
5587             "0038,0061" => {
5588             desc => "Issuer of Service Episode ID",
5589             vr => { LO => "1" },
5590             ret => 1
5591             },
5592             "0038,0062" => {
5593             desc => "Service Episode Description",
5594             vr => { LO => "1" }
5595             },
5596             "0038,0064" => {
5597             desc => "Issuer of Service Episode ID Sequence",
5598             vr => { SQ => "1" }
5599             },
5600             "0038,0100" => {
5601             desc => "Pertinent Documents Sequence",
5602             vr => { SQ => "1" }
5603             },
5604             "0038,0300" => {
5605             desc => "Current Patient Location",
5606             vr => { LO => "1" }
5607             },
5608             "0038,0400" => {
5609             desc => "Patient's Institution Residence",
5610             vr => { LO => "1" }
5611             },
5612             "0038,0500" => {
5613             desc => "Patient State",
5614             vr => { LO => "1" }
5615             },
5616             "0038,0502" => {
5617             desc => "Patient Clinical Trial Participation Sequence",
5618             vr => { SQ => "1" }
5619             },
5620             "0038,4000" => {
5621             desc => "Visit Comments",
5622             vr => { LT => "1" }
5623             },
5624             "003a,0004" => {
5625             desc => "Waveform Originality",
5626             vr => { CS => "1" }
5627             },
5628             "003a,0005" => {
5629             desc => "Number of Waveform Channels ",
5630             vr => { US => "1" }
5631             },
5632             "003a,0010" => {
5633             desc => "Number of Waveform Samples ",
5634             vr => { UL => "1" }
5635             },
5636             "003a,001a" => {
5637             desc => "Sampling Frequency ",
5638             vr => { DS => "1" }
5639             },
5640             "003a,0020" => {
5641             desc => "Multiplex Group Label ",
5642             vr => { SH => "1" }
5643             },
5644             "003a,0200" => {
5645             desc => "Channel Definition Sequence",
5646             vr => { SQ => "1" }
5647             },
5648             "003a,0202" => {
5649             desc => "Waveform Channel Number ",
5650             vr => { IS => "1" }
5651             },
5652             "003a,0203" => {
5653             desc => "Channel Label",
5654             vr => { SH => "1" }
5655             },
5656             "003a,0205" => {
5657             desc => "Channel Status",
5658             vr => { CS => "1-n" }
5659             },
5660             "003a,0208" => {
5661             desc => "Channel Source Sequence",
5662             vr => { SQ => "1" }
5663             },
5664             "003a,0209" => {
5665             desc => "Channel Source Modifiers Sequence",
5666             vr => { SQ => "1" }
5667             },
5668             "003a,020a" => {
5669             desc => "Source Waveform Sequence",
5670             vr => { SQ => "1" }
5671             },
5672             "003a,020c" => {
5673             desc => "Channel Derivation Description",
5674             vr => { LO => "1" }
5675             },
5676             "003a,0210" => {
5677             desc => "Channel Sensitivity ",
5678             vr => { DS => "1" }
5679             },
5680             "003a,0211" => {
5681             desc => "Channel Sensitivity Units Sequence",
5682             vr => { SQ => "1" }
5683             },
5684             "003a,0212" => {
5685             desc => "Channel Sensitivity Correction Factor",
5686             vr => { DS => "1" }
5687             },
5688             "003a,0213" => {
5689             desc => "Channel Baseline ",
5690             vr => { DS => "1" }
5691             },
5692             "003a,0214" => {
5693             desc => "Channel Time Skew",
5694             vr => { DS => "1" }
5695             },
5696             "003a,0215" => {
5697             desc => "Channel Sample Skew",
5698             vr => { DS => "1" }
5699             },
5700             "003a,0218" => {
5701             desc => "Channel Offset",
5702             vr => { DS => "1" }
5703             },
5704             "003a,021a" => {
5705             desc => "Waveform Bits Stored",
5706             vr => { US => "1" }
5707             },
5708             "003a,0220" => {
5709             desc => "Filter Low Frequency",
5710             vr => { DS => "1" }
5711             },
5712             "003a,0221" => {
5713             desc => "Filter High Frequency",
5714             vr => { DS => "1" }
5715             },
5716             "003a,0222" => {
5717             desc => "Notch Filter Frequency",
5718             vr => { DS => "1" }
5719             },
5720             "003a,0223" => {
5721             desc => "Notch Filter Bandwidth",
5722             vr => { DS => "1" }
5723             },
5724             "003a,0230" => {
5725             desc => "Waveform Data Display Scale",
5726             vr => { FL => "1" }
5727             },
5728             "003a,0231" => {
5729             desc => "Waveform Display Background CIELab Value",
5730             vr => { US => "3" }
5731             },
5732             "003a,0240" => {
5733             desc => "Waveform Presentation Group Sequence",
5734             vr => { SQ => "1" }
5735             },
5736             "003a,0241" => {
5737             desc => "Presentation Group Number",
5738             vr => { US => "1" }
5739             },
5740             "003a,0242" => {
5741             desc => "Channel Display Sequence",
5742             vr => { SQ => "1" }
5743             },
5744             "003a,0244" => {
5745             desc => "Channel Recommended Display CIELab Value",
5746             vr => { US => "3" }
5747             },
5748             "003a,0245" => {
5749             desc => "Channel Position",
5750             vr => { FL => "1" }
5751             },
5752             "003a,0246" => {
5753             desc => "Display Shading Flag",
5754             vr => { CS => "1" }
5755             },
5756             "003a,0247" => {
5757             desc => "Fractional Channel Display Scale",
5758             vr => { FL => "1" }
5759             },
5760             "003a,0248" => {
5761             desc => "Absolute Channel Display Scale",
5762             vr => { FL => "1" }
5763             },
5764             "003a,0300" => {
5765             desc => "Multiplexed Audio Channels Description Code Sequence",
5766             vr => { SQ => "1" }
5767             },
5768             "003a,0301" => {
5769             desc => "Channel Identification Code",
5770             vr => { IS => "1" }
5771             },
5772             "003a,0302" => {
5773             desc => "Channel Mode",
5774             vr => { CS => "1" }
5775             },
5776             "0040,0001" => {
5777             desc => "Scheduled Station AE Title",
5778             vr => { AE => "1-n" }
5779             },
5780             "0040,0002" => {
5781             desc => "Scheduled Procedure Step Start Date",
5782             vr => { DA => "1" }
5783             },
5784             "0040,0003" => {
5785             desc => "Scheduled Procedure Step Start Time",
5786             vr => { TM => "1" }
5787             },
5788             "0040,0004" => {
5789             desc => "Scheduled Procedure Step End Date",
5790             vr => { DA => "1" }
5791             },
5792             "0040,0005" => {
5793             desc => "Scheduled Procedure Step End Time",
5794             vr => { TM => "1" }
5795             },
5796             "0040,0006" => {
5797             desc => "Scheduled Performing Physician's Name",
5798             vr => { PN => "1" }
5799             },
5800             "0040,0007" => {
5801             desc => "Scheduled Procedure Step Description",
5802             vr => { LO => "1" }
5803             },
5804             "0040,0008" => {
5805             desc => "Scheduled Protocol Code Sequence",
5806             vr => { SQ => "1" }
5807             },
5808             "0040,0009" => {
5809             desc => "Scheduled Procedure Step ID",
5810             vr => { SH => "1" }
5811             },
5812             "0040,000a" => {
5813             desc => "Stage Code Sequence",
5814             vr => { SQ => "1" }
5815             },
5816             "0040,000b" => {
5817             desc => "Scheduled Performing Physician Identification Sequence",
5818             vr => { SQ => "1" }
5819             },
5820             "0040,0010" => {
5821             desc => "Scheduled Station Name",
5822             vr => { SH => "1-n" }
5823             },
5824             "0040,0011" => {
5825             desc => "Scheduled Procedure Step Location",
5826             vr => { SH => "1" }
5827             },
5828             "0040,0012" => {
5829             desc => "Pre-Medication",
5830             vr => { LO => "1" }
5831             },
5832             "0040,0020" => {
5833             desc => "Scheduled Procedure Step Status",
5834             vr => { CS => "1" }
5835             },
5836             "0040,0026" => {
5837             desc => "Order Placer Identifier Sequence",
5838             vr => { SQ => "1" }
5839             },
5840             "0040,0027" => {
5841             desc => "Order Filler Identifier Sequence",
5842             vr => { SQ => "1" }
5843             },
5844             "0040,0031" => {
5845             desc => "Local Namespace Entity ID",
5846             vr => { UT => "1" }
5847             },
5848             "0040,0032" => {
5849             desc => "Universal Entity ID",
5850             vr => { UT => "1" }
5851             },
5852             "0040,0033" => {
5853             desc => "Universal Entity ID Type",
5854             vr => { CS => "1" }
5855             },
5856             "0040,0035" => {
5857             desc => "Identifier Type Code",
5858             vr => { CS => "1" }
5859             },
5860             "0040,0036" => {
5861             desc => "Assigning Facility Sequence",
5862             vr => { SQ => "1" }
5863             },
5864             "0040,0039" => {
5865             desc => "Assigning Jurisdiction Code Sequence",
5866             vr => { SQ => "1" }
5867             },
5868             "0040,003a" => {
5869             desc => "Assigning Agency or Department Code Sequence",
5870             vr => { SQ => "1" }
5871             },
5872             "0040,0100" => {
5873             desc => "Scheduled Procedure Step Sequence",
5874             vr => { SQ => "1" }
5875             },
5876             "0040,0220" => {
5877             desc => "Referenced Non-Image Composite SOP Instance Sequence ",
5878             vr => { SQ => "1" }
5879             },
5880             "0040,0241" => {
5881             desc => "Performed Station AE Title",
5882             vr => { AE => "1" }
5883             },
5884             "0040,0242" => {
5885             desc => "Performed Station Name",
5886             vr => { SH => "1" }
5887             },
5888             "0040,0243" => {
5889             desc => "Performed Location",
5890             vr => { SH => "1" }
5891             },
5892             "0040,0244" => {
5893             desc => "Performed Procedure Step Start Date",
5894             vr => { DA => "1" }
5895             },
5896             "0040,0245" => {
5897             desc => "Performed Procedure Step Start Time",
5898             vr => { TM => "1" }
5899             },
5900             "0040,0250" => {
5901             desc => "Performed Procedure Step End Date",
5902             vr => { DA => "1" }
5903             },
5904             "0040,0251" => {
5905             desc => "Performed Procedure Step End Time",
5906             vr => { TM => "1" }
5907             },
5908             "0040,0252" => {
5909             desc => "Performed Procedure Step Status",
5910             vr => { CS => "1" }
5911             },
5912             "0040,0253" => {
5913             desc => "Performed Procedure Step ID",
5914             vr => { SH => "1" }
5915             },
5916             "0040,0254" => {
5917             desc => "Performed Procedure Step Description",
5918             vr => { LO => "1" }
5919             },
5920             "0040,0255" => {
5921             desc => "Performed Procedure Type Description",
5922             vr => { LO => "1" }
5923             },
5924             "0040,0260" => {
5925             desc => "Performed Protocol Code Sequence",
5926             vr => { SQ => "1" }
5927             },
5928             "0040,0261" => {
5929             desc => "Performed Protocol Type",
5930             vr => { CS => "1" }
5931             },
5932             "0040,0270" => {
5933             desc => "Scheduled Step Attributes Sequence",
5934             vr => { SQ => "1" }
5935             },
5936             "0040,0275" => {
5937             desc => "Request Attributes Sequence",
5938             vr => { SQ => "1" }
5939             },
5940             "0040,0280" => {
5941             desc => "Comments on the Performed Procedure Step",
5942             vr => { ST => "1" }
5943             },
5944             "0040,0281" => {
5945             desc => "Performed Procedure Step Discontinuation Reason Code Sequence",
5946             vr => { SQ => "1" }
5947             },
5948             "0040,0293" => {
5949             desc => "Quantity Sequence",
5950             vr => { SQ => "1" }
5951             },
5952             "0040,0294" => {
5953             desc => "Quantity",
5954             vr => { DS => "1" }
5955             },
5956             "0040,0295" => {
5957             desc => "Measuring Units Sequence",
5958             vr => { SQ => "1" }
5959             },
5960             "0040,0296" => {
5961             desc => "Billing Item Sequence",
5962             vr => { SQ => "1" }
5963             },
5964             "0040,0300" => {
5965             desc => "Total Time of Fluoroscopy",
5966             vr => { US => "1" }
5967             },
5968             "0040,0301" => {
5969             desc => "Total Number of Exposures",
5970             vr => { US => "1" }
5971             },
5972             "0040,0302" => {
5973             desc => "Entrance Dose",
5974             vr => { US => "1" }
5975             },
5976             "0040,0303" => {
5977             desc => "Exposed Area",
5978             vr => { US => "1-2" }
5979             },
5980             "0040,0306" => {
5981             desc => "Distance Source to Entrance",
5982             vr => { DS => "1" }
5983             },
5984             "0040,0307" => {
5985             desc => "Distance Source to Support",
5986             vr => { DS => "1" },
5987             ret => 1
5988             },
5989             "0040,030e" => {
5990             desc => "Exposure Dose Sequence",
5991             vr => { SQ => "1" }
5992             },
5993             "0040,0310" => {
5994             desc => "Comments on Radiation Dose",
5995             vr => { ST => "1" }
5996             },
5997             "0040,0312" => {
5998             desc => "X-Ray Output",
5999             vr => { DS => "1" }
6000             },
6001             "0040,0314" => {
6002             desc => "Half Value Layer",
6003             vr => { DS => "1" }
6004             },
6005             "0040,0316" => {
6006             desc => "Organ Dose",
6007             vr => { DS => "1" }
6008             },
6009             "0040,0318" => {
6010             desc => "Organ Exposed",
6011             vr => { CS => "1" }
6012             },
6013             "0040,0320" => {
6014             desc => "Billing Procedure Step Sequence",
6015             vr => { SQ => "1" }
6016             },
6017             "0040,0321" => {
6018             desc => "Film Consumption Sequence",
6019             vr => { SQ => "1" }
6020             },
6021             "0040,0324" => {
6022             desc => "Billing Supplies and Devices Sequence",
6023             vr => { SQ => "1" }
6024             },
6025             "0040,0330" => {
6026             desc => "Referenced Procedure Step Sequence",
6027             vr => { SQ => "1" },
6028             ret => 1
6029             },
6030             "0040,0340" => {
6031             desc => "Performed Series Sequence",
6032             vr => { SQ => "1" }
6033             },
6034             "0040,0400" => {
6035             desc => "Comments on the Scheduled Procedure Step",
6036             vr => { LT => "1" }
6037             },
6038             "0040,0440" => {
6039             desc => "Protocol Context Sequence",
6040             vr => { SQ => "1" }
6041             },
6042             "0040,0441" => {
6043             desc => "Content Item Modifier Sequence",
6044             vr => { SQ => "1" }
6045             },
6046             "0040,0500" => {
6047             desc => "Scheduled Specimen Sequence",
6048             vr => { SQ => "1" }
6049             },
6050             "0040,050a" => {
6051             desc => "Specimen Accession Number",
6052             vr => { LO => "1" },
6053             ret => 1
6054             },
6055             "0040,0512" => {
6056             desc => "Container Identifier",
6057             vr => { LO => "1" }
6058             },
6059             "0040,0513" => {
6060             desc => "Issuer of the Container Identifier Sequence",
6061             vr => { SQ => "1" }
6062             },
6063             "0040,0515" => {
6064             desc => "Alternate Container Identifier Sequence",
6065             vr => { SQ => "1" }
6066             },
6067             "0040,0518" => {
6068             desc => "Container Type Code Sequence",
6069             vr => { SQ => "1" }
6070             },
6071             "0040,051a" => {
6072             desc => "Container Description",
6073             vr => { LO => "1" }
6074             },
6075             "0040,0520" => {
6076             desc => "Container Component Sequence",
6077             vr => { SQ => "1" }
6078             },
6079             "0040,0550" => {
6080             desc => "Specimen Sequence",
6081             vr => { SQ => "1" },
6082             ret => 1
6083             },
6084             "0040,0551" => {
6085             desc => "Specimen Identifier",
6086             vr => { LO => "1" }
6087             },
6088             "0040,0552" => {
6089             desc => "Specimen Description Sequence - Trial",
6090             vr => { SQ => "1" },
6091             ret => 1
6092             },
6093             "0040,0553" => {
6094             desc => "Specimen Description - Trial",
6095             vr => { ST => "1" },
6096             ret => 1
6097             },
6098             "0040,0554" => {
6099             desc => "Specimen UID",
6100             vr => { UI => "1" }
6101             },
6102             "0040,0555" => {
6103             desc => "Acquisition Context Sequence",
6104             vr => { SQ => "1" }
6105             },
6106             "0040,0556" => {
6107             desc => "Acquisition Context Description",
6108             vr => { ST => "1" }
6109             },
6110             "0040,0560" => {
6111             desc => "Specimen Description Sequence",
6112             vr => { SQ => "1" }
6113             },
6114             "0040,0562" => {
6115             desc => "Issuer of the Specimen Identifier Sequence",
6116             vr => { SQ => "1" }
6117             },
6118             "0040,059a" => {
6119             desc => "Specimen Type Code Sequence",
6120             vr => { SQ => "1" }
6121             },
6122             "0040,0600" => {
6123             desc => "Specimen Short Description ",
6124             vr => { LO => "1" }
6125             },
6126             "0040,0602" => {
6127             desc => "Specimen Detailed Description ",
6128             vr => { UT => "1" }
6129             },
6130             "0040,0610" => {
6131             desc => "Specimen Preparation Sequence",
6132             vr => { SQ => "1" }
6133             },
6134             "0040,0612" => {
6135             desc => "Specimen Preparation Step Content Item Sequence",
6136             vr => { SQ => "1" }
6137             },
6138             "0040,0620" => {
6139             desc => "Specimen Localization Content Item Sequence",
6140             vr => { SQ => "1" }
6141             },
6142             "0040,06fa" => {
6143             desc => "Slide Identifier",
6144             vr => { LO => "1" },
6145             ret => 1
6146             },
6147             "0040,071a" => {
6148             desc => "Image Center Point Coordinates Sequence",
6149             vr => { SQ => "1" }
6150             },
6151             "0040,072a" => {
6152             desc => "X offset in Slide Coordinate System",
6153             vr => { DS => "1" }
6154             },
6155             "0040,073a" => {
6156             desc => "Y offset in Slide Coordinate System",
6157             vr => { DS => "1" }
6158             },
6159             "0040,074a" => {
6160             desc => "Z offset in Slide Coordinate System",
6161             vr => { DS => "1" }
6162             },
6163             "0040,08d8" => {
6164             desc => "Pixel Spacing Sequence",
6165             vr => { SQ => "1" }
6166             },
6167             "0040,08da" => {
6168             desc => "Coordinate System Axis Code Sequence",
6169             vr => { SQ => "1" }
6170             },
6171             "0040,08ea" => {
6172             desc => "Measurement Units Code Sequence",
6173             vr => { SQ => "1" }
6174             },
6175             "0040,09f8" => {
6176             desc => "Vital Stain Code Sequence - Trial",
6177             vr => { SQ => "1" },
6178             ret => 1
6179             },
6180             "0040,1001" => {
6181             desc => "Requested Procedure ID",
6182             vr => { SH => "1" }
6183             },
6184             "0040,1002" => {
6185             desc => "Reason for the Requested Procedure",
6186             vr => { LO => "1" }
6187             },
6188             "0040,1003" => {
6189             desc => "Requested Procedure Priority ",
6190             vr => { SH => "1" }
6191             },
6192             "0040,1004" => {
6193             desc => "Patient Transport Arrangements",
6194             vr => { LO => "1" }
6195             },
6196             "0040,1005" => {
6197             desc => "Requested Procedure Location",
6198             vr => { LO => "1" }
6199             },
6200             "0040,1006" => {
6201             desc => "Placer Order Number / Procedure",
6202             vr => { SH => "1" },
6203             ret => 1
6204             },
6205             "0040,1007" => {
6206             desc => "Filler Order Number / Procedure",
6207             vr => { SH => "1" },
6208             ret => 1
6209             },
6210             "0040,1008" => {
6211             desc => "Confidentiality Code",
6212             vr => { LO => "1" }
6213             },
6214             "0040,1009" => {
6215             desc => "Reporting Priority",
6216             vr => { SH => "1" }
6217             },
6218             "0040,100a" => {
6219             desc => "Reason for Requested Procedure Code Sequence",
6220             vr => { SQ => "1" }
6221             },
6222             "0040,1010" => {
6223             desc => "Names of Intended Recipients of Results",
6224             vr => { PN => "1-n" }
6225             },
6226             "0040,1011" => {
6227             desc => "Intended Recipients of Results Identification Sequence",
6228             vr => { SQ => "1" }
6229             },
6230             "0040,1012" => {
6231             desc => "Reason For Performed Procedure Code Sequence",
6232             vr => { SQ => "1" }
6233             },
6234             "0040,1101" => {
6235             desc => "Person Identification Code Sequence",
6236             vr => { SQ => "1" }
6237             },
6238             "0040,1102" => {
6239             desc => "Person's Address",
6240             vr => { ST => "1" }
6241             },
6242             "0040,1103" => {
6243             desc => "Person's Telephone Numbers",
6244             vr => { LO => "1-n" }
6245             },
6246             "0040,1400" => {
6247             desc => "Requested Procedure Comments",
6248             vr => { LT => "1" }
6249             },
6250             "0040,2001" => {
6251             desc => "Reason for the Imaging Service Request",
6252             vr => { LO => "1" },
6253             ret => 1
6254             },
6255             "0040,2004" => {
6256             desc => "Issue Date of Imaging Service Request",
6257             vr => { DA => "1" }
6258             },
6259             "0040,2005" => {
6260             desc => "Issue Time of Imaging Service Request",
6261             vr => { TM => "1" }
6262             },
6263             "0040,2006" => {
6264             desc => "Placer Order Number / Imaging Service Request (Retired)",
6265             vr => { SH => "1" },
6266             ret => 1
6267             },
6268             "0040,2007" => {
6269             desc => "Filler Order Number / Imaging Service Request (Retired)",
6270             vr => { SH => "1" },
6271             ret => 1
6272             },
6273             "0040,2008" => {
6274             desc => "Order Entered By",
6275             vr => { PN => "1" }
6276             },
6277             "0040,2009" => {
6278             desc => "Order Enterer's Location",
6279             vr => { SH => "1" }
6280             },
6281             "0040,2010" => {
6282             desc => "Order Callback Phone Number",
6283             vr => { SH => "1" }
6284             },
6285             "0040,2016" => {
6286             desc => "Placer Order Number / Imaging Service Request",
6287             vr => { LO => "1" }
6288             },
6289             "0040,2017" => {
6290             desc => "Filler Order Number / Imaging Service Request",
6291             vr => { LO => "1" }
6292             },
6293             "0040,2400" => {
6294             desc => "Imaging Service Request Comments",
6295             vr => { LT => "1" }
6296             },
6297             "0040,3001" => {
6298             desc => "Confidentiality Constraint on Patient Data Description",
6299             vr => { LO => "1" }
6300             },
6301             "0040,4001" => {
6302             desc => "General Purpose Scheduled Procedure Step Status",
6303             vr => { CS => "1" }
6304             },
6305             "0040,4002" => {
6306             desc => "General Purpose Performed Procedure Step Status",
6307             vr => { CS => "1" }
6308             },
6309             "0040,4003" => {
6310             desc => "General Purpose Scheduled Procedure Step Priority",
6311             vr => { CS => "1" }
6312             },
6313             "0040,4004" => {
6314             desc => "Scheduled Processing Applications Code Sequence",
6315             vr => { SQ => "1" }
6316             },
6317             "0040,4005" => {
6318             desc => "Scheduled Procedure Step Start DateTime",
6319             vr => { DT => "1" }
6320             },
6321             "0040,4006" => {
6322             desc => "Multiple Copies Flag",
6323             vr => { CS => "1" }
6324             },
6325             "0040,4007" => {
6326             desc => "Performed Processing Applications Code Sequence",
6327             vr => { SQ => "1" }
6328             },
6329             "0040,4009" => {
6330             desc => "Human Performer Code Sequence",
6331             vr => { SQ => "1" }
6332             },
6333             "0040,4010" => {
6334             desc => "Scheduled Procedure Step Modification Date Time",
6335             vr => { DT => "1" }
6336             },
6337             "0040,4011" => {
6338             desc => "Expected Completion Date Time",
6339             vr => { DT => "1" }
6340             },
6341             "0040,4015" => {
6342             desc => "Resulting General Purpose Performed Procedure Steps Sequence",
6343             vr => { SQ => "1" }
6344             },
6345             "0040,4016" => {
6346             desc => "Referenced General Purpose Scheduled Procedure Step Sequence",
6347             vr => { SQ => "1" }
6348             },
6349             "0040,4018" => {
6350             desc => "Scheduled Workitem Code Sequence",
6351             vr => { SQ => "1" }
6352             },
6353             "0040,4019" => {
6354             desc => "Performed Workitem Code Sequence",
6355             vr => { SQ => "1" }
6356             },
6357             "0040,4020" => {
6358             desc => "Input Availability Flag",
6359             vr => { CS => "1" }
6360             },
6361             "0040,4021" => {
6362             desc => "Input Information Sequence",
6363             vr => { SQ => "1" }
6364             },
6365             "0040,4022" => {
6366             desc => "Relevant Information Sequence",
6367             vr => { SQ => "1" }
6368             },
6369             "0040,4023" => {
6370             desc => "Referenced General Purpose Scheduled Procedure Step Transaction UID",
6371             vr => { UI => "1" }
6372             },
6373             "0040,4025" => {
6374             desc => "Scheduled Station Name Code Sequence",
6375             vr => { SQ => "1" }
6376             },
6377             "0040,4026" => {
6378             desc => "Scheduled Station Class Code Sequence",
6379             vr => { SQ => "1" }
6380             },
6381             "0040,4027" => {
6382             desc => "Scheduled Station Geographic Location Code Sequence",
6383             vr => { SQ => "1" }
6384             },
6385             "0040,4028" => {
6386             desc => "Performed Station Name Code Sequence",
6387             vr => { SQ => "1" }
6388             },
6389             "0040,4029" => {
6390             desc => "Performed Station Class Code Sequence",
6391             vr => { SQ => "1" }
6392             },
6393             "0040,4030" => {
6394             desc => "Performed Station Geographic Location Code Sequence",
6395             vr => { SQ => "1" }
6396             },
6397             "0040,4031" => {
6398             desc => "Requested Subsequent Workitem Code Sequence",
6399             vr => { SQ => "1" }
6400             },
6401             "0040,4032" => {
6402             desc => "Non-DICOM Output Code Sequence",
6403             vr => { SQ => "1" }
6404             },
6405             "0040,4033" => {
6406             desc => "Output Information Sequence",
6407             vr => { SQ => "1" }
6408             },
6409             "0040,4034" => {
6410             desc => "Scheduled Human Performers Sequence",
6411             vr => { SQ => "1" }
6412             },
6413             "0040,4035" => {
6414             desc => "Actual Human Performers Sequence",
6415             vr => { SQ => "1" }
6416             },
6417             "0040,4036" => {
6418             desc => "Human Performer's Organization",
6419             vr => { LO => "1" }
6420             },
6421             "0040,4037" => {
6422             desc => "Human Performer's Name",
6423             vr => { PN => "1" }
6424             },
6425             "0040,4040" => {
6426             desc => "Raw Data Handling",
6427             vr => { CS => "1" }
6428             },
6429             "0040,8302" => {
6430             desc => "Entrance Dose in mGy",
6431             vr => { DS => "1" }
6432             },
6433             "0040,9094" => {
6434             desc => "Referenced Image Real World Value Mapping Sequence",
6435             vr => { SQ => "1" }
6436             },
6437             "0040,9096" => {
6438             desc => "Real World Value Mapping Sequence ",
6439             vr => { SQ => "1" }
6440             },
6441             "0040,9098" => {
6442             desc => "Pixel Value Mapping Code Sequence",
6443             vr => { SQ => "1" }
6444             },
6445             "0040,9210" => {
6446             desc => "LUT Label",
6447             vr => { SH => "1" }
6448             },
6449             "0040,9211" => {
6450             desc => "Real World Value Last Value Mapped",
6451             vr => { SS => "1", US => "1" }
6452             },
6453             "0040,9212" => {
6454             desc => "Real World Value LUT Data",
6455             vr => { FD => "1-n" }
6456             },
6457             "0040,9216" => {
6458             desc => "Real World Value First Value Mapped",
6459             vr => { SS => "1", US => "1" }
6460             },
6461             "0040,9224" => {
6462             desc => "Real World Value Intercept",
6463             vr => { FD => "1" }
6464             },
6465             "0040,9225" => {
6466             desc => "Real World Value Slope",
6467             vr => { FD => "1" }
6468             },
6469             "0040,a010" => {
6470             desc => "Relationship Type",
6471             vr => { CS => "1" }
6472             },
6473             "0040,a027" => {
6474             desc => "Verifying Organization",
6475             vr => { LO => "1" }
6476             },
6477             "0040,a030" => {
6478             desc => "Verification Date Time",
6479             vr => { DT => "1" }
6480             },
6481             "0040,a032" => {
6482             desc => "Observation Date Time",
6483             vr => { DT => "1" }
6484             },
6485             "0040,a040" => {
6486             desc => "Value Type",
6487             vr => { CS => "1" }
6488             },
6489             "0040,a043" => {
6490             desc => "Concept Name Code Sequence",
6491             vr => { SQ => "1" }
6492             },
6493             "0040,a050" => {
6494             desc => "Continuity Of Content",
6495             vr => { CS => "1" }
6496             },
6497             "0040,a073" => {
6498             desc => "Verifying Observer Sequence",
6499             vr => { SQ => "1" }
6500             },
6501             "0040,a075" => {
6502             desc => "Verifying Observer Name",
6503             vr => { PN => "1" }
6504             },
6505             "0040,a078" => {
6506             desc => "Author Observer Sequence",
6507             vr => { SQ => "1" }
6508             },
6509             "0040,a07a" => {
6510             desc => "Participant Sequence",
6511             vr => { SQ => "1" }
6512             },
6513             "0040,a07c" => {
6514             desc => "Custodial Organization Sequence",
6515             vr => { SQ => "1" }
6516             },
6517             "0040,a080" => {
6518             desc => "Participation Type",
6519             vr => { CS => "1" }
6520             },
6521             "0040,a082" => {
6522             desc => "Participation DateTime",
6523             vr => { DT => "1" }
6524             },
6525             "0040,a084" => {
6526             desc => "Observer Type",
6527             vr => { CS => "1" }
6528             },
6529             "0040,a088" => {
6530             desc => "Verifying Observer Identification Code Sequence",
6531             vr => { SQ => "1" }
6532             },
6533             "0040,a090" => {
6534             desc => "Equivalent CDA Document Sequence",
6535             vr => { SQ => "1" },
6536             ret => 1
6537             },
6538             "0040,a0b0" => {
6539             desc => "Referenced Waveform Channels",
6540             vr => { US => "2-2n" }
6541             },
6542             "0040,a120" => {
6543             desc => "DateTime",
6544             vr => { DT => "1" }
6545             },
6546             "0040,a121" => {
6547             desc => "Date",
6548             vr => { DA => "1" }
6549             },
6550             "0040,a122" => {
6551             desc => "Time",
6552             vr => { TM => "1" }
6553             },
6554             "0040,a123" => {
6555             desc => "Person Name",
6556             vr => { PN => "1" }
6557             },
6558             "0040,a124" => {
6559             desc => "UID",
6560             vr => { UI => "1" }
6561             },
6562             "0040,a130" => {
6563             desc => "Temporal Range Type",
6564             vr => { CS => "1" }
6565             },
6566             "0040,a132" => {
6567             desc => "Referenced Sample Positions",
6568             vr => { UL => "1-n" }
6569             },
6570             "0040,a136" => {
6571             desc => "Referenced Frame Numbers",
6572             vr => { US => "1-n" }
6573             },
6574             "0040,a138" => {
6575             desc => "Referenced Time Offsets",
6576             vr => { DS => "1-n" }
6577             },
6578             "0040,a13a" => {
6579             desc => "Referenced DateTime ",
6580             vr => { DT => "1-n" }
6581             },
6582             "0040,a160" => {
6583             desc => "Text Value",
6584             vr => { UT => "1" }
6585             },
6586             "0040,a168" => {
6587             desc => "Concept Code Sequence",
6588             vr => { SQ => "1" }
6589             },
6590             "0040,a170" => {
6591             desc => "Purpose of Reference Code Sequence",
6592             vr => { SQ => "1" }
6593             },
6594             "0040,a180" => {
6595             desc => "Annotation Group Number",
6596             vr => { US => "1" }
6597             },
6598             "0040,a195" => {
6599             desc => "Modifier Code Sequence ",
6600             vr => { SQ => "1" }
6601             },
6602             "0040,a300" => {
6603             desc => "Measured Value Sequence",
6604             vr => { SQ => "1" }
6605             },
6606             "0040,a301" => {
6607             desc => "Numeric Value Qualifier Code Sequence",
6608             vr => { SQ => "1" }
6609             },
6610             "0040,a30a" => {
6611             desc => "Numeric Value",
6612             vr => { DS => "1-n" }
6613             },
6614             "0040,a353" => {
6615             desc => "Address - Trial",
6616             vr => { ST => "1" },
6617             ret => 1
6618             },
6619             "0040,a354" => {
6620             desc => "Telephone Number - Trial",
6621             vr => { LO => "1" },
6622             ret => 1
6623             },
6624             "0040,a360" => {
6625             desc => "Predecessor Documents Sequence",
6626             vr => { SQ => "1" }
6627             },
6628             "0040,a370" => {
6629             desc => "Referenced Request Sequence",
6630             vr => { SQ => "1" }
6631             },
6632             "0040,a372" => {
6633             desc => "Performed Procedure Code Sequence",
6634             vr => { SQ => "1" }
6635             },
6636             "0040,a375" => {
6637             desc => "Current Requested Procedure Evidence Sequence",
6638             vr => { SQ => "1" }
6639             },
6640             "0040,a385" => {
6641             desc => "Pertinent Other Evidence Sequence",
6642             vr => { SQ => "1" }
6643             },
6644             "0040,a390" => {
6645             desc => "HL7 Structured Document Reference Sequence",
6646             vr => { SQ => "1" }
6647             },
6648             "0040,a491" => {
6649             desc => "Completion Flag",
6650             vr => { CS => "1" }
6651             },
6652             "0040,a492" => {
6653             desc => "Completion Flag Description",
6654             vr => { LO => "1" }
6655             },
6656             "0040,a493" => {
6657             desc => "Verification Flag",
6658             vr => { CS => "1" }
6659             },
6660             "0040,a494" => {
6661             desc => "Archive Requested",
6662             vr => { CS => "1" }
6663             },
6664             "0040,a496" => {
6665             desc => "Preliminary Flag",
6666             vr => { CS => "1" }
6667             },
6668             "0040,a504" => {
6669             desc => "Content Template Sequence",
6670             vr => { SQ => "1" }
6671             },
6672             "0040,a525" => {
6673             desc => "Identical Documents Sequence",
6674             vr => { SQ => "1" }
6675             },
6676             "0040,a730" => {
6677             desc => "Content Sequence",
6678             vr => { SQ => "1" }
6679             },
6680             "0040,b020" => {
6681             desc => "Waveform Annotation Sequence",
6682             vr => { SQ => "1" }
6683             },
6684             "0040,db00" => {
6685             desc => "Template Identifier",
6686             vr => { CS => "1" }
6687             },
6688             "0040,db06" => {
6689             desc => "Template Version",
6690             vr => { DT => "1" },
6691             ret => 1
6692             },
6693             "0040,db07" => {
6694             desc => "Template Local Version",
6695             vr => { DT => "1" },
6696             ret => 1
6697             },
6698             "0040,db0b" => {
6699             desc => "Template Extension Flag",
6700             vr => { CS => "1" },
6701             ret => 1
6702             },
6703             "0040,db0c" => {
6704             desc => "Template Extension Organization UID",
6705             vr => { UI => "1" },
6706             ret => 1
6707             },
6708             "0040,db0d" => {
6709             desc => "Template Extension Creator UID",
6710             vr => { UI => "1" },
6711             ret => 1
6712             },
6713             "0040,db73" => {
6714             desc => "Referenced Content Item Identifier",
6715             vr => { UL => "1-n" }
6716             },
6717             "0040,e001" => {
6718             desc => "HL7 Instance Identifier ",
6719             vr => { ST => "1" }
6720             },
6721             "0040,e004" => {
6722             desc => "HL7 Document Effective Time",
6723             vr => { DT => "1" }
6724             },
6725             "0040,e006" => {
6726             desc => "HL7 Document Type Code Sequence",
6727             vr => { SQ => "1" }
6728             },
6729             "0040,e010" => {
6730             desc => "Retrieve URI ",
6731             vr => { UT => "1" }
6732             },
6733             "0040,e011" => {
6734             desc => "Retrieve Location UID",
6735             vr => { UI => "1" }
6736             },
6737             "0042,0010" => {
6738             desc => "Document Title",
6739             vr => { ST => "1" }
6740             },
6741             "0042,0011" => {
6742             desc => "Encapsulated Document",
6743             vr => { OB => "1" }
6744             },
6745             "0042,0012" => {
6746             desc => "MIME Type of Encapsulated Document",
6747             vr => { LO => "1" }
6748             },
6749             "0042,0013" => {
6750             desc => "Source Instance Sequence",
6751             vr => { SQ => "1" }
6752             },
6753             "0042,0014" => {
6754             desc => "List of MIME Types",
6755             vr => { LO => "1-n" }
6756             },
6757             "0044,0001" => {
6758             desc => "Product Package Identifier",
6759             vr => { ST => "1" }
6760             },
6761             "0044,0002" => {
6762             desc => "Substance Administration Approval",
6763             vr => { CS => "1" }
6764             },
6765             "0044,0003" => {
6766             desc => "Approval Status Further Description",
6767             vr => { LT => "1" }
6768             },
6769             "0044,0004" => {
6770             desc => "Approval Status DateTime ",
6771             vr => { DT => "1" }
6772             },
6773             "0044,0007" => {
6774             desc => "Product Type Code Sequence",
6775             vr => { SQ => "1" }
6776             },
6777             "0044,0008" => {
6778             desc => "Product Name",
6779             vr => { LO => "1-n" }
6780             },
6781             "0044,0009" => {
6782             desc => "Product Description",
6783             vr => { LT => "1" }
6784             },
6785             "0044,000a" => {
6786             desc => "Product Lot Identifier",
6787             vr => { LO => "1" }
6788             },
6789             "0044,000b" => {
6790             desc => "Product Expiration DateTime",
6791             vr => { DT => "1" }
6792             },
6793             "0044,0010" => {
6794             desc => "Substance Administration DateTime",
6795             vr => { DT => "1" }
6796             },
6797             "0044,0011" => {
6798             desc => "Substance Administration Notes",
6799             vr => { LO => "1" }
6800             },
6801             "0044,0012" => {
6802             desc => "Substance Administration Device ID",
6803             vr => { LO => "1" }
6804             },
6805             "0044,0013" => {
6806             desc => "Product Parameter Sequence",
6807             vr => { SQ => "1" }
6808             },
6809             "0044,0019" => {
6810             desc => "Substance Administration Parameter Sequence",
6811             vr => { SQ => "1" }
6812             },
6813             "0046,0012" => {
6814             desc => "Lens Description",
6815             vr => { LO => "1" }
6816             },
6817             "0046,0014" => {
6818             desc => "Right Lens Sequence",
6819             vr => { SQ => "1" }
6820             },
6821             "0046,0015" => {
6822             desc => "Left Lens Sequence",
6823             vr => { SQ => "1" }
6824             },
6825             "0046,0016" => {
6826             desc => "Unspecified Laterality Lens Sequence",
6827             vr => { SQ => "1" }
6828             },
6829             "0046,0018" => {
6830             desc => "Cylinder Sequence",
6831             vr => { SQ => "1" }
6832             },
6833             "0046,0028" => {
6834             desc => "Prism Sequence",
6835             vr => { SQ => "1" }
6836             },
6837             "0046,0030" => {
6838             desc => "Horizontal Prism Power",
6839             vr => { FD => "1" }
6840             },
6841             "0046,0032" => {
6842             desc => "Horizontal Prism Base",
6843             vr => { CS => "1" }
6844             },
6845             "0046,0034" => {
6846             desc => "Vertical Prism Power",
6847             vr => { FD => "1" }
6848             },
6849             "0046,0036" => {
6850             desc => "Vertical Prism Base",
6851             vr => { CS => "1" }
6852             },
6853             "0046,0038" => {
6854             desc => "Lens Segment Type",
6855             vr => { CS => "1" }
6856             },
6857             "0046,0040" => {
6858             desc => "Optical Transmittance",
6859             vr => { FD => "1" }
6860             },
6861             "0046,0042" => {
6862             desc => "Channel Width",
6863             vr => { FD => "1" }
6864             },
6865             "0046,0044" => {
6866             desc => "Pupil Size",
6867             vr => { FD => "1" }
6868             },
6869             "0046,0046" => {
6870             desc => "Corneal Size",
6871             vr => { FD => "1" }
6872             },
6873             "0046,0050" => {
6874             desc => "Autorefraction Right Eye Sequence",
6875             vr => { SQ => "1" }
6876             },
6877             "0046,0052" => {
6878             desc => "Autorefraction Left Eye Sequence",
6879             vr => { SQ => "1" }
6880             },
6881             "0046,0060" => {
6882             desc => "Distance Pupillary Distance",
6883             vr => { FD => "1" }
6884             },
6885             "0046,0062" => {
6886             desc => "Near Pupillary Distance",
6887             vr => { FD => "1" }
6888             },
6889             "0046,0063" => {
6890             desc => "Intermediate Pupillary Distance",
6891             vr => { FD => "1" }
6892             },
6893             "0046,0064" => {
6894             desc => "Other Pupillary Distance",
6895             vr => { FD => "1" }
6896             },
6897             "0046,0070" => {
6898             desc => "Keratometry Right Eye Sequence",
6899             vr => { SQ => "1" }
6900             },
6901             "0046,0071" => {
6902             desc => "Keratometry Left Eye Sequence",
6903             vr => { SQ => "1" }
6904             },
6905             "0046,0074" => {
6906             desc => "Steep Keratometric Axis Sequence",
6907             vr => { SQ => "1" }
6908             },
6909             "0046,0075" => {
6910             desc => "Radius of Curvature",
6911             vr => { FD => "1" }
6912             },
6913             "0046,0076" => {
6914             desc => "Keratometric Power",
6915             vr => { FD => "1" }
6916             },
6917             "0046,0077" => {
6918             desc => "Keratometric Axis",
6919             vr => { FD => "1" }
6920             },
6921             "0046,0080" => {
6922             desc => "Flat Keratometric Axis Sequence",
6923             vr => { SQ => "1" }
6924             },
6925             "0046,0092" => {
6926             desc => "Background Color",
6927             vr => { CS => "1" }
6928             },
6929             "0046,0094" => {
6930             desc => "Optotype",
6931             vr => { CS => "1" }
6932             },
6933             "0046,0095" => {
6934             desc => "Optotype Presentation",
6935             vr => { CS => "1" }
6936             },
6937             "0046,0097" => {
6938             desc => "Subjective Refraction Right Eye Sequence",
6939             vr => { SQ => "1" }
6940             },
6941             "0046,0098" => {
6942             desc => "Subjective Refraction Left Eye Sequence",
6943             vr => { SQ => "1" }
6944             },
6945             "0046,0100" => {
6946             desc => "Add Near Sequence",
6947             vr => { SQ => "1" }
6948             },
6949             "0046,0101" => {
6950             desc => "Add Intermediate Sequence",
6951             vr => { SQ => "1" }
6952             },
6953             "0046,0102" => {
6954             desc => "Add Other Sequence",
6955             vr => { SQ => "1" }
6956             },
6957             "0046,0104" => {
6958             desc => "Add Power",
6959             vr => { FD => "1" }
6960             },
6961             "0046,0106" => {
6962             desc => "Viewing Distance",
6963             vr => { FD => "1" }
6964             },
6965             "0046,0121" => {
6966             desc => "Visual Acuity Type Code Sequence",
6967             vr => { SQ => "1" }
6968             },
6969             "0046,0122" => {
6970             desc => "Visual Acuity Right Eye Sequence",
6971             vr => { SQ => "1" }
6972             },
6973             "0046,0123" => {
6974             desc => "Visual Acuity Left Eye Sequence",
6975             vr => { SQ => "1" }
6976             },
6977             "0046,0124" => {
6978             desc => "Visual Acuity Both Eyes Open Sequence",
6979             vr => { SQ => "1" }
6980             },
6981             "0046,0125" => {
6982             desc => "Viewing Distance Type",
6983             vr => { CS => "1" }
6984             },
6985             "0046,0135" => {
6986             desc => "Visual Acuity Modifiers",
6987             vr => { SS => "2" }
6988             },
6989             "0046,0137" => {
6990             desc => "Decimal Visual Acuity",
6991             vr => { FD => "1" }
6992             },
6993             "0046,0139" => {
6994             desc => "Optotype Detailed Definition",
6995             vr => { LO => "1" }
6996             },
6997             "0046,0145" => {
6998             desc => "Referenced Refractive Measurements Sequence",
6999             vr => { SQ => "1" }
7000             },
7001             "0046,0146" => {
7002             desc => "Sphere Power",
7003             vr => { FD => "1" }
7004             },
7005             "0046,0147" => {
7006             desc => "Cylinder Power",
7007             vr => { FD => "1" }
7008             },
7009             "0050,0004" => {
7010             desc => "Calibration Image",
7011             vr => { CS => "1" }
7012             },
7013             "0050,0010" => {
7014             desc => "Device Sequence",
7015             vr => { SQ => "1" }
7016             },
7017             "0050,0012" => {
7018             desc => "Container Component Type Code Sequence",
7019             vr => { SQ => "1" }
7020             },
7021             "0050,0013" => {
7022             desc => "Container Component Thickness",
7023             vr => { FD => "1" }
7024             },
7025             "0050,0014" => {
7026             desc => "Device Length",
7027             vr => { DS => "1" }
7028             },
7029             "0050,0015" => {
7030             desc => "Container Component Width",
7031             vr => { FD => "1" }
7032             },
7033             "0050,0016" => {
7034             desc => "Device Diameter",
7035             vr => { DS => "1" }
7036             },
7037             "0050,0017" => {
7038             desc => "Device Diameter Units",
7039             vr => { CS => "1" }
7040             },
7041             "0050,0018" => {
7042             desc => "Device Volume",
7043             vr => { DS => "1" }
7044             },
7045             "0050,0019" => {
7046             desc => "Inter-Marker Distance",
7047             vr => { DS => "1" }
7048             },
7049             "0050,001a" => {
7050             desc => "Container Component Material",
7051             vr => { CS => "1" }
7052             },
7053             "0050,001b" => {
7054             desc => "Container Component ID",
7055             vr => { LO => "1" }
7056             },
7057             "0050,001c" => {
7058             desc => "Container Component Length",
7059             vr => { FD => "1" }
7060             },
7061             "0050,001d" => {
7062             desc => "Container Component Diameter",
7063             vr => { FD => "1" }
7064             },
7065             "0050,001e" => {
7066             desc => "Container Component Description",
7067             vr => { LO => "1" }
7068             },
7069             "0050,0020" => {
7070             desc => "Device Description",
7071             vr => { LO => "1" }
7072             },
7073             "0054,0010" => {
7074             desc => "Energy Window Vector",
7075             vr => { US => "1-n" }
7076             },
7077             "0054,0011" => {
7078             desc => "Number of Energy Windows",
7079             vr => { US => "1" }
7080             },
7081             "0054,0012" => {
7082             desc => "Energy Window Information Sequence",
7083             vr => { SQ => "1" }
7084             },
7085             "0054,0013" => {
7086             desc => "Energy Window Range Sequence",
7087             vr => { SQ => "1" }
7088             },
7089             "0054,0014" => {
7090             desc => "Energy Window Lower Limit",
7091             vr => { DS => "1" }
7092             },
7093             "0054,0015" => {
7094             desc => "Energy Window Upper Limit",
7095             vr => { DS => "1" }
7096             },
7097             "0054,0016" => {
7098             desc => "Radiopharmaceutical Information Sequence",
7099             vr => { SQ => "1" }
7100             },
7101             "0054,0017" => {
7102             desc => "Residual Syringe Counts",
7103             vr => { IS => "1" }
7104             },
7105             "0054,0018" => {
7106             desc => "Energy Window Name",
7107             vr => { SH => "1" }
7108             },
7109             "0054,0020" => {
7110             desc => "Detector Vector",
7111             vr => { US => "1-n" }
7112             },
7113             "0054,0021" => {
7114             desc => "Number of Detectors",
7115             vr => { US => "1" }
7116             },
7117             "0054,0022" => {
7118             desc => "Detector Information Sequence",
7119             vr => { SQ => "1" }
7120             },
7121             "0054,0030" => {
7122             desc => "Phase Vector",
7123             vr => { US => "1-n" }
7124             },
7125             "0054,0031" => {
7126             desc => "Number of Phases",
7127             vr => { US => "1" }
7128             },
7129             "0054,0032" => {
7130             desc => "Phase Information Sequence",
7131             vr => { SQ => "1" }
7132             },
7133             "0054,0033" => {
7134             desc => "Number of Frames in Phase",
7135             vr => { US => "1" }
7136             },
7137             "0054,0036" => {
7138             desc => "Phase Delay",
7139             vr => { IS => "1" }
7140             },
7141             "0054,0038" => {
7142             desc => "Pause Between Frames",
7143             vr => { IS => "1" }
7144             },
7145             "0054,0039" => {
7146             desc => "Phase Description",
7147             vr => { CS => "1" }
7148             },
7149             "0054,0050" => {
7150             desc => "Rotation Vector",
7151             vr => { US => "1-n" }
7152             },
7153             "0054,0051" => {
7154             desc => "Number of Rotations",
7155             vr => { US => "1" }
7156             },
7157             "0054,0052" => {
7158             desc => "Rotation Information Sequence",
7159             vr => { SQ => "1" }
7160             },
7161             "0054,0053" => {
7162             desc => "Number of Frames in Rotation",
7163             vr => { US => "1" }
7164             },
7165             "0054,0060" => {
7166             desc => "R-R Interval Vector",
7167             vr => { US => "1-n" }
7168             },
7169             "0054,0061" => {
7170             desc => "Number of R-R Intervals",
7171             vr => { US => "1" }
7172             },
7173             "0054,0062" => {
7174             desc => "Gated Information Sequence",
7175             vr => { SQ => "1" }
7176             },
7177             "0054,0063" => {
7178             desc => "Data Information Sequence",
7179             vr => { SQ => "1" }
7180             },
7181             "0054,0070" => {
7182             desc => "Time Slot Vector",
7183             vr => { US => "1-n" }
7184             },
7185             "0054,0071" => {
7186             desc => "Number of Time Slots",
7187             vr => { US => "1" }
7188             },
7189             "0054,0072" => {
7190             desc => "Time Slot Information Sequence",
7191             vr => { SQ => "1" }
7192             },
7193             "0054,0073" => {
7194             desc => "Time Slot Time",
7195             vr => { DS => "1" }
7196             },
7197             "0054,0080" => {
7198             desc => "Slice Vector",
7199             vr => { US => "1-n" }
7200             },
7201             "0054,0081" => {
7202             desc => "Number of Slices",
7203             vr => { US => "1" }
7204             },
7205             "0054,0090" => {
7206             desc => "Angular View Vector",
7207             vr => { US => "1-n" }
7208             },
7209             "0054,0100" => {
7210             desc => "Time Slice Vector",
7211             vr => { US => "1-n" }
7212             },
7213             "0054,0101" => {
7214             desc => "Number of Time Slices",
7215             vr => { US => "1" }
7216             },
7217             "0054,0200" => {
7218             desc => "Start Angle",
7219             vr => { DS => "1" }
7220             },
7221             "0054,0202" => {
7222             desc => "Type of Detector Motion",
7223             vr => { CS => "1" }
7224             },
7225             "0054,0210" => {
7226             desc => "Trigger Vector",
7227             vr => { IS => "1-n" }
7228             },
7229             "0054,0211" => {
7230             desc => "Number of Triggers in Phase",
7231             vr => { US => "1" }
7232             },
7233             "0054,0220" => {
7234             desc => "View Code Sequence",
7235             vr => { SQ => "1" }
7236             },
7237             "0054,0222" => {
7238             desc => "View Modifier Code Sequence",
7239             vr => { SQ => "1" }
7240             },
7241             "0054,0300" => {
7242             desc => "Radionuclide Code Sequence",
7243             vr => { SQ => "1" }
7244             },
7245             "0054,0302" => {
7246             desc => "Administration Route Code Sequence",
7247             vr => { SQ => "1" }
7248             },
7249             "0054,0304" => {
7250             desc => "Radiopharmaceutical Code Sequence",
7251             vr => { SQ => "1" }
7252             },
7253             "0054,0306" => {
7254             desc => "Calibration Data Sequence",
7255             vr => { SQ => "1" }
7256             },
7257             "0054,0308" => {
7258             desc => "Energy Window Number",
7259             vr => { US => "1" }
7260             },
7261             "0054,0400" => {
7262             desc => "Image ID",
7263             vr => { SH => "1" }
7264             },
7265             "0054,0410" => {
7266             desc => "Patient Orientation Code Sequence",
7267             vr => { SQ => "1" }
7268             },
7269             "0054,0412" => {
7270             desc => "Patient Orientation Modifier Code Sequence",
7271             vr => { SQ => "1" }
7272             },
7273             "0054,0414" => {
7274             desc => "Patient Gantry Relationship Code Sequence",
7275             vr => { SQ => "1" }
7276             },
7277             "0054,0500" => {
7278             desc => "Slice Progression Direction",
7279             vr => { CS => "1" }
7280             },
7281             "0054,1000" => {
7282             desc => "Series Type",
7283             vr => { CS => "2" }
7284             },
7285             "0054,1001" => {
7286             desc => "Units",
7287             vr => { CS => "1" }
7288             },
7289             "0054,1002" => {
7290             desc => "Counts Source",
7291             vr => { CS => "1" }
7292             },
7293             "0054,1004" => {
7294             desc => "Reprojection Method",
7295             vr => { CS => "1" }
7296             },
7297             "0054,1100" => {
7298             desc => "Randoms Correction Method",
7299             vr => { CS => "1" }
7300             },
7301             "0054,1101" => {
7302             desc => "Attenuation Correction Method",
7303             vr => { LO => "1" }
7304             },
7305             "0054,1102" => {
7306             desc => "Decay Correction",
7307             vr => { CS => "1" }
7308             },
7309             "0054,1103" => {
7310             desc => "Reconstruction Method",
7311             vr => { LO => "1" }
7312             },
7313             "0054,1104" => {
7314             desc => "Detector Lines of Response Used",
7315             vr => { LO => "1" }
7316             },
7317             "0054,1105" => {
7318             desc => "Scatter Correction Method",
7319             vr => { LO => "1" }
7320             },
7321             "0054,1200" => {
7322             desc => "Axial Acceptance",
7323             vr => { DS => "1" }
7324             },
7325             "0054,1201" => {
7326             desc => "Axial Mash",
7327             vr => { IS => "2" }
7328             },
7329             "0054,1202" => {
7330             desc => "Transverse Mash",
7331             vr => { IS => "1" }
7332             },
7333             "0054,1203" => {
7334             desc => "Detector Element Size",
7335             vr => { DS => "2" }
7336             },
7337             "0054,1210" => {
7338             desc => "Coincidence Window Width",
7339             vr => { DS => "1" }
7340             },
7341             "0054,1220" => {
7342             desc => "Secondary Counts Type",
7343             vr => { CS => "1-n" }
7344             },
7345             "0054,1300" => {
7346             desc => "Frame Reference Time",
7347             vr => { DS => "1" }
7348             },
7349             "0054,1310" => {
7350             desc => "Primary (Prompts) Counts Accumulated",
7351             vr => { IS => "1" }
7352             },
7353             "0054,1311" => {
7354             desc => "Secondary Counts Accumulated",
7355             vr => { IS => "1-n" }
7356             },
7357             "0054,1320" => {
7358             desc => "Slice Sensitivity Factor",
7359             vr => { DS => "1" }
7360             },
7361             "0054,1321" => {
7362             desc => "Decay Factor",
7363             vr => { DS => "1" }
7364             },
7365             "0054,1322" => {
7366             desc => "Dose Calibration Factor",
7367             vr => { DS => "1" }
7368             },
7369             "0054,1323" => {
7370             desc => "Scatter Fraction Factor",
7371             vr => { DS => "1" }
7372             },
7373             "0054,1324" => {
7374             desc => "Dead Time Factor",
7375             vr => { DS => "1" }
7376             },
7377             "0054,1330" => {
7378             desc => "Image Index",
7379             vr => { US => "1" }
7380             },
7381             "0054,1400" => {
7382             desc => "Counts Included",
7383             vr => { CS => "1-n" },
7384             ret => 1
7385             },
7386             "0054,1401" => {
7387             desc => "Dead Time Correction Flag",
7388             vr => { CS => "1" },
7389             ret => 1
7390             },
7391             "0060,3000" => {
7392             desc => "Histogram Sequence",
7393             vr => { SQ => "1" }
7394             },
7395             "0060,3002" => {
7396             desc => "Histogram Number of Bins",
7397             vr => { US => "1" }
7398             },
7399             "0060,3004" => {
7400             desc => "Histogram First Bin Value",
7401             vr => { SS => "1", US => "1" }
7402             },
7403             "0060,3006" => {
7404             desc => "Histogram Last Bin Value",
7405             vr => { SS => "1", US => "1" }
7406             },
7407             "0060,3008" => {
7408             desc => "Histogram Bin Width",
7409             vr => { US => "1" }
7410             },
7411             "0060,3010" => {
7412             desc => "Histogram Explanation",
7413             vr => { LO => "1" }
7414             },
7415             "0060,3020" => {
7416             desc => "Histogram Data",
7417             vr => { UL => "1-n" }
7418             },
7419             "0062,0001" => {
7420             desc => "Segmentation Type",
7421             vr => { CS => "1" }
7422             },
7423             "0062,0002" => {
7424             desc => "Segment Sequence",
7425             vr => { SQ => "1" }
7426             },
7427             "0062,0003" => {
7428             desc => "Segmented Property Category Code Sequence",
7429             vr => { SQ => "1" }
7430             },
7431             "0062,0004" => {
7432             desc => "Segment Number",
7433             vr => { US => "1" }
7434             },
7435             "0062,0005" => {
7436             desc => "Segment Label",
7437             vr => { LO => "1" }
7438             },
7439             "0062,0006" => {
7440             desc => "Segment Description",
7441             vr => { ST => "1" }
7442             },
7443             "0062,0008" => {
7444             desc => "Segment Algorithm Type",
7445             vr => { CS => "1" }
7446             },
7447             "0062,0009" => {
7448             desc => "Segment Algorithm Name",
7449             vr => { LO => "1" }
7450             },
7451             "0062,000a" => {
7452             desc => "Segment Identification Sequence",
7453             vr => { SQ => "1" }
7454             },
7455             "0062,000b" => {
7456             desc => "Referenced Segment Number",
7457             vr => { US => "1-n" }
7458             },
7459             "0062,000c" => {
7460             desc => "Recommended Display Grayscale Value",
7461             vr => { US => "1" }
7462             },
7463             "0062,000d" => {
7464             desc => "Recommended Display CIELab Value",
7465             vr => { US => "3" }
7466             },
7467             "0062,000e" => {
7468             desc => "Maximum Fractional Value",
7469             vr => { US => "1" }
7470             },
7471             "0062,000f" => {
7472             desc => "Segmented Property Type Code Sequence",
7473             vr => { SQ => "1" }
7474             },
7475             "0062,0010" => {
7476             desc => "Segmentation Fractional Type",
7477             vr => { CS => "1" }
7478             },
7479             "0064,0002" => {
7480             desc => "Deformable Registration Sequence",
7481             vr => { SQ => "1" }
7482             },
7483             "0064,0003" => {
7484             desc => "Source Frame of Reference UID",
7485             vr => { UI => "1" }
7486             },
7487             "0064,0005" => {
7488             desc => "Deformable Registration Grid Sequence",
7489             vr => { SQ => "1" }
7490             },
7491             "0064,0007" => {
7492             desc => "Grid Dimensions",
7493             vr => { UL => "3" }
7494             },
7495             "0064,0008" => {
7496             desc => "Grid Resolution",
7497             vr => { FD => "3" }
7498             },
7499             "0064,0009" => {
7500             desc => "Vector Grid Data",
7501             vr => { OF => "1" }
7502             },
7503             "0064,000f" => {
7504             desc => "Pre Deformation Matrix Registration Sequence",
7505             vr => { SQ => "1" }
7506             },
7507             "0064,0010" => {
7508             desc => "Post Deformation Matrix Registration Sequence",
7509             vr => { SQ => "1" }
7510             },
7511             "0066,0001" => {
7512             desc => "Number of Surfaces",
7513             vr => { UL => "1" }
7514             },
7515             "0066,0002" => {
7516             desc => "Surface Sequence",
7517             vr => { SQ => "1" }
7518             },
7519             "0066,0003" => {
7520             desc => "Surface Number",
7521             vr => { UL => "1" }
7522             },
7523             "0066,0004" => {
7524             desc => "Surface Comments",
7525             vr => { LT => "1" }
7526             },
7527             "0066,0009" => {
7528             desc => "Surface Processing",
7529             vr => { CS => "1" }
7530             },
7531             "0066,000a" => {
7532             desc => "Surface Processing Ratio",
7533             vr => { FL => "1" }
7534             },
7535             "0066,000b" => {
7536             desc => "Surface Processing Description",
7537             vr => { LO => "1" }
7538             },
7539             "0066,000c" => {
7540             desc => "Recommended Presentation Opacity",
7541             vr => { FL => "1" }
7542             },
7543             "0066,000d" => {
7544             desc => "Recommended Presentation Type",
7545             vr => { CS => "1" }
7546             },
7547             "0066,000e" => {
7548             desc => "Finite Volume",
7549             vr => { CS => "1" }
7550             },
7551             "0066,0010" => {
7552             desc => "Manifold",
7553             vr => { CS => "1" }
7554             },
7555             "0066,0011" => {
7556             desc => "Surface Points Sequence",
7557             vr => { SQ => "1" }
7558             },
7559             "0066,0012" => {
7560             desc => "Surface Points Normals Sequence",
7561             vr => { SQ => "1" }
7562             },
7563             "0066,0013" => {
7564             desc => "Surface Mesh Primitives Sequence",
7565             vr => { SQ => "1" }
7566             },
7567             "0066,0015" => {
7568             desc => "Number of Surface Points",
7569             vr => { UL => "1" }
7570             },
7571             "0066,0016" => {
7572             desc => "Point Coordinates Data",
7573             vr => { OF => "1" }
7574             },
7575             "0066,0017" => {
7576             desc => "Point Position Accuracy",
7577             vr => { FL => "3" }
7578             },
7579             "0066,0018" => {
7580             desc => "Mean Point Distance",
7581             vr => { FL => "1" }
7582             },
7583             "0066,0019" => {
7584             desc => "Maximum Point Distance",
7585             vr => { FL => "1" }
7586             },
7587             "0066,001a" => {
7588             desc => "Points Bounding Box Coordinates",
7589             vr => { FL => "6" }
7590             },
7591             "0066,001b" => {
7592             desc => "Axis of Rotation",
7593             vr => { FL => "3" }
7594             },
7595             "0066,001c" => {
7596             desc => "Center of Rotation",
7597             vr => { FL => "3" }
7598             },
7599             "0066,001e" => {
7600             desc => "Number of Vectors",
7601             vr => { UL => "1" }
7602             },
7603             "0066,001f" => {
7604             desc => "Vector Dimensionality",
7605             vr => { US => "1" }
7606             },
7607             "0066,0020" => {
7608             desc => "Vector Accuracy",
7609             vr => { FL => "1-n" }
7610             },
7611             "0066,0021" => {
7612             desc => "Vector Coordinate Data",
7613             vr => { OF => "1" }
7614             },
7615             "0066,0023" => {
7616             desc => "Triangle Point Index List",
7617             vr => { OW => "1" }
7618             },
7619             "0066,0024" => {
7620             desc => "Edge Point Index List",
7621             vr => { OW => "1" }
7622             },
7623             "0066,0025" => {
7624             desc => "Vertex Point Index List",
7625             vr => { OW => "1" }
7626             },
7627             "0066,0026" => {
7628             desc => "Triangle Strip Sequence",
7629             vr => { SQ => "1" }
7630             },
7631             "0066,0027" => {
7632             desc => "Triangle Fan Sequence",
7633             vr => { SQ => "1" }
7634             },
7635             "0066,0028" => {
7636             desc => "Line Sequence",
7637             vr => { SQ => "1" }
7638             },
7639             "0066,0029" => {
7640             desc => "Primitive Point Index List",
7641             vr => { OW => "1" }
7642             },
7643             "0066,002a" => {
7644             desc => "Surface Count",
7645             vr => { UL => "1" }
7646             },
7647             "0066,002b" => {
7648             desc => "Referenced Surface Sequence",
7649             vr => { SQ => "1" }
7650             },
7651             "0066,002c" => {
7652             desc => "Referenced Surface Number",
7653             vr => { UL => "1" }
7654             },
7655             "0066,002d" => {
7656             desc => "Segment Surface Generation Algorithm Identification Sequence",
7657             vr => { SQ => "1" }
7658             },
7659             "0066,002e" => {
7660             desc => "Segment Surface Source Instance Sequence",
7661             vr => { SQ => "1" }
7662             },
7663             "0066,002f" => {
7664             desc => "Algorithm Family Code Sequence",
7665             vr => { SQ => "1" }
7666             },
7667             "0066,0030" => {
7668             desc => "Algorithm Name Code Sequence",
7669             vr => { SQ => "1" }
7670             },
7671             "0066,0031" => {
7672             desc => "Algorithm Version",
7673             vr => { LO => "1" }
7674             },
7675             "0066,0032" => {
7676             desc => "Algorithm Parameters",
7677             vr => { LT => "1" }
7678             },
7679             "0066,0034" => {
7680             desc => "Facet Sequence",
7681             vr => { SQ => "1" }
7682             },
7683             "0066,0035" => {
7684             desc => "Surface Processing Algorithm Identification Sequence",
7685             vr => { SQ => "1" }
7686             },
7687             "0066,0036" => {
7688             desc => "Algorithm Name",
7689             vr => { LO => "1" }
7690             },
7691             "0070,0001" => {
7692             desc => "Graphic Annotation Sequence",
7693             vr => { SQ => "1" }
7694             },
7695             "0070,0002" => {
7696             desc => "Graphic Layer",
7697             vr => { CS => "1" }
7698             },
7699             "0070,0003" => {
7700             desc => "Bounding Box Annotation Units",
7701             vr => { CS => "1" }
7702             },
7703             "0070,0004" => {
7704             desc => "Anchor Point Annotation Units",
7705             vr => { CS => "1" }
7706             },
7707             "0070,0005" => {
7708             desc => "Graphic Annotation Units",
7709             vr => { CS => "1" }
7710             },
7711             "0070,0006" => {
7712             desc => "Unformatted Text Value",
7713             vr => { ST => "1" }
7714             },
7715             "0070,0008" => {
7716             desc => "Text Object Sequence",
7717             vr => { SQ => "1" }
7718             },
7719             "0070,0009" => {
7720             desc => "Graphic Object Sequence",
7721             vr => { SQ => "1" }
7722             },
7723             "0070,0010" => {
7724             desc => "Bounding Box Top Left Hand Corner",
7725             vr => { FL => "2" }
7726             },
7727             "0070,0011" => {
7728             desc => "Bounding Box Bottom Right Hand Corner",
7729             vr => { FL => "2" }
7730             },
7731             "0070,0012" => {
7732             desc => "Bounding Box Text Horizontal Justification",
7733             vr => { CS => "1" }
7734             },
7735             "0070,0014" => {
7736             desc => "Anchor Point",
7737             vr => { FL => "2" }
7738             },
7739             "0070,0015" => {
7740             desc => "Anchor Point Visibility",
7741             vr => { CS => "1" }
7742             },
7743             "0070,0020" => {
7744             desc => "Graphic Dimensions ",
7745             vr => { US => "1" }
7746             },
7747             "0070,0021" => {
7748             desc => "Number of Graphic Points",
7749             vr => { US => "1" }
7750             },
7751             "0070,0022" => {
7752             desc => "Graphic Data",
7753             vr => { FL => "2-n" }
7754             },
7755             "0070,0023" => {
7756             desc => "Graphic Type",
7757             vr => { CS => "1" }
7758             },
7759             "0070,0024" => {
7760             desc => "Graphic Filled",
7761             vr => { CS => "1" }
7762             },
7763             "0070,0040" => {
7764             desc => "Image Rotation (Retired)",
7765             vr => { IS => "1" },
7766             ret => 1
7767             },
7768             "0070,0041" => {
7769             desc => "Image Horizontal Flip",
7770             vr => { CS => "1" }
7771             },
7772             "0070,0042" => {
7773             desc => "Image Rotation ",
7774             vr => { US => "1" }
7775             },
7776             "0070,0050" => {
7777             desc => "Displayed Area Top Left Hand Corner (Trial)",
7778             vr => { US => "2" },
7779             ret => 1
7780             },
7781             "0070,0051" => {
7782             desc => "Displayed Area Bottom Right Hand Corner (Trial)",
7783             vr => { US => "2" },
7784             ret => 1
7785             },
7786             "0070,0052" => {
7787             desc => "Displayed Area Top Left Hand Corner",
7788             vr => { SL => "2" }
7789             },
7790             "0070,0053" => {
7791             desc => "Displayed Area Bottom Right Hand Corner",
7792             vr => { SL => "2" }
7793             },
7794             "0070,005a" => {
7795             desc => "Displayed Area Selection Sequence",
7796             vr => { SQ => "1" }
7797             },
7798             "0070,0060" => {
7799             desc => "Graphic Layer Sequence",
7800             vr => { SQ => "1" }
7801             },
7802             "0070,0062" => {
7803             desc => "Graphic Layer Order",
7804             vr => { IS => "1" }
7805             },
7806             "0070,0066" => {
7807             desc => "Graphic Layer Recommended Display Grayscale Value",
7808             vr => { US => "1" }
7809             },
7810             "0070,0067" => {
7811             desc => "Graphic Layer Recommended Display RGB Value",
7812             vr => { US => "3" },
7813             ret => 1
7814             },
7815             "0070,0068" => {
7816             desc => "Graphic Layer Description",
7817             vr => { LO => "1" }
7818             },
7819             "0070,0080" => {
7820             desc => "Content Label",
7821             vr => { CS => "1" }
7822             },
7823             "0070,0081" => {
7824             desc => "Content Description",
7825             vr => { LO => "1" }
7826             },
7827             "0070,0082" => {
7828             desc => "Presentation Creation Date",
7829             vr => { DA => "1" }
7830             },
7831             "0070,0083" => {
7832             desc => "Presentation Creation Time",
7833             vr => { TM => "1" }
7834             },
7835             "0070,0084" => {
7836             desc => "Content Creator's Name",
7837             vr => { PN => "1" }
7838             },
7839             "0070,0086" => {
7840             desc => "Content Creator's Identification Code Sequence",
7841             vr => { SQ => "1" }
7842             },
7843             "0070,0087" => {
7844             desc => "Alternate Content Description Sequence",
7845             vr => { SQ => "1" }
7846             },
7847             "0070,0100" => {
7848             desc => "Presentation Size Mode",
7849             vr => { CS => "1" }
7850             },
7851             "0070,0101" => {
7852             desc => "Presentation Pixel Spacing",
7853             vr => { DS => "2" }
7854             },
7855             "0070,0102" => {
7856             desc => "Presentation Pixel Aspect Ratio",
7857             vr => { IS => "2" }
7858             },
7859             "0070,0103" => {
7860             desc => "Presentation Pixel Magnification Ratio",
7861             vr => { FL => "1" }
7862             },
7863             "0070,0306" => {
7864             desc => "Shape Type",
7865             vr => { CS => "1" }
7866             },
7867             "0070,0308" => {
7868             desc => "Registration Sequence",
7869             vr => { SQ => "1" }
7870             },
7871             "0070,0309" => {
7872             desc => "Matrix Registration Sequence",
7873             vr => { SQ => "1" }
7874             },
7875             "0070,030a" => {
7876             desc => "Matrix Sequence",
7877             vr => { SQ => "1" }
7878             },
7879             "0070,030c" => {
7880             desc => "Frame of Reference Transformation Matrix Type",
7881             vr => { CS => "1" }
7882             },
7883             "0070,030d" => {
7884             desc => "Registration Type Code Sequence",
7885             vr => { SQ => "1" }
7886             },
7887             "0070,030f" => {
7888             desc => "Fiducial Description",
7889             vr => { ST => "1" }
7890             },
7891             "0070,0310" => {
7892             desc => "Fiducial Identifier",
7893             vr => { SH => "1" }
7894             },
7895             "0070,0311" => {
7896             desc => "Fiducial Identifier Code Sequence",
7897             vr => { SQ => "1" }
7898             },
7899             "0070,0312" => {
7900             desc => "Contour Uncertainty Radius",
7901             vr => { FD => "1" }
7902             },
7903             "0070,0314" => {
7904             desc => "Used Fiducials Sequence",
7905             vr => { SQ => "1" }
7906             },
7907             "0070,0318" => {
7908             desc => "Graphic Coordinates Data Sequence",
7909             vr => { SQ => "1" }
7910             },
7911             "0070,031a" => {
7912             desc => "Fiducial UID",
7913             vr => { UI => "1" }
7914             },
7915             "0070,031c" => {
7916             desc => "Fiducial Set Sequence",
7917             vr => { SQ => "1" }
7918             },
7919             "0070,031e" => {
7920             desc => "Fiducial Sequence",
7921             vr => { SQ => "1" }
7922             },
7923             "0070,0401" => {
7924             desc => "Graphic Layer Recommended Display CIELab Value",
7925             vr => { US => "3" }
7926             },
7927             "0070,0402" => {
7928             desc => "Blending Sequence",
7929             vr => { SQ => "1" }
7930             },
7931             "0070,0403" => {
7932             desc => "Relative Opacity",
7933             vr => { FL => "1" }
7934             },
7935             "0070,0404" => {
7936             desc => "Referenced Spatial Registration Sequence",
7937             vr => { SQ => "1" }
7938             },
7939             "0070,0405" => {
7940             desc => "Blending Position",
7941             vr => { CS => "1" }
7942             },
7943             "0072,0002" => {
7944             desc => "Hanging Protocol Name",
7945             vr => { SH => "1" }
7946             },
7947             "0072,0004" => {
7948             desc => "Hanging Protocol Description",
7949             vr => { LO => "1" }
7950             },
7951             "0072,0006" => {
7952             desc => "Hanging Protocol Level",
7953             vr => { CS => "1" }
7954             },
7955             "0072,0008" => {
7956             desc => "Hanging Protocol Creator",
7957             vr => { LO => "1" }
7958             },
7959             "0072,000a" => {
7960             desc => "Hanging Protocol Creation DateTime",
7961             vr => { DT => "1" }
7962             },
7963             "0072,000c" => {
7964             desc => "Hanging Protocol Definition Sequence",
7965             vr => { SQ => "1" }
7966             },
7967             "0072,000e" => {
7968             desc => "Hanging Protocol User Identification Code Sequence",
7969             vr => { SQ => "1" }
7970             },
7971             "0072,0010" => {
7972             desc => "Hanging Protocol User Group Name",
7973             vr => { LO => "1" }
7974             },
7975             "0072,0012" => {
7976             desc => "Source Hanging Protocol Sequence",
7977             vr => { SQ => "1" }
7978             },
7979             "0072,0014" => {
7980             desc => "Number of Priors Referenced",
7981             vr => { US => "1" }
7982             },
7983             "0072,0020" => {
7984             desc => "Image Sets Sequence",
7985             vr => { SQ => "1" }
7986             },
7987             "0072,0022" => {
7988             desc => "Image Set Selector Sequence",
7989             vr => { SQ => "1" }
7990             },
7991             "0072,0024" => {
7992             desc => "Image Set Selector Usage Flag",
7993             vr => { CS => "1" }
7994             },
7995             "0072,0026" => {
7996             desc => "Selector Attribute",
7997             vr => { AT => "1" }
7998             },
7999             "0072,0028" => {
8000             desc => "Selector Value Number",
8001             vr => { US => "1" }
8002             },
8003             "0072,0030" => {
8004             desc => "Time Based Image Sets Sequence",
8005             vr => { SQ => "1" }
8006             },
8007             "0072,0032" => {
8008             desc => "Image Set Number",
8009             vr => { US => "1" }
8010             },
8011             "0072,0034" => {
8012             desc => "Image Set Selector Category",
8013             vr => { CS => "1" }
8014             },
8015             "0072,0038" => {
8016             desc => "Relative Time",
8017             vr => { US => "2" }
8018             },
8019             "0072,003a" => {
8020             desc => "Relative Time Units",
8021             vr => { CS => "1" }
8022             },
8023             "0072,003c" => {
8024             desc => "Abstract Prior Value",
8025             vr => { SS => "2" }
8026             },
8027             "0072,003e" => {
8028             desc => "Abstract Prior Code Sequence",
8029             vr => { SQ => "1" }
8030             },
8031             "0072,0040" => {
8032             desc => "Image Set Label",
8033             vr => { LO => "1" }
8034             },
8035             "0072,0050" => {
8036             desc => "Selector Attribute VR",
8037             vr => { CS => "1" }
8038             },
8039             "0072,0052" => {
8040             desc => "Selector Sequence Pointer",
8041             vr => { AT => "1" }
8042             },
8043             "0072,0054" => {
8044             desc => "Selector Sequence Pointer Private Creator",
8045             vr => { LO => "1" }
8046             },
8047             "0072,0056" => {
8048             desc => "Selector Attribute Private Creator",
8049             vr => { LO => "1" }
8050             },
8051             "0072,0060" => {
8052             desc => "Selector AT Value",
8053             vr => { AT => "1-n" }
8054             },
8055             "0072,0062" => {
8056             desc => "Selector CS Value",
8057             vr => { CS => "1-n" }
8058             },
8059             "0072,0064" => {
8060             desc => "Selector IS Value",
8061             vr => { IS => "1-n" }
8062             },
8063             "0072,0066" => {
8064             desc => "Selector LO Value",
8065             vr => { LO => "1-n" }
8066             },
8067             "0072,0068" => {
8068             desc => "Selector LT Value",
8069             vr => { LT => "1" }
8070             },
8071             "0072,006a" => {
8072             desc => "Selector PN Value",
8073             vr => { PN => "1-n" }
8074             },
8075             "0072,006c" => {
8076             desc => "Selector SH Value",
8077             vr => { SH => "1-n" }
8078             },
8079             "0072,006e" => {
8080             desc => "Selector ST Value",
8081             vr => { ST => "1" }
8082             },
8083             "0072,0070" => {
8084             desc => "Selector UT Value",
8085             vr => { UT => "1" }
8086             },
8087             "0072,0072" => {
8088             desc => "Selector DS Value",
8089             vr => { DS => "1-n" }
8090             },
8091             "0072,0074" => {
8092             desc => "Selector FD Value",
8093             vr => { FD => "1-n" }
8094             },
8095             "0072,0076" => {
8096             desc => "Selector FL Value",
8097             vr => { FL => "1-n" }
8098             },
8099             "0072,0078" => {
8100             desc => "Selector UL Value",
8101             vr => { UL => "1-n" }
8102             },
8103             "0072,007a" => {
8104             desc => "Selector US Value",
8105             vr => { US => "1-n" }
8106             },
8107             "0072,007c" => {
8108             desc => "Selector SL Value",
8109             vr => { SL => "1-n" }
8110             },
8111             "0072,007e" => {
8112             desc => "Selector SS Value",
8113             vr => { SS => "1-n" }
8114             },
8115             "0072,0080" => {
8116             desc => "Selector Code Sequence Value",
8117             vr => { SQ => "1" }
8118             },
8119             "0072,0100" => {
8120             desc => "Number of Screens",
8121             vr => { US => "1" }
8122             },
8123             "0072,0102" => {
8124             desc => "Nominal Screen Definition Sequence",
8125             vr => { SQ => "1" }
8126             },
8127             "0072,0104" => {
8128             desc => "Number of Vertical Pixels",
8129             vr => { US => "1" }
8130             },
8131             "0072,0106" => {
8132             desc => "Number of Horizontal Pixels",
8133             vr => { US => "1" }
8134             },
8135             "0072,0108" => {
8136             desc => "Display Environment Spatial Position",
8137             vr => { FD => "4" }
8138             },
8139             "0072,010a" => {
8140             desc => "Screen Minimum Grayscale Bit Depth",
8141             vr => { US => "1" }
8142             },
8143             "0072,010c" => {
8144             desc => "Screen Minimum Color Bit Depth",
8145             vr => { US => "1" }
8146             },
8147             "0072,010e" => {
8148             desc => "Application Maximum Repaint Time",
8149             vr => { US => "1" }
8150             },
8151             "0072,0200" => {
8152             desc => "Display Sets Sequence",
8153             vr => { SQ => "1" }
8154             },
8155             "0072,0202" => {
8156             desc => "Display Set Number",
8157             vr => { US => "1" }
8158             },
8159             "0072,0203" => {
8160             desc => "Display Set Label",
8161             vr => { LO => "1" }
8162             },
8163             "0072,0204" => {
8164             desc => "Display Set Presentation Group",
8165             vr => { US => "1" }
8166             },
8167             "0072,0206" => {
8168             desc => "Display Set Presentation Group Description",
8169             vr => { LO => "1" }
8170             },
8171             "0072,0208" => {
8172             desc => "Partial Data Display Handling",
8173             vr => { CS => "1" }
8174             },
8175             "0072,0210" => {
8176             desc => "Synchronized Scrolling Sequence",
8177             vr => { SQ => "1" }
8178             },
8179             "0072,0212" => {
8180             desc => "Display Set Scrolling Group",
8181             vr => { US => "2-n" }
8182             },
8183             "0072,0214" => {
8184             desc => "Navigation Indicator Sequence",
8185             vr => { SQ => "1" }
8186             },
8187             "0072,0216" => {
8188             desc => "Navigation Display Set ",
8189             vr => { US => "1" }
8190             },
8191             "0072,0218" => {
8192             desc => "Reference Display Sets",
8193             vr => { US => "1-n" }
8194             },
8195             "0072,0300" => {
8196             desc => "Image Boxes Sequence",
8197             vr => { SQ => "1" }
8198             },
8199             "0072,0302" => {
8200             desc => "Image Box Number",
8201             vr => { US => "1" }
8202             },
8203             "0072,0304" => {
8204             desc => "Image Box Layout Type",
8205             vr => { CS => "1" }
8206             },
8207             "0072,0306" => {
8208             desc => "Image Box Tile Horizontal Dimension",
8209             vr => { US => "1" }
8210             },
8211             "0072,0308" => {
8212             desc => "Image Box Tile Vertical Dimension",
8213             vr => { US => "1" }
8214             },
8215             "0072,0310" => {
8216             desc => "Image Box Scroll Direction",
8217             vr => { CS => "1" }
8218             },
8219             "0072,0312" => {
8220             desc => "Image Box Small Scroll Type",
8221             vr => { CS => "1" }
8222             },
8223             "0072,0314" => {
8224             desc => "Image Box Small Scroll Amount",
8225             vr => { US => "1" }
8226             },
8227             "0072,0316" => {
8228             desc => "Image Box Large Scroll Type",
8229             vr => { CS => "1" }
8230             },
8231             "0072,0318" => {
8232             desc => "Image Box Large Scroll Amount",
8233             vr => { US => "1" }
8234             },
8235             "0072,0320" => {
8236             desc => "Image Box Overlap Priority",
8237             vr => { US => "1" }
8238             },
8239             "0072,0330" => {
8240             desc => "Cine Relative to Real-Time",
8241             vr => { FD => "1" }
8242             },
8243             "0072,0400" => {
8244             desc => "Filter Operations Sequence",
8245             vr => { SQ => "1" }
8246             },
8247             "0072,0402" => {
8248             desc => "Filter-by Category",
8249             vr => { CS => "1" }
8250             },
8251             "0072,0404" => {
8252             desc => "Filter-by Attribute Presence",
8253             vr => { CS => "1" }
8254             },
8255             "0072,0406" => {
8256             desc => "Filter-by Operator",
8257             vr => { CS => "1" }
8258             },
8259             "0072,0420" => {
8260             desc => "Structured Display Background CIELab Value",
8261             vr => { US => "3" }
8262             },
8263             "0072,0421" => {
8264             desc => "Empty Image Box CIELab Value",
8265             vr => { US => "3" }
8266             },
8267             "0072,0422" => {
8268             desc => "Structured Display Image Box Sequence",
8269             vr => { SQ => "1" }
8270             },
8271             "0072,0424" => {
8272             desc => "Structured Display Text Box Sequence",
8273             vr => { SQ => "1" }
8274             },
8275             "0072,0427" => {
8276             desc => "Referenced First Frame Sequence",
8277             vr => { SQ => "1" }
8278             },
8279             "0072,0430" => {
8280             desc => "Image Box Synchronization Sequence",
8281             vr => { SQ => "1" }
8282             },
8283             "0072,0432" => {
8284             desc => "Synchronized Image Box List",
8285             vr => { US => "2-n" }
8286             },
8287             "0072,0434" => {
8288             desc => "Type of Synchronization",
8289             vr => { CS => "1" }
8290             },
8291             "0072,0500" => {
8292             desc => "Blending Operation Type",
8293             vr => { CS => "1" }
8294             },
8295             "0072,0510" => {
8296             desc => "Reformatting Operation Type",
8297             vr => { CS => "1" }
8298             },
8299             "0072,0512" => {
8300             desc => "Reformatting Thickness",
8301             vr => { FD => "1" }
8302             },
8303             "0072,0514" => {
8304             desc => "Reformatting Interval",
8305             vr => { FD => "1" }
8306             },
8307             "0072,0516" => {
8308             desc => "Reformatting Operation Initial View Direction",
8309             vr => { CS => "1" }
8310             },
8311             "0072,0520" => {
8312             desc => "3D Rendering Type",
8313             vr => { CS => "1-n" }
8314             },
8315             "0072,0600" => {
8316             desc => "Sorting Operations Sequence",
8317             vr => { SQ => "1" }
8318             },
8319             "0072,0602" => {
8320             desc => "Sort-by Category",
8321             vr => { CS => "1" }
8322             },
8323             "0072,0604" => {
8324             desc => "Sorting Direction",
8325             vr => { CS => "1" }
8326             },
8327             "0072,0700" => {
8328             desc => "Display Set Patient Orientation",
8329             vr => { CS => "2" }
8330             },
8331             "0072,0702" => {
8332             desc => "VOI Type",
8333             vr => { CS => "1" }
8334             },
8335             "0072,0704" => {
8336             desc => "Pseudo-Color Type",
8337             vr => { CS => "1" }
8338             },
8339             "0072,0706" => {
8340             desc => "Show Grayscale Inverted",
8341             vr => { CS => "1" }
8342             },
8343             "0072,0710" => {
8344             desc => "Show Image True Size Flag",
8345             vr => { CS => "1" }
8346             },
8347             "0072,0712" => {
8348             desc => "Show Graphic Annotation Flag",
8349             vr => { CS => "1" }
8350             },
8351             "0072,0714" => {
8352             desc => "Show Patient Demographics Flag",
8353             vr => { CS => "1" }
8354             },
8355             "0072,0716" => {
8356             desc => "Show Acquisition Techniques Flag",
8357             vr => { CS => "1" }
8358             },
8359             "0072,0717" => {
8360             desc => "Display Set Horizontal Justification ",
8361             vr => { CS => "1" }
8362             },
8363             "0072,0718" => {
8364             desc => "Display Set Vertical Justification",
8365             vr => { CS => "1" }
8366             },
8367             "0074,1000" => {
8368             desc => "Unified Procedure Step State",
8369             vr => { CS => "1" }
8370             },
8371             "0074,1002" => {
8372             desc => "Unified Procedure Step Progress Information Sequence",
8373             vr => { SQ => "1" }
8374             },
8375             "0074,1004" => {
8376             desc => "Unified Procedure Step Progress",
8377             vr => { DS => "1" }
8378             },
8379             "0074,1006" => {
8380             desc => "Unified Procedure Step Progress Description",
8381             vr => { ST => "1" }
8382             },
8383             "0074,1008" => {
8384             desc => "Unified Procedure Step Communications URI Sequence",
8385             vr => { SQ => "1" }
8386             },
8387             "0074,100a" => {
8388             desc => "Contact URI",
8389             vr => { ST => "1" }
8390             },
8391             "0074,100c" => {
8392             desc => "Contact Display Name",
8393             vr => { LO => "1" }
8394             },
8395             "0074,100e" => {
8396             desc => "Unified Procedure Step Discontinuation Reason Code Sequence",
8397             vr => { SQ => "1" }
8398             },
8399             "0074,1020" => {
8400             desc => "Beam Task Sequence",
8401             vr => { SQ => "1" }
8402             },
8403             "0074,1022" => {
8404             desc => "Beam Task Type",
8405             vr => { CS => "1" }
8406             },
8407             "0074,1024" => {
8408             desc => "Beam Order Index",
8409             vr => { IS => "1" }
8410             },
8411             "0074,1030" => {
8412             desc => "Delivery Verification Image Sequence",
8413             vr => { SQ => "1" }
8414             },
8415             "0074,1032" => {
8416             desc => "Verification Image Timing",
8417             vr => { CS => "1" }
8418             },
8419             "0074,1034" => {
8420             desc => "Double Exposure Flag",
8421             vr => { CS => "1" }
8422             },
8423             "0074,1036" => {
8424             desc => "Double Exposure Ordering",
8425             vr => { CS => "1" }
8426             },
8427             "0074,1038" => {
8428             desc => "Double Exposure Meterset",
8429             vr => { DS => "1" }
8430             },
8431             "0074,103a" => {
8432             desc => "Double Exposure Field Delta",
8433             vr => { DS => "4" }
8434             },
8435             "0074,1040" => {
8436             desc => "Related Reference RT Image Sequence",
8437             vr => { SQ => "1" }
8438             },
8439             "0074,1042" => {
8440             desc => "General Machine Verification Sequence",
8441             vr => { SQ => "1" }
8442             },
8443             "0074,1044" => {
8444             desc => "Conventional Machine Verification Sequence",
8445             vr => { SQ => "1" }
8446             },
8447             "0074,1046" => {
8448             desc => "Ion Machine Verification Sequence",
8449             vr => { SQ => "1" }
8450             },
8451             "0074,1048" => {
8452             desc => "Failed Attributes Sequence",
8453             vr => { SQ => "1" }
8454             },
8455             "0074,104a" => {
8456             desc => "Overridden Attributes Sequence",
8457             vr => { SQ => "1" }
8458             },
8459             "0074,104c" => {
8460             desc => "Conventional Control Point Verification Sequence",
8461             vr => { SQ => "1" }
8462             },
8463             "0074,104e" => {
8464             desc => "Ion Control Point Verification Sequence",
8465             vr => { SQ => "1" }
8466             },
8467             "0074,1050" => {
8468             desc => "Attribute Occurrence Sequence",
8469             vr => { SQ => "1" }
8470             },
8471             "0074,1052" => {
8472             desc => "Attribute Occurrence Pointer",
8473             vr => { AT => "1" }
8474             },
8475             "0074,1054" => {
8476             desc => "Attribute Item Selector",
8477             vr => { UL => "1" }
8478             },
8479             "0074,1056" => {
8480             desc => "Attribute Occurrence Private Creator",
8481             vr => { LO => "1" }
8482             },
8483             "0074,1200" => {
8484             desc => "Scheduled Procedure Step Priority",
8485             vr => { CS => "1" }
8486             },
8487             "0074,1202" => {
8488             desc => "Worklist Label",
8489             vr => { LO => "1" }
8490             },
8491             "0074,1204" => {
8492             desc => "Procedure Step Label",
8493             vr => { LO => "1" }
8494             },
8495             "0074,1210" => {
8496             desc => "Scheduled Processing Parameters Sequence",
8497             vr => { SQ => "1" }
8498             },
8499             "0074,1212" => {
8500             desc => "Performed Processing Parameters Sequence",
8501             vr => { SQ => "1" }
8502             },
8503             "0074,1216" => {
8504             desc => "Unified Procedure Step Performed Procedure Sequence",
8505             vr => { SQ => "1" }
8506             },
8507             "0074,1220" => {
8508             desc => "Related Procedure Step Sequence",
8509             vr => { SQ => "1" }
8510             },
8511             "0074,1222" => {
8512             desc => "Procedure Step Relationship Type",
8513             vr => { LO => "1" }
8514             },
8515             "0074,1230" => {
8516             desc => "Deletion Lock",
8517             vr => { LO => "1" }
8518             },
8519             "0074,1234" => {
8520             desc => "Receiving AE",
8521             vr => { AE => "1" }
8522             },
8523             "0074,1236" => {
8524             desc => "Requesting AE",
8525             vr => { AE => "1" }
8526             },
8527             "0074,1238" => {
8528             desc => "Reason for Cancellation",
8529             vr => { LT => "1" }
8530             },
8531             "0074,1242" => {
8532             desc => "SCP Status",
8533             vr => { CS => "1" }
8534             },
8535             "0074,1244" => {
8536             desc => "Subscription List Status",
8537             vr => { CS => "1" }
8538             },
8539             "0074,1246" => {
8540             desc => "Unified Procedure Step List Status",
8541             vr => { CS => "1" }
8542             },
8543             "0088,0130" => {
8544             desc => "Storage Media File-set ID",
8545             vr => { SH => "1" }
8546             },
8547             "0088,0140" => {
8548             desc => "Storage Media File-set UID",
8549             vr => { UI => "1" }
8550             },
8551             "0088,0200" => {
8552             desc => "Icon Image Sequence",
8553             vr => { SQ => "1" }
8554             },
8555             "0088,0904" => {
8556             desc => "Topic Title",
8557             vr => { LO => "1" },
8558             ret => 1
8559             },
8560             "0088,0906" => {
8561             desc => "Topic Subject",
8562             vr => { ST => "1" },
8563             ret => 1
8564             },
8565             "0088,0910" => {
8566             desc => "Topic Author",
8567             vr => { LO => "1" },
8568             ret => 1
8569             },
8570             "0088,0912" => {
8571             desc => "Topic Keywords",
8572             vr => { LO => "1-32" },
8573             ret => 1
8574             },
8575             "0100,0410" => {
8576             desc => "SOP Instance Status",
8577             vr => { CS => "1" }
8578             },
8579             "0100,0420" => {
8580             desc => "SOP Authorization DateTime",
8581             vr => { DT => "1" }
8582             },
8583             "0100,0424" => {
8584             desc => "SOP Authorization Comment",
8585             vr => { LT => "1" }
8586             },
8587             "0100,0426" => {
8588             desc => "Authorization Equipment Certification Number",
8589             vr => { LO => "1" }
8590             },
8591             "0400,0005" => {
8592             desc => "MAC ID Number",
8593             vr => { US => "1" }
8594             },
8595             "0400,0010" => {
8596             desc => "MAC Calculation Transfer Syntax UID",
8597             vr => { UI => "1" }
8598             },
8599             "0400,0015" => {
8600             desc => "MAC Algorithm",
8601             vr => { CS => "1" }
8602             },
8603             "0400,0020" => {
8604             desc => "Data Elements Signed",
8605             vr => { AT => "1-n" }
8606             },
8607             "0400,0100" => {
8608             desc => "Digital Signature UID",
8609             vr => { UI => "1" }
8610             },
8611             "0400,0105" => {
8612             desc => "Digital Signature DateTime",
8613             vr => { DT => "1" }
8614             },
8615             "0400,0110" => {
8616             desc => "Certificate Type",
8617             vr => { CS => "1" }
8618             },
8619             "0400,0115" => {
8620             desc => "Certificate of Signer",
8621             vr => { OB => "1" }
8622             },
8623             "0400,0120" => {
8624             desc => "Signature",
8625             vr => { OB => "1" }
8626             },
8627             "0400,0305" => {
8628             desc => "Certified Timestamp Type",
8629             vr => { CS => "1" }
8630             },
8631             "0400,0310" => {
8632             desc => "Certified Timestamp",
8633             vr => { OB => "1" }
8634             },
8635             "0400,0401" => {
8636             desc => "Digital Signature Purpose Code Sequence",
8637             vr => { SQ => "1" }
8638             },
8639             "0400,0402" => {
8640             desc => "Referenced Digital Signature Sequence",
8641             vr => { SQ => "1" }
8642             },
8643             "0400,0403" => {
8644             desc => "Referenced SOP Instance MAC Sequence",
8645             vr => { SQ => "1" }
8646             },
8647             "0400,0404" => {
8648             desc => "MAC",
8649             vr => { OB => "1" }
8650             },
8651             "0400,0500" => {
8652             desc => "Encrypted Attributes Sequence",
8653             vr => { SQ => "1" }
8654             },
8655             "0400,0510" => {
8656             desc => "Encrypted Content Transfer Syntax UID",
8657             vr => { UI => "1" }
8658             },
8659             "0400,0520" => {
8660             desc => "Encrypted Content",
8661             vr => { OB => "1" }
8662             },
8663             "0400,0550" => {
8664             desc => "Modified Attributes Sequence",
8665             vr => { SQ => "1" }
8666             },
8667             "0400,0561" => {
8668             desc => "Original Attributes Sequence",
8669             vr => { SQ => "1" }
8670             },
8671             "0400,0562" => {
8672             desc => "Attribute Modification DateTime",
8673             vr => { DT => "1" }
8674             },
8675             "0400,0563" => {
8676             desc => "Modifying System",
8677             vr => { LO => "1" }
8678             },
8679             "0400,0564" => {
8680             desc => "Source of Previous Values",
8681             vr => { LO => "1" }
8682             },
8683             "0400,0565" => {
8684             desc => "Reason for the Attribute Modification",
8685             vr => { CS => "1" }
8686             },
8687             "1000,xxx0" => {
8688             desc => "Escape Triplet",
8689             vr => { US => "3" },
8690             ret => 1
8691             },
8692             "1000,xxx1" => {
8693             desc => "Run Length Triplet",
8694             vr => { US => "3" },
8695             ret => 1
8696             },
8697             "1000,xxx2" => {
8698             desc => "Huffman Table Size",
8699             vr => { US => "1" },
8700             ret => 1
8701             },
8702             "1000,xxx3" => {
8703             desc => "Huffman Table Triplet",
8704             vr => { US => "3" },
8705             ret => 1
8706             },
8707             "1000,xxx4" => {
8708             desc => "Shift Table Size",
8709             vr => { US => "1" },
8710             ret => 1
8711             },
8712             "1000,xxx5" => {
8713             desc => "Shift Table Triplet",
8714             vr => { US => "3" },
8715             ret => 1
8716             },
8717             "1010,xxxx" => {
8718             desc => "Zonal Map",
8719             vr => { US => "1-n" },
8720             ret => 1
8721             },
8722             "2000,0010" => {
8723             desc => "Number of Copies",
8724             vr => { IS => "1" }
8725             },
8726             "2000,001e" => {
8727             desc => "Printer Configuration Sequence",
8728             vr => { SQ => "1" }
8729             },
8730             "2000,0020" => {
8731             desc => "Print Priority",
8732             vr => { CS => "1" }
8733             },
8734             "2000,0030" => {
8735             desc => "Medium Type",
8736             vr => { CS => "1" }
8737             },
8738             "2000,0040" => {
8739             desc => "Film Destination",
8740             vr => { CS => "1" }
8741             },
8742             "2000,0050" => {
8743             desc => "Film Session Label",
8744             vr => { LO => "1" }
8745             },
8746             "2000,0060" => {
8747             desc => "Memory Allocation",
8748             vr => { IS => "1" }
8749             },
8750             "2000,0061" => {
8751             desc => "Maximum Memory Allocation",
8752             vr => { IS => "1" }
8753             },
8754             "2000,0062" => {
8755             desc => "Color Image Printing Flag",
8756             vr => { CS => "1" },
8757             ret => 1
8758             },
8759             "2000,0063" => {
8760             desc => "Collation Flag",
8761             vr => { CS => "1" },
8762             ret => 1
8763             },
8764             "2000,0065" => {
8765             desc => "Annotation Flag",
8766             vr => { CS => "1" },
8767             ret => 1
8768             },
8769             "2000,0067" => {
8770             desc => "Image Overlay Flag",
8771             vr => { CS => "1" },
8772             ret => 1
8773             },
8774             "2000,0069" => {
8775             desc => "Presentation LUT Flag",
8776             vr => { CS => "1" },
8777             ret => 1
8778             },
8779             "2000,006a" => {
8780             desc => "Image Box Presentation LUT Flag",
8781             vr => { CS => "1" },
8782             ret => 1
8783             },
8784             "2000,00a0" => {
8785             desc => "Memory Bit Depth",
8786             vr => { US => "1" }
8787             },
8788             "2000,00a1" => {
8789             desc => "Printing Bit Depth",
8790             vr => { US => "1" }
8791             },
8792             "2000,00a2" => {
8793             desc => "Media Installed Sequence",
8794             vr => { SQ => "1" }
8795             },
8796             "2000,00a4" => {
8797             desc => "Other Media Available Sequence",
8798             vr => { SQ => "1" }
8799             },
8800             "2000,00a8" => {
8801             desc => "Supported Image Display Formats Sequence",
8802             vr => { SQ => "1" }
8803             },
8804             "2000,0500" => {
8805             desc => "Referenced Film Box Sequence",
8806             vr => { SQ => "1" }
8807             },
8808             "2000,0510" => {
8809             desc => "Referenced Stored Print Sequence",
8810             vr => { SQ => "1" },
8811             ret => 1
8812             },
8813             "2010,0010" => {
8814             desc => "Image Display Format",
8815             vr => { ST => "1" }
8816             },
8817             "2010,0030" => {
8818             desc => "Annotation Display Format ID",
8819             vr => { CS => "1" }
8820             },
8821             "2010,0040" => {
8822             desc => "Film Orientation",
8823             vr => { CS => "1" }
8824             },
8825             "2010,0050" => {
8826             desc => "Film Size ID",
8827             vr => { CS => "1" }
8828             },
8829             "2010,0052" => {
8830             desc => "Printer Resolution ID",
8831             vr => { CS => "1" }
8832             },
8833             "2010,0054" => {
8834             desc => "Default Printer Resolution ID",
8835             vr => { CS => "1" }
8836             },
8837             "2010,0060" => {
8838             desc => "Magnification Type",
8839             vr => { CS => "1" }
8840             },
8841             "2010,0080" => {
8842             desc => "Smoothing Type ",
8843             vr => { CS => "1" }
8844             },
8845             "2010,00a6" => {
8846             desc => "Default Magnification Type",
8847             vr => { CS => "1" }
8848             },
8849             "2010,00a7" => {
8850             desc => "Other Magnification Types Available",
8851             vr => { CS => "1-n" }
8852             },
8853             "2010,00a8" => {
8854             desc => "Default Smoothing Type",
8855             vr => { CS => "1" }
8856             },
8857             "2010,00a9" => {
8858             desc => "Other Smoothing Types Available",
8859             vr => { CS => "1-n" }
8860             },
8861             "2010,0100" => {
8862             desc => "Border Density",
8863             vr => { CS => "1" }
8864             },
8865             "2010,0110" => {
8866             desc => "Empty Image Density",
8867             vr => { CS => "1" }
8868             },
8869             "2010,0120" => {
8870             desc => "Min Density",
8871             vr => { US => "1" }
8872             },
8873             "2010,0130" => {
8874             desc => "Max Density",
8875             vr => { US => "1" }
8876             },
8877             "2010,0140" => {
8878             desc => "Trim",
8879             vr => { CS => "1" }
8880             },
8881             "2010,0150" => {
8882             desc => "Configuration Information",
8883             vr => { ST => "1" }
8884             },
8885             "2010,0152" => {
8886             desc => "Configuration Information Description",
8887             vr => { LT => "1" }
8888             },
8889             "2010,0154" => {
8890             desc => "Maximum Collated Films",
8891             vr => { IS => "1" }
8892             },
8893             "2010,015e" => {
8894             desc => "Illumination",
8895             vr => { US => "1" }
8896             },
8897             "2010,0160" => {
8898             desc => "Reflected Ambient Light",
8899             vr => { US => "1" }
8900             },
8901             "2010,0376" => {
8902             desc => "Printer Pixel Spacing",
8903             vr => { DS => "2" }
8904             },
8905             "2010,0500" => {
8906             desc => "Referenced Film Session Sequence",
8907             vr => { SQ => "1" }
8908             },
8909             "2010,0510" => {
8910             desc => "Referenced Image Box Sequence",
8911             vr => { SQ => "1" }
8912             },
8913             "2010,0520" => {
8914             desc => "Referenced Basic Annotation Box Sequence",
8915             vr => { SQ => "1" }
8916             },
8917             "2020,0010" => {
8918             desc => "Image Box Position",
8919             vr => { US => "1" }
8920             },
8921             "2020,0020" => {
8922             desc => "Polarity",
8923             vr => { CS => "1" }
8924             },
8925             "2020,0030" => {
8926             desc => "Requested Image Size",
8927             vr => { DS => "1" }
8928             },
8929             "2020,0040" => {
8930             desc => "Requested Decimate/Crop Behavior",
8931             vr => { CS => "1" }
8932             },
8933             "2020,0050" => {
8934             desc => "Requested Resolution ID",
8935             vr => { CS => "1" }
8936             },
8937             "2020,00a0" => {
8938             desc => "Requested Image Size Flag",
8939             vr => { CS => "1" }
8940             },
8941             "2020,00a2" => {
8942             desc => "Decimate/Crop Result",
8943             vr => { CS => "1" }
8944             },
8945             "2020,0110" => {
8946             desc => "Basic Grayscale Image Sequence",
8947             vr => { SQ => "1" }
8948             },
8949             "2020,0111" => {
8950             desc => "Basic Color Image Sequence",
8951             vr => { SQ => "1" }
8952             },
8953             "2020,0130" => {
8954             desc => "Referenced Image Overlay Box Sequence",
8955             vr => { SQ => "1" },
8956             ret => 1
8957             },
8958             "2020,0140" => {
8959             desc => "Referenced VOI LUT Box Sequence ",
8960             vr => { SQ => "1" },
8961             ret => 1
8962             },
8963             "2030,0010" => {
8964             desc => "Annotation Position",
8965             vr => { US => "1" }
8966             },
8967             "2030,0020" => {
8968             desc => "Text String",
8969             vr => { LO => "1" }
8970             },
8971             "2040,0010" => {
8972             desc => "Referenced Overlay Plane Sequence",
8973             vr => { SQ => "1" },
8974             ret => 1
8975             },
8976             "2040,0011" => {
8977             desc => "Referenced Overlay Plane Groups",
8978             vr => { US => "1-99" },
8979             ret => 1
8980             },
8981             "2040,0020" => {
8982             desc => "Overlay Pixel Data Sequence",
8983             vr => { SQ => "1" },
8984             ret => 1
8985             },
8986             "2040,0060" => {
8987             desc => "Overlay Magnification Type",
8988             vr => { CS => "1" },
8989             ret => 1
8990             },
8991             "2040,0070" => {
8992             desc => "Overlay Smoothing Type",
8993             vr => { CS => "1" },
8994             ret => 1
8995             },
8996             "2040,0072" => {
8997             desc => "Overlay or Image Magnification",
8998             vr => { CS => "1" },
8999             ret => 1
9000             },
9001             "2040,0074" => {
9002             desc => "Magnify to Number of Columns",
9003             vr => { US => "1" },
9004             ret => 1
9005             },
9006             "2040,0080" => {
9007             desc => "Overlay Foreground Density",
9008             vr => { CS => "1" },
9009             ret => 1
9010             },
9011             "2040,0082" => {
9012             desc => "Overlay Background Density",
9013             vr => { CS => "1" },
9014             ret => 1
9015             },
9016             "2040,0090" => {
9017             desc => "Overlay Mode",
9018             vr => { CS => "1" },
9019             ret => 1
9020             },
9021             "2040,0100" => {
9022             desc => "Threshold Density",
9023             vr => { CS => "1" },
9024             ret => 1
9025             },
9026             "2040,0500" => {
9027             desc => "Referenced Image Box Sequence (Retired)",
9028             vr => { SQ => "1" },
9029             ret => 1
9030             },
9031             "2050,0010" => {
9032             desc => "Presentation LUT Sequence",
9033             vr => { SQ => "1" }
9034             },
9035             "2050,0020" => {
9036             desc => "Presentation LUT Shape",
9037             vr => { CS => "1" }
9038             },
9039             "2050,0500" => {
9040             desc => "Referenced Presentation LUT Sequence",
9041             vr => { SQ => "1" }
9042             },
9043             "2100,0010" => {
9044             desc => "Print Job ID",
9045             vr => { SH => "1" },
9046             ret => 1
9047             },
9048             "2100,0020" => {
9049             desc => "Execution Status",
9050             vr => { CS => "1" }
9051             },
9052             "2100,0030" => {
9053             desc => "Execution Status Info",
9054             vr => { CS => "1" }
9055             },
9056             "2100,0040" => {
9057             desc => "Creation Date",
9058             vr => { DA => "1" }
9059             },
9060             "2100,0050" => {
9061             desc => "Creation Time",
9062             vr => { TM => "1" }
9063             },
9064             "2100,0070" => {
9065             desc => "Originator",
9066             vr => { AE => "1" }
9067             },
9068             "2100,0140" => {
9069             desc => "Destination AE",
9070             vr => { AE => "1" },
9071             ret => 1
9072             },
9073             "2100,0160" => {
9074             desc => "Owner ID",
9075             vr => { SH => "1" }
9076             },
9077             "2100,0170" => {
9078             desc => "Number of Films",
9079             vr => { IS => "1" }
9080             },
9081             "2100,0500" => {
9082             desc => "Referenced Print Job Sequence (Pull Stored Print)",
9083             vr => { SQ => "1" },
9084             ret => 1
9085             },
9086             "2110,0010" => {
9087             desc => "Printer Status",
9088             vr => { CS => "1" }
9089             },
9090             "2110,0020" => {
9091             desc => "Printer Status Info",
9092             vr => { CS => "1" }
9093             },
9094             "2110,0030" => {
9095             desc => "Printer Name",
9096             vr => { LO => "1" }
9097             },
9098             "2110,0099" => {
9099             desc => "Print Queue ID",
9100             vr => { SH => "1" },
9101             ret => 1
9102             },
9103             "2120,0010" => {
9104             desc => "Queue Status",
9105             vr => { CS => "1" },
9106             ret => 1
9107             },
9108             "2120,0050" => {
9109             desc => "Print Job Description Sequence",
9110             vr => { SQ => "1" },
9111             ret => 1
9112             },
9113             "2120,0070" => {
9114             desc => "Referenced Print Job Sequence",
9115             vr => { SQ => "1" },
9116             ret => 1
9117             },
9118             "2130,0010" => {
9119             desc => "Print Management Capabilities Sequence",
9120             vr => { SQ => "1" },
9121             ret => 1
9122             },
9123             "2130,0015" => {
9124             desc => "Printer Characteristics Sequence",
9125             vr => { SQ => "1" },
9126             ret => 1
9127             },
9128             "2130,0030" => {
9129             desc => "Film Box Content Sequence",
9130             vr => { SQ => "1" },
9131             ret => 1
9132             },
9133             "2130,0040" => {
9134             desc => "Image Box Content Sequence",
9135             vr => { SQ => "1" },
9136             ret => 1
9137             },
9138             "2130,0050" => {
9139             desc => "Annotation Content Sequence",
9140             vr => { SQ => "1" },
9141             ret => 1
9142             },
9143             "2130,0060" => {
9144             desc => "Image Overlay Box Content Sequence",
9145             vr => { SQ => "1" },
9146             ret => 1
9147             },
9148             "2130,0080" => {
9149             desc => "Presentation LUT Content Sequence",
9150             vr => { SQ => "1" },
9151             ret => 1
9152             },
9153             "2130,00a0" => {
9154             desc => "Proposed Study Sequence",
9155             vr => { SQ => "1" },
9156             ret => 1
9157             },
9158             "2130,00c0" => {
9159             desc => "Original Image Sequence",
9160             vr => { SQ => "1" },
9161             ret => 1
9162             },
9163             "2200,0001" => {
9164             desc => "Label Using Information Extracted From Instances",
9165             vr => { CS => "1" }
9166             },
9167             "2200,0002" => {
9168             desc => "Label Text",
9169             vr => { UT => "1" }
9170             },
9171             "2200,0003" => {
9172             desc => "Label Style Selection",
9173             vr => { CS => "1" }
9174             },
9175             "2200,0004" => {
9176             desc => "Media Disposition",
9177             vr => { LT => "1" }
9178             },
9179             "2200,0005" => {
9180             desc => "Barcode Value",
9181             vr => { LT => "1" }
9182             },
9183             "2200,0006" => {
9184             desc => "Barcode Symbology",
9185             vr => { CS => "1" }
9186             },
9187             "2200,0007" => {
9188             desc => "Allow Media Splitting",
9189             vr => { CS => "1" }
9190             },
9191             "2200,0008" => {
9192             desc => "Include Non-DICOM Objects",
9193             vr => { CS => "1" }
9194             },
9195             "2200,0009" => {
9196             desc => "Include Display Application",
9197             vr => { CS => "1" }
9198             },
9199             "2200,000a" => {
9200             desc => "Preserve Composite Instances After Media Creation",
9201             vr => { CS => "1" }
9202             },
9203             "2200,000b" => {
9204             desc => "Total Number of Pieces of Media Created",
9205             vr => { US => "1" }
9206             },
9207             "2200,000c" => {
9208             desc => "Requested Media Application Profile",
9209             vr => { LO => "1" }
9210             },
9211             "2200,000d" => {
9212             desc => "Referenced Storage Media Sequence",
9213             vr => { SQ => "1" }
9214             },
9215             "2200,000e" => {
9216             desc => "Failure Attributes",
9217             vr => { AT => "1-n" }
9218             },
9219             "2200,000f" => {
9220             desc => "Allow Lossy Compression",
9221             vr => { CS => "1" }
9222             },
9223             "2200,0020" => {
9224             desc => "Request Priority",
9225             vr => { CS => "1" }
9226             },
9227             "3002,0002" => {
9228             desc => "RT Image Label",
9229             vr => { SH => "1" }
9230             },
9231             "3002,0003" => {
9232             desc => "RT Image Name",
9233             vr => { LO => "1" }
9234             },
9235             "3002,0004" => {
9236             desc => "RT Image Description",
9237             vr => { ST => "1" }
9238             },
9239             "3002,000a" => {
9240             desc => "Reported Values Origin",
9241             vr => { CS => "1" }
9242             },
9243             "3002,000c" => {
9244             desc => "RT Image Plane",
9245             vr => { CS => "1" }
9246             },
9247             "3002,000d" => {
9248             desc => "X-Ray Image Receptor Translation",
9249             vr => { DS => "3" }
9250             },
9251             "3002,000e" => {
9252             desc => "X-Ray Image Receptor Angle",
9253             vr => { DS => "1" }
9254             },
9255             "3002,0010" => {
9256             desc => "RT Image Orientation",
9257             vr => { DS => "6" }
9258             },
9259             "3002,0011" => {
9260             desc => "Image Plane Pixel Spacing",
9261             vr => { DS => "2" }
9262             },
9263             "3002,0012" => {
9264             desc => "RT Image Position",
9265             vr => { DS => "2" }
9266             },
9267             "3002,0020" => {
9268             desc => "Radiation Machine Name",
9269             vr => { SH => "1" }
9270             },
9271             "3002,0022" => {
9272             desc => "Radiation Machine SAD",
9273             vr => { DS => "1" }
9274             },
9275             "3002,0024" => {
9276             desc => "Radiation Machine SSD",
9277             vr => { DS => "1" }
9278             },
9279             "3002,0026" => {
9280             desc => "RT Image SID",
9281             vr => { DS => "1" }
9282             },
9283             "3002,0028" => {
9284             desc => "Source to Reference Object Distance",
9285             vr => { DS => "1" }
9286             },
9287             "3002,0029" => {
9288             desc => "Fraction Number",
9289             vr => { IS => "1" }
9290             },
9291             "3002,0030" => {
9292             desc => "Exposure Sequence",
9293             vr => { SQ => "1" }
9294             },
9295             "3002,0032" => {
9296             desc => "Meterset Exposure",
9297             vr => { DS => "1" }
9298             },
9299             "3002,0034" => {
9300             desc => "Diaphragm Position",
9301             vr => { DS => "4" }
9302             },
9303             "3002,0040" => {
9304             desc => "Fluence Map Sequence",
9305             vr => { SQ => "1" }
9306             },
9307             "3002,0041" => {
9308             desc => "Fluence Data Source",
9309             vr => { CS => "1" }
9310             },
9311             "3002,0042" => {
9312             desc => "Fluence Data Scale",
9313             vr => { DS => "1" }
9314             },
9315             "3002,0050" => {
9316             desc => "Primary Fluence Mode Sequence",
9317             vr => { SQ => "1" }
9318             },
9319             "3002,0051" => {
9320             desc => "Fluence Mode",
9321             vr => { CS => "1" }
9322             },
9323             "3002,0052" => {
9324             desc => "Fluence Mode ID",
9325             vr => { SH => "1" }
9326             },
9327             "3004,0001" => {
9328             desc => "DVH Type",
9329             vr => { CS => "1" }
9330             },
9331             "3004,0002" => {
9332             desc => "Dose Units",
9333             vr => { CS => "1" }
9334             },
9335             "3004,0004" => {
9336             desc => "Dose Type",
9337             vr => { CS => "1" }
9338             },
9339             "3004,0006" => {
9340             desc => "Dose Comment",
9341             vr => { LO => "1" }
9342             },
9343             "3004,0008" => {
9344             desc => "Normalization Point",
9345             vr => { DS => "3" }
9346             },
9347             "3004,000a" => {
9348             desc => "Dose Summation Type",
9349             vr => { CS => "1" }
9350             },
9351             "3004,000c" => {
9352             desc => "Grid Frame Offset Vector",
9353             vr => { DS => "2-n" }
9354             },
9355             "3004,000e" => {
9356             desc => "Dose Grid Scaling",
9357             vr => { DS => "1" }
9358             },
9359             "3004,0010" => {
9360             desc => "RT Dose ROI Sequence",
9361             vr => { SQ => "1" }
9362             },
9363             "3004,0012" => {
9364             desc => "Dose Value",
9365             vr => { DS => "1" }
9366             },
9367             "3004,0014" => {
9368             desc => "Tissue Heterogeneity Correction",
9369             vr => { CS => "1-3" }
9370             },
9371             "3004,0040" => {
9372             desc => "DVH Normalization Point",
9373             vr => { DS => "3" }
9374             },
9375             "3004,0042" => {
9376             desc => "DVH Normalization Dose Value",
9377             vr => { DS => "1" }
9378             },
9379             "3004,0050" => {
9380             desc => "DVH Sequence",
9381             vr => { SQ => "1" }
9382             },
9383             "3004,0052" => {
9384             desc => "DVH Dose Scaling",
9385             vr => { DS => "1" }
9386             },
9387             "3004,0054" => {
9388             desc => "DVH Volume Units",
9389             vr => { CS => "1" }
9390             },
9391             "3004,0056" => {
9392             desc => "DVH Number of Bins",
9393             vr => { IS => "1" }
9394             },
9395             "3004,0058" => {
9396             desc => "DVH Data",
9397             vr => { DS => "2-2n" }
9398             },
9399             "3004,0060" => {
9400             desc => "DVH Referenced ROI Sequence",
9401             vr => { SQ => "1" }
9402             },
9403             "3004,0062" => {
9404             desc => "DVH ROI Contribution Type",
9405             vr => { CS => "1" }
9406             },
9407             "3004,0070" => {
9408             desc => "DVH Minimum Dose",
9409             vr => { DS => "1" }
9410             },
9411             "3004,0072" => {
9412             desc => "DVH Maximum Dose",
9413             vr => { DS => "1" }
9414             },
9415             "3004,0074" => {
9416             desc => "DVH Mean Dose",
9417             vr => { DS => "1" }
9418             },
9419             "3006,0002" => {
9420             desc => "Structure Set Label",
9421             vr => { SH => "1" }
9422             },
9423             "3006,0004" => {
9424             desc => "Structure Set Name",
9425             vr => { LO => "1" }
9426             },
9427             "3006,0006" => {
9428             desc => "Structure Set Description",
9429             vr => { ST => "1" }
9430             },
9431             "3006,0008" => {
9432             desc => "Structure Set Date",
9433             vr => { DA => "1" }
9434             },
9435             "3006,0009" => {
9436             desc => "Structure Set Time",
9437             vr => { TM => "1" }
9438             },
9439             "3006,0010" => {
9440             desc => "Referenced Frame of Reference Sequence",
9441             vr => { SQ => "1" }
9442             },
9443             "3006,0012" => {
9444             desc => "RT Referenced Study Sequence",
9445             vr => { SQ => "1" }
9446             },
9447             "3006,0014" => {
9448             desc => "RT Referenced Series Sequence",
9449             vr => { SQ => "1" }
9450             },
9451             "3006,0016" => {
9452             desc => "Contour Image Sequence",
9453             vr => { SQ => "1" }
9454             },
9455             "3006,0020" => {
9456             desc => "Structure Set ROI Sequence",
9457             vr => { SQ => "1" }
9458             },
9459             "3006,0022" => {
9460             desc => "ROI Number",
9461             vr => { IS => "1" }
9462             },
9463             "3006,0024" => {
9464             desc => "Referenced Frame of Reference UID",
9465             vr => { UI => "1" }
9466             },
9467             "3006,0026" => {
9468             desc => "ROI Name",
9469             vr => { LO => "1" }
9470             },
9471             "3006,0028" => {
9472             desc => "ROI Description",
9473             vr => { ST => "1" }
9474             },
9475             "3006,002a" => {
9476             desc => "ROI Display Color",
9477             vr => { IS => "3" }
9478             },
9479             "3006,002c" => {
9480             desc => "ROI Volume",
9481             vr => { DS => "1" }
9482             },
9483             "3006,0030" => {
9484             desc => "RT Related ROI Sequence",
9485             vr => { SQ => "1" }
9486             },
9487             "3006,0033" => {
9488             desc => "RT ROI Relationship",
9489             vr => { CS => "1" }
9490             },
9491             "3006,0036" => {
9492             desc => "ROI Generation Algorithm",
9493             vr => { CS => "1" }
9494             },
9495             "3006,0038" => {
9496             desc => "ROI Generation Description",
9497             vr => { LO => "1" }
9498             },
9499             "3006,0039" => {
9500             desc => "ROI Contour Sequence",
9501             vr => { SQ => "1" }
9502             },
9503             "3006,0040" => {
9504             desc => "Contour Sequence",
9505             vr => { SQ => "1" }
9506             },
9507             "3006,0042" => {
9508             desc => "Contour Geometric Type",
9509             vr => { CS => "1" }
9510             },
9511             "3006,0044" => {
9512             desc => "Contour Slab Thickness",
9513             vr => { DS => "1" }
9514             },
9515             "3006,0045" => {
9516             desc => "Contour Offset Vector",
9517             vr => { DS => "3" }
9518             },
9519             "3006,0046" => {
9520             desc => "Number of Contour Points",
9521             vr => { IS => "1" }
9522             },
9523             "3006,0048" => {
9524             desc => "Contour Number",
9525             vr => { IS => "1" }
9526             },
9527             "3006,0049" => {
9528             desc => "Attached Contours",
9529             vr => { IS => "1-n" }
9530             },
9531             "3006,0050" => {
9532             desc => "Contour Data",
9533             vr => { DS => "3-3n" }
9534             },
9535             "3006,0080" => {
9536             desc => "RT ROI Observations Sequence",
9537             vr => { SQ => "1" }
9538             },
9539             "3006,0082" => {
9540             desc => "Observation Number",
9541             vr => { IS => "1" }
9542             },
9543             "3006,0084" => {
9544             desc => "Referenced ROI Number",
9545             vr => { IS => "1" }
9546             },
9547             "3006,0085" => {
9548             desc => "ROI Observation Label",
9549             vr => { SH => "1" }
9550             },
9551             "3006,0086" => {
9552             desc => "RT ROI Identification Code Sequence",
9553             vr => { SQ => "1" }
9554             },
9555             "3006,0088" => {
9556             desc => "ROI Observation Description",
9557             vr => { ST => "1" }
9558             },
9559             "3006,00a0" => {
9560             desc => "Related RT ROI Observations Sequence",
9561             vr => { SQ => "1" }
9562             },
9563             "3006,00a4" => {
9564             desc => "RT ROI Interpreted Type",
9565             vr => { CS => "1" }
9566             },
9567             "3006,00a6" => {
9568             desc => "ROI Interpreter",
9569             vr => { PN => "1" }
9570             },
9571             "3006,00b0" => {
9572             desc => "ROI Physical Properties Sequence",
9573             vr => { SQ => "1" }
9574             },
9575             "3006,00b2" => {
9576             desc => "ROI Physical Property",
9577             vr => { CS => "1" }
9578             },
9579             "3006,00b4" => {
9580             desc => "ROI Physical Property Value",
9581             vr => { DS => "1" }
9582             },
9583             "3006,00b6" => {
9584             desc => "ROI Elemental Composition Sequence",
9585             vr => { SQ => "1" }
9586             },
9587             "3006,00b7" => {
9588             desc => "ROI Elemental Composition Atomic Number",
9589             vr => { US => "1" }
9590             },
9591             "3006,00b8" => {
9592             desc => "ROI Elemental Composition Atomic Mass Fraction",
9593             vr => { FL => "1" }
9594             },
9595             "3006,00c0" => {
9596             desc => "Frame of Reference Relationship Sequence",
9597             vr => { SQ => "1" }
9598             },
9599             "3006,00c2" => {
9600             desc => "Related Frame of Reference UID",
9601             vr => { UI => "1" }
9602             },
9603             "3006,00c4" => {
9604             desc => "Frame of Reference Transformation Type",
9605             vr => { CS => "1" }
9606             },
9607             "3006,00c6" => {
9608             desc => "Frame of Reference Transformation Matrix",
9609             vr => { DS => "16" }
9610             },
9611             "3006,00c8" => {
9612             desc => "Frame of Reference Transformation Comment",
9613             vr => { LO => "1" }
9614             },
9615             "3008,0010" => {
9616             desc => "Measured Dose Reference Sequence",
9617             vr => { SQ => "1" }
9618             },
9619             "3008,0012" => {
9620             desc => "Measured Dose Description",
9621             vr => { ST => "1" }
9622             },
9623             "3008,0014" => {
9624             desc => "Measured Dose Type",
9625             vr => { CS => "1" }
9626             },
9627             "3008,0016" => {
9628             desc => "Measured Dose Value",
9629             vr => { DS => "1" }
9630             },
9631             "3008,0020" => {
9632             desc => "Treatment Session Beam Sequence",
9633             vr => { SQ => "1" }
9634             },
9635             "3008,0021" => {
9636             desc => "Treatment Session Ion Beam Sequence",
9637             vr => { SQ => "1" }
9638             },
9639             "3008,0022" => {
9640             desc => "Current Fraction Number",
9641             vr => { IS => "1" }
9642             },
9643             "3008,0024" => {
9644             desc => "Treatment Control Point Date",
9645             vr => { DA => "1" }
9646             },
9647             "3008,0025" => {
9648             desc => "Treatment Control Point Time",
9649             vr => { TM => "1" }
9650             },
9651             "3008,002a" => {
9652             desc => "Treatment Termination Status",
9653             vr => { CS => "1" }
9654             },
9655             "3008,002b" => {
9656             desc => "Treatment Termination Code",
9657             vr => { SH => "1" }
9658             },
9659             "3008,002c" => {
9660             desc => "Treatment Verification Status",
9661             vr => { CS => "1" }
9662             },
9663             "3008,0030" => {
9664             desc => "Referenced Treatment Record Sequence",
9665             vr => { SQ => "1" }
9666             },
9667             "3008,0032" => {
9668             desc => "Specified Primary Meterset ",
9669             vr => { DS => "1" }
9670             },
9671             "3008,0033" => {
9672             desc => "Specified Secondary Meterset ",
9673             vr => { DS => "1" }
9674             },
9675             "3008,0036" => {
9676             desc => "Delivered Primary Meterset ",
9677             vr => { DS => "1" }
9678             },
9679             "3008,0037" => {
9680             desc => "Delivered Secondary Meterset ",
9681             vr => { DS => "1" }
9682             },
9683             "3008,003a" => {
9684             desc => "Specified Treatment Time",
9685             vr => { DS => "1" }
9686             },
9687             "3008,003b" => {
9688             desc => "Delivered Treatment Time",
9689             vr => { DS => "1" }
9690             },
9691             "3008,0040" => {
9692             desc => "Control Point Delivery Sequence",
9693             vr => { SQ => "1" }
9694             },
9695             "3008,0041" => {
9696             desc => "Ion Control Point Delivery Sequence",
9697             vr => { SQ => "1" }
9698             },
9699             "3008,0042" => {
9700             desc => "Specified Meterset",
9701             vr => { DS => "1" }
9702             },
9703             "3008,0044" => {
9704             desc => "Delivered Meterset",
9705             vr => { DS => "1" }
9706             },
9707             "3008,0045" => {
9708             desc => "Meterset Rate Set",
9709             vr => { FL => "1" }
9710             },
9711             "3008,0046" => {
9712             desc => "Meterset Rate Delivered",
9713             vr => { FL => "1" }
9714             },
9715             "3008,0047" => {
9716             desc => "Scan Spot Metersets Delivered",
9717             vr => { FL => "1-n" }
9718             },
9719             "3008,0048" => {
9720             desc => "Dose Rate Delivered",
9721             vr => { DS => "1" }
9722             },
9723             "3008,0050" => {
9724             desc => "Treatment Summary Calculated Dose Reference Sequence",
9725             vr => { SQ => "1" }
9726             },
9727             "3008,0052" => {
9728             desc => "Cumulative Dose to Dose Reference",
9729             vr => { DS => "1" }
9730             },
9731             "3008,0054" => {
9732             desc => "First Treatment Date",
9733             vr => { DA => "1" }
9734             },
9735             "3008,0056" => {
9736             desc => "Most Recent Treatment Date",
9737             vr => { DA => "1" }
9738             },
9739             "3008,005a" => {
9740             desc => "Number of Fractions Delivered",
9741             vr => { IS => "1" }
9742             },
9743             "3008,0060" => {
9744             desc => "Override Sequence",
9745             vr => { SQ => "1" }
9746             },
9747             "3008,0061" => {
9748             desc => "Parameter Sequence Pointer",
9749             vr => { AT => "1" }
9750             },
9751             "3008,0062" => {
9752             desc => "Override Parameter Pointer",
9753             vr => { AT => "1" }
9754             },
9755             "3008,0063" => {
9756             desc => "Parameter Item Index",
9757             vr => { IS => "1" }
9758             },
9759             "3008,0064" => {
9760             desc => "Measured Dose Reference Number",
9761             vr => { IS => "1" }
9762             },
9763             "3008,0065" => {
9764             desc => "Parameter Pointer",
9765             vr => { AT => "1" }
9766             },
9767             "3008,0066" => {
9768             desc => "Override Reason",
9769             vr => { ST => "1" }
9770             },
9771             "3008,0068" => {
9772             desc => "Corrected Parameter Sequence",
9773             vr => { SQ => "1" }
9774             },
9775             "3008,006a" => {
9776             desc => "Correction Value",
9777             vr => { FL => "1" }
9778             },
9779             "3008,0070" => {
9780             desc => "Calculated Dose Reference Sequence",
9781             vr => { SQ => "1" }
9782             },
9783             "3008,0072" => {
9784             desc => "Calculated Dose Reference Number",
9785             vr => { IS => "1" }
9786             },
9787             "3008,0074" => {
9788             desc => "Calculated Dose Reference Description",
9789             vr => { ST => "1" }
9790             },
9791             "3008,0076" => {
9792             desc => "Calculated Dose Reference Dose Value",
9793             vr => { DS => "1" }
9794             },
9795             "3008,0078" => {
9796             desc => "Start Meterset",
9797             vr => { DS => "1" }
9798             },
9799             "3008,007a" => {
9800             desc => "End Meterset",
9801             vr => { DS => "1" }
9802             },
9803             "3008,0080" => {
9804             desc => "Referenced Measured Dose Reference Sequence",
9805             vr => { SQ => "1" }
9806             },
9807             "3008,0082" => {
9808             desc => "Referenced Measured Dose Reference Number",
9809             vr => { IS => "1" }
9810             },
9811             "3008,0090" => {
9812             desc => "Referenced Calculated Dose Reference Sequence",
9813             vr => { SQ => "1" }
9814             },
9815             "3008,0092" => {
9816             desc => "Referenced Calculated Dose Reference Number",
9817             vr => { IS => "1" }
9818             },
9819             "3008,00a0" => {
9820             desc => "Beam Limiting Device Leaf Pairs Sequence",
9821             vr => { SQ => "1" }
9822             },
9823             "3008,00b0" => {
9824             desc => "Recorded Wedge Sequence",
9825             vr => { SQ => "1" }
9826             },
9827             "3008,00c0" => {
9828             desc => "Recorded Compensator Sequence",
9829             vr => { SQ => "1" }
9830             },
9831             "3008,00d0" => {
9832             desc => "Recorded Block Sequence",
9833             vr => { SQ => "1" }
9834             },
9835             "3008,00e0" => {
9836             desc => "Treatment Summary Measured Dose Reference Sequence",
9837             vr => { SQ => "1" }
9838             },
9839             "3008,00f0" => {
9840             desc => "Recorded Snout Sequence",
9841             vr => { SQ => "1" }
9842             },
9843             "3008,00f2" => {
9844             desc => "Recorded Range Shifter Sequence",
9845             vr => { SQ => "1" }
9846             },
9847             "3008,00f4" => {
9848             desc => "Recorded Lateral Spreading Device Sequence",
9849             vr => { SQ => "1" }
9850             },
9851             "3008,00f6" => {
9852             desc => "Recorded Range Modulator Sequence",
9853             vr => { SQ => "1" }
9854             },
9855             "3008,0100" => {
9856             desc => "Recorded Source Sequence",
9857             vr => { SQ => "1" }
9858             },
9859             "3008,0105" => {
9860             desc => "Source Serial Number",
9861             vr => { LO => "1" }
9862             },
9863             "3008,0110" => {
9864             desc => "Treatment Session Application Setup Sequence",
9865             vr => { SQ => "1" }
9866             },
9867             "3008,0116" => {
9868             desc => "Application Setup Check",
9869             vr => { CS => "1" }
9870             },
9871             "3008,0120" => {
9872             desc => "Recorded Brachy Accessory Device Sequence",
9873             vr => { SQ => "1" }
9874             },
9875             "3008,0122" => {
9876             desc => "Referenced Brachy Accessory Device Number",
9877             vr => { IS => "1" }
9878             },
9879             "3008,0130" => {
9880             desc => "Recorded Channel Sequence",
9881             vr => { SQ => "1" }
9882             },
9883             "3008,0132" => {
9884             desc => "Specified Channel Total Time",
9885             vr => { DS => "1" }
9886             },
9887             "3008,0134" => {
9888             desc => "Delivered Channel Total Time",
9889             vr => { DS => "1" }
9890             },
9891             "3008,0136" => {
9892             desc => "Specified Number of Pulses",
9893             vr => { IS => "1" }
9894             },
9895             "3008,0138" => {
9896             desc => "Delivered Number of Pulses",
9897             vr => { IS => "1" }
9898             },
9899             "3008,013a" => {
9900             desc => "Specified Pulse Repetition Interval",
9901             vr => { DS => "1" }
9902             },
9903             "3008,013c" => {
9904             desc => "Delivered Pulse Repetition Interval",
9905             vr => { DS => "1" }
9906             },
9907             "3008,0140" => {
9908             desc => "Recorded Source Applicator Sequence",
9909             vr => { SQ => "1" }
9910             },
9911             "3008,0142" => {
9912             desc => "Referenced Source Applicator Number",
9913             vr => { IS => "1" }
9914             },
9915             "3008,0150" => {
9916             desc => "Recorded Channel Shield Sequence",
9917             vr => { SQ => "1" }
9918             },
9919             "3008,0152" => {
9920             desc => "Referenced Channel Shield Number",
9921             vr => { IS => "1" }
9922             },
9923             "3008,0160" => {
9924             desc => "Brachy Control Point Delivered Sequence",
9925             vr => { SQ => "1" }
9926             },
9927             "3008,0162" => {
9928             desc => "Safe Position Exit Date",
9929             vr => { DA => "1" }
9930             },
9931             "3008,0164" => {
9932             desc => "Safe Position Exit Time",
9933             vr => { TM => "1" }
9934             },
9935             "3008,0166" => {
9936             desc => "Safe Position Return Date",
9937             vr => { DA => "1" }
9938             },
9939             "3008,0168" => {
9940             desc => "Safe Position Return Time",
9941             vr => { TM => "1" }
9942             },
9943             "3008,0200" => {
9944             desc => "Current Treatment Status",
9945             vr => { CS => "1" }
9946             },
9947             "3008,0202" => {
9948             desc => "Treatment Status Comment",
9949             vr => { ST => "1" }
9950             },
9951             "3008,0220" => {
9952             desc => "Fraction Group Summary Sequence",
9953             vr => { SQ => "1" }
9954             },
9955             "3008,0223" => {
9956             desc => "Referenced Fraction Number",
9957             vr => { IS => "1" }
9958             },
9959             "3008,0224" => {
9960             desc => "Fraction Group Type",
9961             vr => { CS => "1" }
9962             },
9963             "3008,0230" => {
9964             desc => "Beam Stopper Position",
9965             vr => { CS => "1" }
9966             },
9967             "3008,0240" => {
9968             desc => "Fraction Status Summary Sequence",
9969             vr => { SQ => "1" }
9970             },
9971             "3008,0250" => {
9972             desc => "Treatment Date",
9973             vr => { DA => "1" }
9974             },
9975             "3008,0251" => {
9976             desc => "Treatment Time",
9977             vr => { TM => "1" }
9978             },
9979             "300a,0002" => {
9980             desc => "RT Plan Label",
9981             vr => { SH => "1" }
9982             },
9983             "300a,0003" => {
9984             desc => "RT Plan Name",
9985             vr => { LO => "1" }
9986             },
9987             "300a,0004" => {
9988             desc => "RT Plan Description",
9989             vr => { ST => "1" }
9990             },
9991             "300a,0006" => {
9992             desc => "RT Plan Date",
9993             vr => { DA => "1" }
9994             },
9995             "300a,0007" => {
9996             desc => "RT Plan Time",
9997             vr => { TM => "1" }
9998             },
9999             "300a,0009" => {
10000             desc => "Treatment Protocols",
10001             vr => { LO => "1-n" }
10002             },
10003             "300a,000a" => {
10004             desc => "Plan Intent",
10005             vr => { CS => "1" }
10006             },
10007             "300a,000b" => {
10008             desc => "Treatment Sites",
10009             vr => { LO => "1-n" }
10010             },
10011             "300a,000c" => {
10012             desc => "RT Plan Geometry",
10013             vr => { CS => "1" }
10014             },
10015             "300a,000e" => {
10016             desc => "Prescription Description",
10017             vr => { ST => "1" }
10018             },
10019             "300a,0010" => {
10020             desc => "Dose Reference Sequence",
10021             vr => { SQ => "1" }
10022             },
10023             "300a,0012" => {
10024             desc => "Dose Reference Number",
10025             vr => { IS => "1" }
10026             },
10027             "300a,0013" => {
10028             desc => "Dose Reference UID",
10029             vr => { UI => "1" }
10030             },
10031             "300a,0014" => {
10032             desc => "Dose Reference Structure Type",
10033             vr => { CS => "1" }
10034             },
10035             "300a,0015" => {
10036             desc => "Nominal Beam Energy Unit",
10037             vr => { CS => "1" }
10038             },
10039             "300a,0016" => {
10040             desc => "Dose Reference Description",
10041             vr => { LO => "1" }
10042             },
10043             "300a,0018" => {
10044             desc => "Dose Reference Point Coordinates",
10045             vr => { DS => "3" }
10046             },
10047             "300a,001a" => {
10048             desc => "Nominal Prior Dose",
10049             vr => { DS => "1" }
10050             },
10051             "300a,0020" => {
10052             desc => "Dose Reference Type",
10053             vr => { CS => "1" }
10054             },
10055             "300a,0021" => {
10056             desc => "Constraint Weight",
10057             vr => { DS => "1" }
10058             },
10059             "300a,0022" => {
10060             desc => "Delivery Warning Dose",
10061             vr => { DS => "1" }
10062             },
10063             "300a,0023" => {
10064             desc => "Delivery Maximum Dose",
10065             vr => { DS => "1" }
10066             },
10067             "300a,0025" => {
10068             desc => "Target Minimum Dose",
10069             vr => { DS => "1" }
10070             },
10071             "300a,0026" => {
10072             desc => "Target Prescription Dose",
10073             vr => { DS => "1" }
10074             },
10075             "300a,0027" => {
10076             desc => "Target Maximum Dose",
10077             vr => { DS => "1" }
10078             },
10079             "300a,0028" => {
10080             desc => "Target Underdose Volume Fraction",
10081             vr => { DS => "1" }
10082             },
10083             "300a,002a" => {
10084             desc => "Organ at Risk Full-volume Dose",
10085             vr => { DS => "1" }
10086             },
10087             "300a,002b" => {
10088             desc => "Organ at Risk Limit Dose",
10089             vr => { DS => "1" }
10090             },
10091             "300a,002c" => {
10092             desc => "Organ at Risk Maximum Dose",
10093             vr => { DS => "1" }
10094             },
10095             "300a,002d" => {
10096             desc => "Organ at Risk Overdose Volume Fraction",
10097             vr => { DS => "1" }
10098             },
10099             "300a,0040" => {
10100             desc => "Tolerance Table Sequence",
10101             vr => { SQ => "1" }
10102             },
10103             "300a,0042" => {
10104             desc => "Tolerance Table Number",
10105             vr => { IS => "1" }
10106             },
10107             "300a,0043" => {
10108             desc => "Tolerance Table Label",
10109             vr => { SH => "1" }
10110             },
10111             "300a,0044" => {
10112             desc => "Gantry Angle Tolerance",
10113             vr => { DS => "1" }
10114             },
10115             "300a,0046" => {
10116             desc => "Beam Limiting Device Angle Tolerance",
10117             vr => { DS => "1" }
10118             },
10119             "300a,0048" => {
10120             desc => "Beam Limiting Device Tolerance Sequence",
10121             vr => { SQ => "1" }
10122             },
10123             "300a,004a" => {
10124             desc => "Beam Limiting Device Position Tolerance",
10125             vr => { DS => "1" }
10126             },
10127             "300a,004b" => {
10128             desc => "Snout Position Tolerance",
10129             vr => { FL => "1" }
10130             },
10131             "300a,004c" => {
10132             desc => "Patient Support Angle Tolerance",
10133             vr => { DS => "1" }
10134             },
10135             "300a,004e" => {
10136             desc => "Table Top Eccentric Angle Tolerance",
10137             vr => { DS => "1" }
10138             },
10139             "300a,004f" => {
10140             desc => "Table Top Pitch Angle Tolerance",
10141             vr => { FL => "1" }
10142             },
10143             "300a,0050" => {
10144             desc => "Table Top Roll Angle Tolerance",
10145             vr => { FL => "1" }
10146             },
10147             "300a,0051" => {
10148             desc => "Table Top Vertical Position Tolerance",
10149             vr => { DS => "1" }
10150             },
10151             "300a,0052" => {
10152             desc => "Table Top Longitudinal Position Tolerance",
10153             vr => { DS => "1" }
10154             },
10155             "300a,0053" => {
10156             desc => "Table Top Lateral Position Tolerance",
10157             vr => { DS => "1" }
10158             },
10159             "300a,0055" => {
10160             desc => "RT Plan Relationship",
10161             vr => { CS => "1" }
10162             },
10163             "300a,0070" => {
10164             desc => "Fraction Group Sequence",
10165             vr => { SQ => "1" }
10166             },
10167             "300a,0071" => {
10168             desc => "Fraction Group Number",
10169             vr => { IS => "1" }
10170             },
10171             "300a,0072" => {
10172             desc => "Fraction Group Description",
10173             vr => { LO => "1" }
10174             },
10175             "300a,0078" => {
10176             desc => "Number of Fractions Planned",
10177             vr => { IS => "1" }
10178             },
10179             "300a,0079" => {
10180             desc => "Number of Fraction Pattern Digits Per Day",
10181             vr => { IS => "1" }
10182             },
10183             "300a,007a" => {
10184             desc => "Repeat Fraction Cycle Length",
10185             vr => { IS => "1" }
10186             },
10187             "300a,007b" => {
10188             desc => "Fraction Pattern",
10189             vr => { LT => "1" }
10190             },
10191             "300a,0080" => {
10192             desc => "Number of Beams",
10193             vr => { IS => "1" }
10194             },
10195             "300a,0082" => {
10196             desc => "Beam Dose Specification Point",
10197             vr => { DS => "3" }
10198             },
10199             "300a,0084" => {
10200             desc => "Beam Dose",
10201             vr => { DS => "1" }
10202             },
10203             "300a,0086" => {
10204             desc => "Beam Meterset",
10205             vr => { DS => "1" }
10206             },
10207             "300a,0088" => {
10208             desc => "Beam Dose Point Depth",
10209             vr => { FL => "1" }
10210             },
10211             "300a,0089" => {
10212             desc => "Beam Dose Point Equivalent Depth",
10213             vr => { FL => "1" }
10214             },
10215             "300a,008a" => {
10216             desc => "Beam Dose Point SSD",
10217             vr => { FL => "1" }
10218             },
10219             "300a,00a0" => {
10220             desc => "Number of Brachy Application Setups",
10221             vr => { IS => "1" }
10222             },
10223             "300a,00a2" => {
10224             desc => "Brachy Application Setup Dose Specification Point",
10225             vr => { DS => "3" }
10226             },
10227             "300a,00a4" => {
10228             desc => "Brachy Application Setup Dose",
10229             vr => { DS => "1" }
10230             },
10231             "300a,00b0" => {
10232             desc => "Beam Sequence",
10233             vr => { SQ => "1" }
10234             },
10235             "300a,00b2" => {
10236             desc => "Treatment Machine Name ",
10237             vr => { SH => "1" }
10238             },
10239             "300a,00b3" => {
10240             desc => "Primary Dosimeter Unit",
10241             vr => { CS => "1" }
10242             },
10243             "300a,00b4" => {
10244             desc => "Source-Axis Distance",
10245             vr => { DS => "1" }
10246             },
10247             "300a,00b6" => {
10248             desc => "Beam Limiting Device Sequence",
10249             vr => { SQ => "1" }
10250             },
10251             "300a,00b8" => {
10252             desc => "RT Beam Limiting Device Type",
10253             vr => { CS => "1" }
10254             },
10255             "300a,00ba" => {
10256             desc => "Source to Beam Limiting Device Distance",
10257             vr => { DS => "1" }
10258             },
10259             "300a,00bb" => {
10260             desc => "Isocenter to Beam Limiting Device Distance",
10261             vr => { FL => "1" }
10262             },
10263             "300a,00bc" => {
10264             desc => "Number of Leaf/Jaw Pairs",
10265             vr => { IS => "1" }
10266             },
10267             "300a,00be" => {
10268             desc => "Leaf Position Boundaries",
10269             vr => { DS => "3-n" }
10270             },
10271             "300a,00c0" => {
10272             desc => "Beam Number",
10273             vr => { IS => "1" }
10274             },
10275             "300a,00c2" => {
10276             desc => "Beam Name",
10277             vr => { LO => "1" }
10278             },
10279             "300a,00c3" => {
10280             desc => "Beam Description",
10281             vr => { ST => "1" }
10282             },
10283             "300a,00c4" => {
10284             desc => "Beam Type",
10285             vr => { CS => "1" }
10286             },
10287             "300a,00c6" => {
10288             desc => "Radiation Type",
10289             vr => { CS => "1" }
10290             },
10291             "300a,00c7" => {
10292             desc => "High-Dose Technique Type",
10293             vr => { CS => "1" }
10294             },
10295             "300a,00c8" => {
10296             desc => "Reference Image Number",
10297             vr => { IS => "1" }
10298             },
10299             "300a,00ca" => {
10300             desc => "Planned Verification Image Sequence",
10301             vr => { SQ => "1" }
10302             },
10303             "300a,00cc" => {
10304             desc => "Imaging Device-Specific Acquisition Parameters",
10305             vr => { LO => "1-n" }
10306             },
10307             "300a,00ce" => {
10308             desc => "Treatment Delivery Type",
10309             vr => { CS => "1" }
10310             },
10311             "300a,00d0" => {
10312             desc => "Number of Wedges",
10313             vr => { IS => "1" }
10314             },
10315             "300a,00d1" => {
10316             desc => "Wedge Sequence",
10317             vr => { SQ => "1" }
10318             },
10319             "300a,00d2" => {
10320             desc => "Wedge Number",
10321             vr => { IS => "1" }
10322             },
10323             "300a,00d3" => {
10324             desc => "Wedge Type",
10325             vr => { CS => "1" }
10326             },
10327             "300a,00d4" => {
10328             desc => "Wedge ID",
10329             vr => { SH => "1" }
10330             },
10331             "300a,00d5" => {
10332             desc => "Wedge Angle",
10333             vr => { IS => "1" }
10334             },
10335             "300a,00d6" => {
10336             desc => "Wedge Factor",
10337             vr => { DS => "1" }
10338             },
10339             "300a,00d7" => {
10340             desc => "Total Wedge Tray Water-Equivalent Thickness",
10341             vr => { FL => "1" }
10342             },
10343             "300a,00d8" => {
10344             desc => "Wedge Orientation",
10345             vr => { DS => "1" }
10346             },
10347             "300a,00d9" => {
10348             desc => "Isocenter to Wedge Tray Distance",
10349             vr => { FL => "1" }
10350             },
10351             "300a,00da" => {
10352             desc => "Source to Wedge Tray Distance",
10353             vr => { DS => "1" }
10354             },
10355             "300a,00db" => {
10356             desc => "Wedge Thin Edge Position",
10357             vr => { FL => "1" }
10358             },
10359             "300a,00dc" => {
10360             desc => "Bolus ID",
10361             vr => { SH => "1" }
10362             },
10363             "300a,00dd" => {
10364             desc => "Bolus Description",
10365             vr => { ST => "1" }
10366             },
10367             "300a,00e0" => {
10368             desc => "Number of Compensators",
10369             vr => { IS => "1" }
10370             },
10371             "300a,00e1" => {
10372             desc => "Material ID",
10373             vr => { SH => "1" }
10374             },
10375             "300a,00e2" => {
10376             desc => "Total Compensator Tray Factor",
10377             vr => { DS => "1" }
10378             },
10379             "300a,00e3" => {
10380             desc => "Compensator Sequence",
10381             vr => { SQ => "1" }
10382             },
10383             "300a,00e4" => {
10384             desc => "Compensator Number",
10385             vr => { IS => "1" }
10386             },
10387             "300a,00e5" => {
10388             desc => "Compensator ID",
10389             vr => { SH => "1" }
10390             },
10391             "300a,00e6" => {
10392             desc => "Source to Compensator Tray Distance",
10393             vr => { DS => "1" }
10394             },
10395             "300a,00e7" => {
10396             desc => "Compensator Rows",
10397             vr => { IS => "1" }
10398             },
10399             "300a,00e8" => {
10400             desc => "Compensator Columns",
10401             vr => { IS => "1" }
10402             },
10403             "300a,00e9" => {
10404             desc => "Compensator Pixel Spacing",
10405             vr => { DS => "2" }
10406             },
10407             "300a,00ea" => {
10408             desc => "Compensator Position",
10409             vr => { DS => "2" }
10410             },
10411             "300a,00eb" => {
10412             desc => "Compensator Transmission Data",
10413             vr => { DS => "1-n" }
10414             },
10415             "300a,00ec" => {
10416             desc => "Compensator Thickness Data",
10417             vr => { DS => "1-n" }
10418             },
10419             "300a,00ed" => {
10420             desc => "Number of Boli",
10421             vr => { IS => "1" }
10422             },
10423             "300a,00ee" => {
10424             desc => "Compensator Type",
10425             vr => { CS => "1" }
10426             },
10427             "300a,00f0" => {
10428             desc => "Number of Blocks",
10429             vr => { IS => "1" }
10430             },
10431             "300a,00f2" => {
10432             desc => "Total Block Tray Factor",
10433             vr => { DS => "1" }
10434             },
10435             "300a,00f3" => {
10436             desc => "Total Block Tray Water-Equivalent Thickness",
10437             vr => { FL => "1" }
10438             },
10439             "300a,00f4" => {
10440             desc => "Block Sequence",
10441             vr => { SQ => "1" }
10442             },
10443             "300a,00f5" => {
10444             desc => "Block Tray ID",
10445             vr => { SH => "1" }
10446             },
10447             "300a,00f6" => {
10448             desc => "Source to Block Tray Distance",
10449             vr => { DS => "1" }
10450             },
10451             "300a,00f7" => {
10452             desc => "Isocenter to Block Tray Distance",
10453             vr => { FL => "1" }
10454             },
10455             "300a,00f8" => {
10456             desc => "Block Type",
10457             vr => { CS => "1" }
10458             },
10459             "300a,00f9" => {
10460             desc => "Accessory Code",
10461             vr => { LO => "1" }
10462             },
10463             "300a,00fa" => {
10464             desc => "Block Divergence",
10465             vr => { CS => "1" }
10466             },
10467             "300a,00fb" => {
10468             desc => "Block Mounting Position",
10469             vr => { CS => "1" }
10470             },
10471             "300a,00fc" => {
10472             desc => "Block Number",
10473             vr => { IS => "1" }
10474             },
10475             "300a,00fe" => {
10476             desc => "Block Name",
10477             vr => { LO => "1" }
10478             },
10479             "300a,0100" => {
10480             desc => "Block Thickness",
10481             vr => { DS => "1" }
10482             },
10483             "300a,0102" => {
10484             desc => "Block Transmission",
10485             vr => { DS => "1" }
10486             },
10487             "300a,0104" => {
10488             desc => "Block Number of Points",
10489             vr => { IS => "1" }
10490             },
10491             "300a,0106" => {
10492             desc => "Block Data",
10493             vr => { DS => "2-2n" }
10494             },
10495             "300a,0107" => {
10496             desc => "Applicator Sequence",
10497             vr => { SQ => "1" }
10498             },
10499             "300a,0108" => {
10500             desc => "Applicator ID",
10501             vr => { SH => "1" }
10502             },
10503             "300a,0109" => {
10504             desc => "Applicator Type",
10505             vr => { CS => "1" }
10506             },
10507             "300a,010a" => {
10508             desc => "Applicator Description",
10509             vr => { LO => "1" }
10510             },
10511             "300a,010c" => {
10512             desc => "Cumulative Dose Reference Coefficient",
10513             vr => { DS => "1" }
10514             },
10515             "300a,010e" => {
10516             desc => "Final Cumulative Meterset Weight",
10517             vr => { DS => "1" }
10518             },
10519             "300a,0110" => {
10520             desc => "Number of Control Points",
10521             vr => { IS => "1" }
10522             },
10523             "300a,0111" => {
10524             desc => "Control Point Sequence",
10525             vr => { SQ => "1" }
10526             },
10527             "300a,0112" => {
10528             desc => "Control Point Index",
10529             vr => { IS => "1" }
10530             },
10531             "300a,0114" => {
10532             desc => "Nominal Beam Energy",
10533             vr => { DS => "1" }
10534             },
10535             "300a,0115" => {
10536             desc => "Dose Rate Set",
10537             vr => { DS => "1" }
10538             },
10539             "300a,0116" => {
10540             desc => "Wedge Position Sequence",
10541             vr => { SQ => "1" }
10542             },
10543             "300a,0118" => {
10544             desc => "Wedge Position",
10545             vr => { CS => "1" }
10546             },
10547             "300a,011a" => {
10548             desc => "Beam Limiting Device Position Sequence",
10549             vr => { SQ => "1" }
10550             },
10551             "300a,011c" => {
10552             desc => "Leaf/Jaw Positions",
10553             vr => { DS => "2-2n" }
10554             },
10555             "300a,011e" => {
10556             desc => "Gantry Angle",
10557             vr => { DS => "1" }
10558             },
10559             "300a,011f" => {
10560             desc => "Gantry Rotation Direction",
10561             vr => { CS => "1" }
10562             },
10563             "300a,0120" => {
10564             desc => "Beam Limiting Device Angle",
10565             vr => { DS => "1" }
10566             },
10567             "300a,0121" => {
10568             desc => "Beam Limiting Device Rotation Direction",
10569             vr => { CS => "1" }
10570             },
10571             "300a,0122" => {
10572             desc => "Patient Support Angle",
10573             vr => { DS => "1" }
10574             },
10575             "300a,0123" => {
10576             desc => "Patient Support Rotation Direction",
10577             vr => { CS => "1" }
10578             },
10579             "300a,0124" => {
10580             desc => "Table Top Eccentric Axis Distance",
10581             vr => { DS => "1" }
10582             },
10583             "300a,0125" => {
10584             desc => "Table Top Eccentric Angle",
10585             vr => { DS => "1" }
10586             },
10587             "300a,0126" => {
10588             desc => "Table Top Eccentric Rotation Direction",
10589             vr => { CS => "1" }
10590             },
10591             "300a,0128" => {
10592             desc => "Table Top Vertical Position",
10593             vr => { DS => "1" }
10594             },
10595             "300a,0129" => {
10596             desc => "Table Top Longitudinal Position",
10597             vr => { DS => "1" }
10598             },
10599             "300a,012a" => {
10600             desc => "Table Top Lateral Position",
10601             vr => { DS => "1" }
10602             },
10603             "300a,012c" => {
10604             desc => "Isocenter Position",
10605             vr => { DS => "3" }
10606             },
10607             "300a,012e" => {
10608             desc => "Surface Entry Point",
10609             vr => { DS => "3" }
10610             },
10611             "300a,0130" => {
10612             desc => "Source to Surface Distance",
10613             vr => { DS => "1" }
10614             },
10615             "300a,0134" => {
10616             desc => "Cumulative Meterset Weight",
10617             vr => { DS => "1" }
10618             },
10619             "300a,0140" => {
10620             desc => "Table Top Pitch Angle",
10621             vr => { FL => "1" }
10622             },
10623             "300a,0142" => {
10624             desc => "Table Top Pitch Rotation Direction",
10625             vr => { CS => "1" }
10626             },
10627             "300a,0144" => {
10628             desc => "Table Top Roll Angle",
10629             vr => { FL => "1" }
10630             },
10631             "300a,0146" => {
10632             desc => "Table Top Roll Rotation Direction",
10633             vr => { CS => "1" }
10634             },
10635             "300a,0148" => {
10636             desc => "Head Fixation Angle",
10637             vr => { FL => "1" }
10638             },
10639             "300a,014a" => {
10640             desc => "Gantry Pitch Angle",
10641             vr => { FL => "1" }
10642             },
10643             "300a,014c" => {
10644             desc => "Gantry Pitch Rotation Direction",
10645             vr => { CS => "1" }
10646             },
10647             "300a,014e" => {
10648             desc => "Gantry Pitch Angle Tolerance",
10649             vr => { FL => "1" }
10650             },
10651             "300a,0180" => {
10652             desc => "Patient Setup Sequence",
10653             vr => { SQ => "1" }
10654             },
10655             "300a,0182" => {
10656             desc => "Patient Setup Number",
10657             vr => { IS => "1" }
10658             },
10659             "300a,0183" => {
10660             desc => "Patient Setup Label",
10661             vr => { LO => "1" }
10662             },
10663             "300a,0184" => {
10664             desc => "Patient Additional Position",
10665             vr => { LO => "1" }
10666             },
10667             "300a,0190" => {
10668             desc => "Fixation Device Sequence",
10669             vr => { SQ => "1" }
10670             },
10671             "300a,0192" => {
10672             desc => "Fixation Device Type",
10673             vr => { CS => "1" }
10674             },
10675             "300a,0194" => {
10676             desc => "Fixation Device Label",
10677             vr => { SH => "1" }
10678             },
10679             "300a,0196" => {
10680             desc => "Fixation Device Description",
10681             vr => { ST => "1" }
10682             },
10683             "300a,0198" => {
10684             desc => "Fixation Device Position",
10685             vr => { SH => "1" }
10686             },
10687             "300a,0199" => {
10688             desc => "Fixation Device Pitch Angle",
10689             vr => { FL => "1" }
10690             },
10691             "300a,019a" => {
10692             desc => "Fixation Device Roll Angle",
10693             vr => { FL => "1" }
10694             },
10695             "300a,01a0" => {
10696             desc => "Shielding Device Sequence",
10697             vr => { SQ => "1" }
10698             },
10699             "300a,01a2" => {
10700             desc => "Shielding Device Type",
10701             vr => { CS => "1" }
10702             },
10703             "300a,01a4" => {
10704             desc => "Shielding Device Label",
10705             vr => { SH => "1" }
10706             },
10707             "300a,01a6" => {
10708             desc => "Shielding Device Description",
10709             vr => { ST => "1" }
10710             },
10711             "300a,01a8" => {
10712             desc => "Shielding Device Position",
10713             vr => { SH => "1" }
10714             },
10715             "300a,01b0" => {
10716             desc => "Setup Technique",
10717             vr => { CS => "1" }
10718             },
10719             "300a,01b2" => {
10720             desc => "Setup Technique Description",
10721             vr => { ST => "1" }
10722             },
10723             "300a,01b4" => {
10724             desc => "Setup Device Sequence",
10725             vr => { SQ => "1" }
10726             },
10727             "300a,01b6" => {
10728             desc => "Setup Device Type",
10729             vr => { CS => "1" }
10730             },
10731             "300a,01b8" => {
10732             desc => "Setup Device Label",
10733             vr => { SH => "1" }
10734             },
10735             "300a,01ba" => {
10736             desc => "Setup Device Description",
10737             vr => { ST => "1" }
10738             },
10739             "300a,01bc" => {
10740             desc => "Setup Device Parameter",
10741             vr => { DS => "1" }
10742             },
10743             "300a,01d0" => {
10744             desc => "Setup Reference Description",
10745             vr => { ST => "1" }
10746             },
10747             "300a,01d2" => {
10748             desc => "Table Top Vertical Setup Displacement",
10749             vr => { DS => "1" }
10750             },
10751             "300a,01d4" => {
10752             desc => "Table Top Longitudinal Setup Displacement",
10753             vr => { DS => "1" }
10754             },
10755             "300a,01d6" => {
10756             desc => "Table Top Lateral Setup Displacement",
10757             vr => { DS => "1" }
10758             },
10759             "300a,0200" => {
10760             desc => "Brachy Treatment Technique",
10761             vr => { CS => "1" }
10762             },
10763             "300a,0202" => {
10764             desc => "Brachy Treatment Type",
10765             vr => { CS => "1" }
10766             },
10767             "300a,0206" => {
10768             desc => "Treatment Machine Sequence",
10769             vr => { SQ => "1" }
10770             },
10771             "300a,0210" => {
10772             desc => "Source Sequence",
10773             vr => { SQ => "1" }
10774             },
10775             "300a,0212" => {
10776             desc => "Source Number",
10777             vr => { IS => "1" }
10778             },
10779             "300a,0214" => {
10780             desc => "Source Type",
10781             vr => { CS => "1" }
10782             },
10783             "300a,0216" => {
10784             desc => "Source Manufacturer",
10785             vr => { LO => "1" }
10786             },
10787             "300a,0218" => {
10788             desc => "Active Source Diameter",
10789             vr => { DS => "1" }
10790             },
10791             "300a,021a" => {
10792             desc => "Active Source Length",
10793             vr => { DS => "1" }
10794             },
10795             "300a,0222" => {
10796             desc => "Source Encapsulation Nominal Thickness",
10797             vr => { DS => "1" }
10798             },
10799             "300a,0224" => {
10800             desc => "Source Encapsulation Nominal Transmission",
10801             vr => { DS => "1" }
10802             },
10803             "300a,0226" => {
10804             desc => "Source Isotope Name",
10805             vr => { LO => "1" }
10806             },
10807             "300a,0228" => {
10808             desc => "Source Isotope Half Life",
10809             vr => { DS => "1" }
10810             },
10811             "300a,0229" => {
10812             desc => "Source Strength Units",
10813             vr => { CS => "1" }
10814             },
10815             "300a,022a" => {
10816             desc => "Reference Air Kerma Rate",
10817             vr => { DS => "1" }
10818             },
10819             "300a,022b" => {
10820             desc => "Source Strength",
10821             vr => { DS => "1" }
10822             },
10823             "300a,022c" => {
10824             desc => "Source Strength Reference Date",
10825             vr => { DA => "1" }
10826             },
10827             "300a,022e" => {
10828             desc => "Source Strength Reference Time",
10829             vr => { TM => "1" }
10830             },
10831             "300a,0230" => {
10832             desc => "Application Setup Sequence",
10833             vr => { SQ => "1" }
10834             },
10835             "300a,0232" => {
10836             desc => "Application Setup Type",
10837             vr => { CS => "1" }
10838             },
10839             "300a,0234" => {
10840             desc => "Application Setup Number",
10841             vr => { IS => "1" }
10842             },
10843             "300a,0236" => {
10844             desc => "Application Setup Name",
10845             vr => { LO => "1" }
10846             },
10847             "300a,0238" => {
10848             desc => "Application Setup Manufacturer",
10849             vr => { LO => "1" }
10850             },
10851             "300a,0240" => {
10852             desc => "Template Number",
10853             vr => { IS => "1" }
10854             },
10855             "300a,0242" => {
10856             desc => "Template Type",
10857             vr => { SH => "1" }
10858             },
10859             "300a,0244" => {
10860             desc => "Template Name",
10861             vr => { LO => "1" }
10862             },
10863             "300a,0250" => {
10864             desc => "Total Reference Air Kerma",
10865             vr => { DS => "1" }
10866             },
10867             "300a,0260" => {
10868             desc => "Brachy Accessory Device Sequence",
10869             vr => { SQ => "1" }
10870             },
10871             "300a,0262" => {
10872             desc => "Brachy Accessory Device Number",
10873             vr => { IS => "1" }
10874             },
10875             "300a,0263" => {
10876             desc => "Brachy Accessory Device ID",
10877             vr => { SH => "1" }
10878             },
10879             "300a,0264" => {
10880             desc => "Brachy Accessory Device Type",
10881             vr => { CS => "1" }
10882             },
10883             "300a,0266" => {
10884             desc => "Brachy Accessory Device Name",
10885             vr => { LO => "1" }
10886             },
10887             "300a,026a" => {
10888             desc => "Brachy Accessory Device Nominal Thickness",
10889             vr => { DS => "1" }
10890             },
10891             "300a,026c" => {
10892             desc => "Brachy Accessory Device Nominal Transmission",
10893             vr => { DS => "1" }
10894             },
10895             "300a,0280" => {
10896             desc => "Channel Sequence",
10897             vr => { SQ => "1" }
10898             },
10899             "300a,0282" => {
10900             desc => "Channel Number",
10901             vr => { IS => "1" }
10902             },
10903             "300a,0284" => {
10904             desc => "Channel Length",
10905             vr => { DS => "1" }
10906             },
10907             "300a,0286" => {
10908             desc => "Channel Total Time",
10909             vr => { DS => "1" }
10910             },
10911             "300a,0288" => {
10912             desc => "Source Movement Type",
10913             vr => { CS => "1" }
10914             },
10915             "300a,028a" => {
10916             desc => "Number of Pulses",
10917             vr => { IS => "1" }
10918             },
10919             "300a,028c" => {
10920             desc => "Pulse Repetition Interval",
10921             vr => { DS => "1" }
10922             },
10923             "300a,0290" => {
10924             desc => "Source Applicator Number",
10925             vr => { IS => "1" }
10926             },
10927             "300a,0291" => {
10928             desc => "Source Applicator ID",
10929             vr => { SH => "1" }
10930             },
10931             "300a,0292" => {
10932             desc => "Source Applicator Type",
10933             vr => { CS => "1" }
10934             },
10935             "300a,0294" => {
10936             desc => "Source Applicator Name",
10937             vr => { LO => "1" }
10938             },
10939             "300a,0296" => {
10940             desc => "Source Applicator Length",
10941             vr => { DS => "1" }
10942             },
10943             "300a,0298" => {
10944             desc => "Source Applicator Manufacturer",
10945             vr => { LO => "1" }
10946             },
10947             "300a,029c" => {
10948             desc => "Source Applicator Wall Nominal Thickness",
10949             vr => { DS => "1" }
10950             },
10951             "300a,029e" => {
10952             desc => "Source Applicator Wall Nominal Transmission",
10953             vr => { DS => "1" }
10954             },
10955             "300a,02a0" => {
10956             desc => "Source Applicator Step Size",
10957             vr => { DS => "1" }
10958             },
10959             "300a,02a2" => {
10960             desc => "Transfer Tube Number",
10961             vr => { IS => "1" }
10962             },
10963             "300a,02a4" => {
10964             desc => "Transfer Tube Length",
10965             vr => { DS => "1" }
10966             },
10967             "300a,02b0" => {
10968             desc => "Channel Shield Sequence",
10969             vr => { SQ => "1" }
10970             },
10971             "300a,02b2" => {
10972             desc => "Channel Shield Number",
10973             vr => { IS => "1" }
10974             },
10975             "300a,02b3" => {
10976             desc => "Channel Shield ID",
10977             vr => { SH => "1" }
10978             },
10979             "300a,02b4" => {
10980             desc => "Channel Shield Name",
10981             vr => { LO => "1" }
10982             },
10983             "300a,02b8" => {
10984             desc => "Channel Shield Nominal Thickness",
10985             vr => { DS => "1" }
10986             },
10987             "300a,02ba" => {
10988             desc => "Channel Shield Nominal Transmission",
10989             vr => { DS => "1" }
10990             },
10991             "300a,02c8" => {
10992             desc => "Final Cumulative Time Weight",
10993             vr => { DS => "1" }
10994             },
10995             "300a,02d0" => {
10996             desc => "Brachy Control Point Sequence",
10997             vr => { SQ => "1" }
10998             },
10999             "300a,02d2" => {
11000             desc => "Control Point Relative Position",
11001             vr => { DS => "1" }
11002             },
11003             "300a,02d4" => {
11004             desc => "Control Point 3D Position",
11005             vr => { DS => "3" }
11006             },
11007             "300a,02d6" => {
11008             desc => "Cumulative Time Weight",
11009             vr => { DS => "1" }
11010             },
11011             "300a,02e0" => {
11012             desc => "Compensator Divergence",
11013             vr => { CS => "1" }
11014             },
11015             "300a,02e1" => {
11016             desc => "Compensator Mounting Position",
11017             vr => { CS => "1" }
11018             },
11019             "300a,02e2" => {
11020             desc => "Source to Compensator Distance",
11021             vr => { DS => "1-n" }
11022             },
11023             "300a,02e3" => {
11024             desc => "Total Compensator Tray Water-Equivalent Thickness",
11025             vr => { FL => "1" }
11026             },
11027             "300a,02e4" => {
11028             desc => "Isocenter to Compensator Tray Distance",
11029             vr => { FL => "1" }
11030             },
11031             "300a,02e5" => {
11032             desc => "Compensator Column Offset",
11033             vr => { FL => "1" }
11034             },
11035             "300a,02e6" => {
11036             desc => "Isocenter to Compensator Distances",
11037             vr => { FL => "1-n" }
11038             },
11039             "300a,02e7" => {
11040             desc => "Compensator Relative Stopping Power Ratio",
11041             vr => { FL => "1" }
11042             },
11043             "300a,02e8" => {
11044             desc => "Compensator Milling Tool Diameter",
11045             vr => { FL => "1" }
11046             },
11047             "300a,02ea" => {
11048             desc => "Ion Range Compensator Sequence",
11049             vr => { SQ => "1" }
11050             },
11051             "300a,02eb" => {
11052             desc => "Compensator Description",
11053             vr => { LT => "1" }
11054             },
11055             "300a,0302" => {
11056             desc => "Radiation Mass Number",
11057             vr => { IS => "1" }
11058             },
11059             "300a,0304" => {
11060             desc => "Radiation Atomic Number",
11061             vr => { IS => "1" }
11062             },
11063             "300a,0306" => {
11064             desc => "Radiation Charge State",
11065             vr => { SS => "1" }
11066             },
11067             "300a,0308" => {
11068             desc => "Scan Mode",
11069             vr => { CS => "1" }
11070             },
11071             "300a,030a" => {
11072             desc => "Virtual Source-Axis Distances",
11073             vr => { FL => "2" }
11074             },
11075             "300a,030c" => {
11076             desc => "Snout Sequence",
11077             vr => { SQ => "1" }
11078             },
11079             "300a,030d" => {
11080             desc => "Snout Position",
11081             vr => { FL => "1" }
11082             },
11083             "300a,030f" => {
11084             desc => "Snout ID",
11085             vr => { SH => "1" }
11086             },
11087             "300a,0312" => {
11088             desc => "Number of Range Shifters",
11089             vr => { IS => "1" }
11090             },
11091             "300a,0314" => {
11092             desc => "Range Shifter Sequence",
11093             vr => { SQ => "1" }
11094             },
11095             "300a,0316" => {
11096             desc => "Range Shifter Number",
11097             vr => { IS => "1" }
11098             },
11099             "300a,0318" => {
11100             desc => "Range Shifter ID",
11101             vr => { SH => "1" }
11102             },
11103             "300a,0320" => {
11104             desc => "Range Shifter Type",
11105             vr => { CS => "1" }
11106             },
11107             "300a,0322" => {
11108             desc => "Range Shifter Description",
11109             vr => { LO => "1" }
11110             },
11111             "300a,0330" => {
11112             desc => "Number of Lateral Spreading Devices",
11113             vr => { IS => "1" }
11114             },
11115             "300a,0332" => {
11116             desc => "Lateral Spreading Device Sequence",
11117             vr => { SQ => "1" }
11118             },
11119             "300a,0334" => {
11120             desc => "Lateral Spreading Device Number",
11121             vr => { IS => "1" }
11122             },
11123             "300a,0336" => {
11124             desc => "Lateral Spreading Device ID",
11125             vr => { SH => "1" }
11126             },
11127             "300a,0338" => {
11128             desc => "Lateral Spreading Device Type",
11129             vr => { CS => "1" }
11130             },
11131             "300a,033a" => {
11132             desc => "Lateral Spreading Device Description",
11133             vr => { LO => "1" }
11134             },
11135             "300a,033c" => {
11136             desc => "Lateral Spreading Device Water Equivalent Thickness",
11137             vr => { FL => "1" }
11138             },
11139             "300a,0340" => {
11140             desc => "Number of Range Modulators",
11141             vr => { IS => "1" }
11142             },
11143             "300a,0342" => {
11144             desc => "Range Modulator Sequence",
11145             vr => { SQ => "1" }
11146             },
11147             "300a,0344" => {
11148             desc => "Range Modulator Number",
11149             vr => { IS => "1" }
11150             },
11151             "300a,0346" => {
11152             desc => "Range Modulator ID",
11153             vr => { SH => "1" }
11154             },
11155             "300a,0348" => {
11156             desc => "Range Modulator Type",
11157             vr => { CS => "1" }
11158             },
11159             "300a,034a" => {
11160             desc => "Range Modulator Description",
11161             vr => { LO => "1" }
11162             },
11163             "300a,034c" => {
11164             desc => "Beam Current Modulation ID",
11165             vr => { SH => "1" }
11166             },
11167             "300a,0350" => {
11168             desc => "Patient Support Type",
11169             vr => { CS => "1" }
11170             },
11171             "300a,0352" => {
11172             desc => "Patient Support ID",
11173             vr => { SH => "1" }
11174             },
11175             "300a,0354" => {
11176             desc => "Patient Support Accessory Code",
11177             vr => { LO => "1" }
11178             },
11179             "300a,0356" => {
11180             desc => "Fixation Light Azimuthal Angle",
11181             vr => { FL => "1" }
11182             },
11183             "300a,0358" => {
11184             desc => "Fixation Light Polar Angle",
11185             vr => { FL => "1" }
11186             },
11187             "300a,035a" => {
11188             desc => "Meterset Rate",
11189             vr => { FL => "1" }
11190             },
11191             "300a,0360" => {
11192             desc => "Range Shifter Settings Sequence",
11193             vr => { SQ => "1" }
11194             },
11195             "300a,0362" => {
11196             desc => "Range Shifter Setting",
11197             vr => { LO => "1" }
11198             },
11199             "300a,0364" => {
11200             desc => "Isocenter to Range Shifter Distance",
11201             vr => { FL => "1" }
11202             },
11203             "300a,0366" => {
11204             desc => "Range Shifter Water Equivalent Thickness",
11205             vr => { FL => "1" }
11206             },
11207             "300a,0370" => {
11208             desc => "Lateral Spreading Device Settings Sequence",
11209             vr => { SQ => "1" }
11210             },
11211             "300a,0372" => {
11212             desc => "Lateral Spreading Device Setting",
11213             vr => { LO => "1" }
11214             },
11215             "300a,0374" => {
11216             desc => "Isocenter to Lateral Spreading Device Distance",
11217             vr => { FL => "1" }
11218             },
11219             "300a,0380" => {
11220             desc => "Range Modulator Settings Sequence",
11221             vr => { SQ => "1" }
11222             },
11223             "300a,0382" => {
11224             desc => "Range Modulator Gating Start Value",
11225             vr => { FL => "1" }
11226             },
11227             "300a,0384" => {
11228             desc => "Range Modulator Gating Stop Value",
11229             vr => { FL => "1" }
11230             },
11231             "300a,0386" => {
11232             desc => "Range Modulator Gating Start Water Equivalent Thickness",
11233             vr => { FL => "1" }
11234             },
11235             "300a,0388" => {
11236             desc => "Range Modulator Gating Stop Water Equivalent Thickness",
11237             vr => { FL => "1" }
11238             },
11239             "300a,038a" => {
11240             desc => "Isocenter to Range Modulator Distance",
11241             vr => { FL => "1" }
11242             },
11243             "300a,0390" => {
11244             desc => "Scan Spot Tune ID",
11245             vr => { SH => "1" }
11246             },
11247             "300a,0392" => {
11248             desc => "Number of Scan Spot Positions",
11249             vr => { IS => "1" }
11250             },
11251             "300a,0394" => {
11252             desc => "Scan Spot Position Map",
11253             vr => { FL => "1-n" }
11254             },
11255             "300a,0396" => {
11256             desc => "Scan Spot Meterset Weights",
11257             vr => { FL => "1-n" }
11258             },
11259             "300a,0398" => {
11260             desc => "Scanning Spot Size",
11261             vr => { FL => "2" }
11262             },
11263             "300a,039a" => {
11264             desc => "Number of Paintings",
11265             vr => { IS => "1" }
11266             },
11267             "300a,03a0" => {
11268             desc => "Ion Tolerance Table Sequence",
11269             vr => { SQ => "1" }
11270             },
11271             "300a,03a2" => {
11272             desc => "Ion Beam Sequence",
11273             vr => { SQ => "1" }
11274             },
11275             "300a,03a4" => {
11276             desc => "Ion Beam Limiting Device Sequence",
11277             vr => { SQ => "1" }
11278             },
11279             "300a,03a6" => {
11280             desc => "Ion Block Sequence",
11281             vr => { SQ => "1" }
11282             },
11283             "300a,03a8" => {
11284             desc => "Ion Control Point Sequence",
11285             vr => { SQ => "1" }
11286             },
11287             "300a,03aa" => {
11288             desc => "Ion Wedge Sequence",
11289             vr => { SQ => "1" }
11290             },
11291             "300a,03ac" => {
11292             desc => "Ion Wedge Position Sequence",
11293             vr => { SQ => "1" }
11294             },
11295             "300a,0401" => {
11296             desc => "Referenced Setup Image Sequence",
11297             vr => { SQ => "1" }
11298             },
11299             "300a,0402" => {
11300             desc => "Setup Image Comment",
11301             vr => { ST => "1" }
11302             },
11303             "300a,0410" => {
11304             desc => "Motion Synchronization Sequence",
11305             vr => { SQ => "1" }
11306             },
11307             "300a,0412" => {
11308             desc => "Control Point Orientation",
11309             vr => { FL => "3" }
11310             },
11311             "300a,0420" => {
11312             desc => "General Accessory Sequence",
11313             vr => { SQ => "1" }
11314             },
11315             "300a,0421" => {
11316             desc => "General Accessory ID",
11317             vr => { SH => "1" }
11318             },
11319             "300a,0422" => {
11320             desc => "General Accessory Description",
11321             vr => { ST => "1" }
11322             },
11323             "300a,0423" => {
11324             desc => "General Accessory Type",
11325             vr => { CS => "1" }
11326             },
11327             "300a,0424" => {
11328             desc => "General Accessory Number",
11329             vr => { IS => "1" }
11330             },
11331             "300c,0002" => {
11332             desc => "Referenced RT Plan Sequence",
11333             vr => { SQ => "1" }
11334             },
11335             "300c,0004" => {
11336             desc => "Referenced Beam Sequence",
11337             vr => { SQ => "1" }
11338             },
11339             "300c,0006" => {
11340             desc => "Referenced Beam Number",
11341             vr => { IS => "1" }
11342             },
11343             "300c,0007" => {
11344             desc => "Referenced Reference Image Number",
11345             vr => { IS => "1" }
11346             },
11347             "300c,0008" => {
11348             desc => "Start Cumulative Meterset Weight",
11349             vr => { DS => "1" }
11350             },
11351             "300c,0009" => {
11352             desc => "End Cumulative Meterset Weight",
11353             vr => { DS => "1" }
11354             },
11355             "300c,000a" => {
11356             desc => "Referenced Brachy Application Setup Sequence",
11357             vr => { SQ => "1" }
11358             },
11359             "300c,000c" => {
11360             desc => "Referenced Brachy Application Setup Number",
11361             vr => { IS => "1" }
11362             },
11363             "300c,000e" => {
11364             desc => "Referenced Source Number",
11365             vr => { IS => "1" }
11366             },
11367             "300c,0020" => {
11368             desc => "Referenced Fraction Group Sequence",
11369             vr => { SQ => "1" }
11370             },
11371             "300c,0022" => {
11372             desc => "Referenced Fraction Group Number",
11373             vr => { IS => "1" }
11374             },
11375             "300c,0040" => {
11376             desc => "Referenced Verification Image Sequence",
11377             vr => { SQ => "1" }
11378             },
11379             "300c,0042" => {
11380             desc => "Referenced Reference Image Sequence",
11381             vr => { SQ => "1" }
11382             },
11383             "300c,0050" => {
11384             desc => "Referenced Dose Reference Sequence",
11385             vr => { SQ => "1" }
11386             },
11387             "300c,0051" => {
11388             desc => "Referenced Dose Reference Number",
11389             vr => { IS => "1" }
11390             },
11391             "300c,0055" => {
11392             desc => "Brachy Referenced Dose Reference Sequence",
11393             vr => { SQ => "1" }
11394             },
11395             "300c,0060" => {
11396             desc => "Referenced Structure Set Sequence",
11397             vr => { SQ => "1" }
11398             },
11399             "300c,006a" => {
11400             desc => "Referenced Patient Setup Number",
11401             vr => { IS => "1" }
11402             },
11403             "300c,0080" => {
11404             desc => "Referenced Dose Sequence",
11405             vr => { SQ => "1" }
11406             },
11407             "300c,00a0" => {
11408             desc => "Referenced Tolerance Table Number",
11409             vr => { IS => "1" }
11410             },
11411             "300c,00b0" => {
11412             desc => "Referenced Bolus Sequence",
11413             vr => { SQ => "1" }
11414             },
11415             "300c,00c0" => {
11416             desc => "Referenced Wedge Number",
11417             vr => { IS => "1" }
11418             },
11419             "300c,00d0" => {
11420             desc => "Referenced Compensator Number",
11421             vr => { IS => "1" }
11422             },
11423             "300c,00e0" => {
11424             desc => "Referenced Block Number",
11425             vr => { IS => "1" }
11426             },
11427             "300c,00f0" => {
11428             desc => "Referenced Control Point Index",
11429             vr => { IS => "1" }
11430             },
11431             "300c,00f2" => {
11432             desc => "Referenced Control Point Sequence",
11433             vr => { SQ => "1" }
11434             },
11435             "300c,00f4" => {
11436             desc => "Referenced Start Control Point Index",
11437             vr => { IS => "1" }
11438             },
11439             "300c,00f6" => {
11440             desc => "Referenced Stop Control Point Index",
11441             vr => { IS => "1" }
11442             },
11443             "300c,0100" => {
11444             desc => "Referenced Range Shifter Number",
11445             vr => { IS => "1" }
11446             },
11447             "300c,0102" => {
11448             desc => "Referenced Lateral Spreading Device Number",
11449             vr => { IS => "1" }
11450             },
11451             "300c,0104" => {
11452             desc => "Referenced Range Modulator Number",
11453             vr => { IS => "1" }
11454             },
11455             "300e,0002" => {
11456             desc => "Approval Status",
11457             vr => { CS => "1" }
11458             },
11459             "300e,0004" => {
11460             desc => "Review Date",
11461             vr => { DA => "1" }
11462             },
11463             "300e,0005" => {
11464             desc => "Review Time",
11465             vr => { TM => "1" }
11466             },
11467             "300e,0008" => {
11468             desc => "Reviewer Name",
11469             vr => { PN => "1" }
11470             },
11471             "4000,0010" => {
11472             desc => "Arbitrary",
11473             vr => { LT => "1" },
11474             ret => 1
11475             },
11476             "4000,4000" => {
11477             desc => "Text Comments",
11478             vr => { LT => "1" },
11479             ret => 1
11480             },
11481             "4008,0040" => {
11482             desc => "Results ID",
11483             vr => { SH => "1" },
11484             ret => 1
11485             },
11486             "4008,0042" => {
11487             desc => "Results ID Issuer",
11488             vr => { LO => "1" },
11489             ret => 1
11490             },
11491             "4008,0050" => {
11492             desc => "Referenced Interpretation Sequence",
11493             vr => { SQ => "1" },
11494             ret => 1
11495             },
11496             "4008,0100" => {
11497             desc => "Interpretation Recorded Date",
11498             vr => { DA => "1" },
11499             ret => 1
11500             },
11501             "4008,0101" => {
11502             desc => "Interpretation Recorded Time",
11503             vr => { TM => "1" },
11504             ret => 1
11505             },
11506             "4008,0102" => {
11507             desc => "Interpretation Recorder",
11508             vr => { PN => "1" },
11509             ret => 1
11510             },
11511             "4008,0103" => {
11512             desc => "Reference to Recorded Sound",
11513             vr => { LO => "1" },
11514             ret => 1
11515             },
11516             "4008,0108" => {
11517             desc => "Interpretation Transcription Date",
11518             vr => { DA => "1" },
11519             ret => 1
11520             },
11521             "4008,0109" => {
11522             desc => "Interpretation Transcription Time",
11523             vr => { TM => "1" },
11524             ret => 1
11525             },
11526             "4008,010a" => {
11527             desc => "Interpretation Transcriber",
11528             vr => { PN => "1" },
11529             ret => 1
11530             },
11531             "4008,010b" => {
11532             desc => "Interpretation Text",
11533             vr => { ST => "1" },
11534             ret => 1
11535             },
11536             "4008,010c" => {
11537             desc => "Interpretation Author",
11538             vr => { PN => "1" },
11539             ret => 1
11540             },
11541             "4008,0111" => {
11542             desc => "Interpretation Approver Sequence",
11543             vr => { SQ => "1" },
11544             ret => 1
11545             },
11546             "4008,0112" => {
11547             desc => "Interpretation Approval Date",
11548             vr => { DA => "1" },
11549             ret => 1
11550             },
11551             "4008,0113" => {
11552             desc => "Interpretation Approval Time",
11553             vr => { TM => "1" },
11554             ret => 1
11555             },
11556             "4008,0114" => {
11557             desc => "Physician Approving Interpretation",
11558             vr => { PN => "1" },
11559             ret => 1
11560             },
11561             "4008,0115" => {
11562             desc => "Interpretation Diagnosis Description",
11563             vr => { LT => "1" },
11564             ret => 1
11565             },
11566             "4008,0117" => {
11567             desc => "Interpretation Diagnosis Code Sequence",
11568             vr => { SQ => "1" },
11569             ret => 1
11570             },
11571             "4008,0118" => {
11572             desc => "Results Distribution List Sequence",
11573             vr => { SQ => "1" },
11574             ret => 1
11575             },
11576             "4008,0119" => {
11577             desc => "Distribution Name",
11578             vr => { PN => "1" },
11579             ret => 1
11580             },
11581             "4008,011a" => {
11582             desc => "Distribution Address",
11583             vr => { LO => "1" },
11584             ret => 1
11585             },
11586             "4008,0200" => {
11587             desc => "Interpretation ID",
11588             vr => { SH => "1" },
11589             ret => 1
11590             },
11591             "4008,0202" => {
11592             desc => "Interpretation ID Issuer",
11593             vr => { LO => "1" },
11594             ret => 1
11595             },
11596             "4008,0210" => {
11597             desc => "Interpretation Type ID",
11598             vr => { CS => "1" },
11599             ret => 1
11600             },
11601             "4008,0212" => {
11602             desc => "Interpretation Status ID",
11603             vr => { CS => "1" },
11604             ret => 1
11605             },
11606             "4008,0300" => {
11607             desc => "Impressions",
11608             vr => { ST => "1" },
11609             ret => 1
11610             },
11611             "4008,4000" => {
11612             desc => "Results Comments",
11613             vr => { ST => "1" },
11614             ret => 1
11615             },
11616             "4ffe,0001" => {
11617             desc => "MAC Parameters Sequence",
11618             vr => { SQ => "1" }
11619             },
11620             "50xx,0005" => {
11621             desc => "Curve Dimensions ",
11622             vr => { US => "1" },
11623             ret => 1
11624             },
11625             "50xx,0010" => {
11626             desc => "Number of Points ",
11627             vr => { US => "1" },
11628             ret => 1
11629             },
11630             "50xx,0020" => {
11631             desc => "Type of Data",
11632             vr => { CS => "1" },
11633             ret => 1
11634             },
11635             "50xx,0022" => {
11636             desc => "Curve Description",
11637             vr => { LO => "1" },
11638             ret => 1
11639             },
11640             "50xx,0030" => {
11641             desc => "Axis Units ",
11642             vr => { SH => "1-n" },
11643             ret => 1
11644             },
11645             "50xx,0040" => {
11646             desc => "Axis Labels ",
11647             vr => { SH => "1-n" },
11648             ret => 1
11649             },
11650             "50xx,0103" => {
11651             desc => "Data Value Representation ",
11652             vr => { US => "1" },
11653             ret => 1
11654             },
11655             "50xx,0104" => {
11656             desc => "Minimum Coordinate Value ",
11657             vr => { US => "1-n" },
11658             ret => 1
11659             },
11660             "50xx,0105" => {
11661             desc => "Maximum Coordinate Value ",
11662             vr => { US => "1-n" },
11663             ret => 1
11664             },
11665             "50xx,0106" => {
11666             desc => "Curve Range",
11667             vr => { SH => "1-n" },
11668             ret => 1
11669             },
11670             "50xx,0110" => {
11671             desc => "Curve Data Descriptor",
11672             vr => { US => "1-n" },
11673             ret => 1
11674             },
11675             "50xx,0112" => {
11676             desc => "Coordinate Start Value",
11677             vr => { US => "1-n" },
11678             ret => 1
11679             },
11680             "50xx,0114" => {
11681             desc => "Coordinate Step Value",
11682             vr => { US => "1-n" },
11683             ret => 1
11684             },
11685             "50xx,1001" => {
11686             desc => "Curve Activation Layer ",
11687             vr => { CS => "1" },
11688             ret => 1
11689             },
11690             "50xx,2000" => {
11691             desc => "Audio Type",
11692             vr => { US => "1" },
11693             ret => 1
11694             },
11695             "50xx,2002" => {
11696             desc => "Audio Sample Format",
11697             vr => { US => "1" },
11698             ret => 1
11699             },
11700             "50xx,2004" => {
11701             desc => "Number of Channels",
11702             vr => { US => "1" },
11703             ret => 1
11704             },
11705             "50xx,2006" => {
11706             desc => "Number of Samples",
11707             vr => { UL => "1" },
11708             ret => 1
11709             },
11710             "50xx,2008" => {
11711             desc => "Sample Rate",
11712             vr => { UL => "1" },
11713             ret => 1
11714             },
11715             "50xx,200a" => {
11716             desc => "Total Time",
11717             vr => { UL => "1" },
11718             ret => 1
11719             },
11720             "50xx,200c" => {
11721             desc => "Audio Sample Data",
11722             vr => { OB => "1", OW => "1" },
11723             ret => 1
11724             },
11725             "50xx,200e" => {
11726             desc => "Audio Comments",
11727             vr => { LT => "1" },
11728             ret => 1
11729             },
11730             "50xx,2500" => {
11731             desc => "Curve Label",
11732             vr => { LO => "1" },
11733             ret => 1
11734             },
11735             "50xx,2600" => {
11736             desc => "Curve Referenced Overlay Sequence ",
11737             vr => { SQ => "1" },
11738             ret => 1
11739             },
11740             "50xx,2610" => {
11741             desc => "Curve Referenced Overlay Group",
11742             vr => { US => "1" },
11743             ret => 1
11744             },
11745             "50xx,3000" => {
11746             desc => "Curve Data",
11747             vr => { OB => "1", OW => "1" },
11748             ret => 1
11749             },
11750             "5200,9229" => {
11751             desc => "Shared Functional Groups Sequence",
11752             vr => { SQ => "1" }
11753             },
11754             "5200,9230" => {
11755             desc => "Per-frame Functional Groups Sequence",
11756             vr => { SQ => "1" }
11757             },
11758             "5400,0100" => {
11759             desc => "Waveform Sequence ",
11760             vr => { SQ => "1" }
11761             },
11762             "5400,0110" => {
11763             desc => "Channel Minimum Value ",
11764             vr => { OB => "1", OW => "1" }
11765             },
11766             "5400,0112" => {
11767             desc => "Channel Maximum Value ",
11768             vr => { OB => "1", OW => "1" }
11769             },
11770             "5400,1004" => {
11771             desc => "Waveform Bits Allocated",
11772             vr => { US => "1" }
11773             },
11774             "5400,1006" => {
11775             desc => "Waveform Sample Interpretation",
11776             vr => { CS => "1" }
11777             },
11778             "5400,100a" => {
11779             desc => "Waveform Padding Value",
11780             vr => { OB => "1", OW => "1" }
11781             },
11782             "5400,1010" => {
11783             desc => "Waveform Data ",
11784             vr => { OB => "1", OW => "1" }
11785             },
11786             "5600,0010" => {
11787             desc => "First Order Phase Correction Angle",
11788             vr => { OF => "1" }
11789             },
11790             "5600,0020" => {
11791             desc => "Spectroscopy Data",
11792             vr => { OF => "1" }
11793             },
11794             "60xx,0010" => {
11795             desc => "Overlay Rows",
11796             vr => { US => "1" }
11797             },
11798             "60xx,0011" => {
11799             desc => "Overlay Columns",
11800             vr => { US => "1" }
11801             },
11802             "60xx,0012" => {
11803             desc => "Overlay Planes",
11804             vr => { US => "1" },
11805             ret => 1
11806             },
11807             "60xx,0015" => {
11808             desc => "Number of Frames in Overlay",
11809             vr => { IS => "1" }
11810             },
11811             "60xx,0022" => {
11812             desc => "Overlay Description",
11813             vr => { LO => "1" }
11814             },
11815             "60xx,0040" => {
11816             desc => "Overlay Type",
11817             vr => { CS => "1" }
11818             },
11819             "60xx,0045" => {
11820             desc => "Overlay Subtype",
11821             vr => { LO => "1" }
11822             },
11823             "60xx,0050" => {
11824             desc => "Overlay Origin",
11825             vr => { SS => "2" }
11826             },
11827             "60xx,0051" => {
11828             desc => "Image Frame Origin",
11829             vr => { US => "1" }
11830             },
11831             "60xx,0052" => {
11832             desc => "Overlay Plane Origin",
11833             vr => { US => "1" },
11834             ret => 1
11835             },
11836             "60xx,0060" => {
11837             desc => "Overlay Compression Code",
11838             vr => { CS => "1" },
11839             ret => 1
11840             },
11841             "60xx,0061" => {
11842             desc => "Overlay Compression Originator",
11843             vr => { SH => "1" },
11844             ret => 1
11845             },
11846             "60xx,0062" => {
11847             desc => "Overlay Compression Label",
11848             vr => { SH => "1" },
11849             ret => 1
11850             },
11851             "60xx,0063" => {
11852             desc => "Overlay Compression Description",
11853             vr => { CS => "1" },
11854             ret => 1
11855             },
11856             "60xx,0066" => {
11857             desc => "Overlay Compression Step Pointers",
11858             vr => { AT => "1-n" },
11859             ret => 1
11860             },
11861             "60xx,0068" => {
11862             desc => "Overlay Repeat Interval",
11863             vr => { US => "1" },
11864             ret => 1
11865             },
11866             "60xx,0069" => {
11867             desc => "Overlay Bits Grouped",
11868             vr => { US => "1" },
11869             ret => 1
11870             },
11871             "60xx,0100" => {
11872             desc => "Overlay Bits Allocated",
11873             vr => { US => "1" }
11874             },
11875             "60xx,0102" => {
11876             desc => "Overlay Bit Position",
11877             vr => { US => "1" }
11878             },
11879             "60xx,0110" => {
11880             desc => "Overlay Format",
11881             vr => { CS => "1" },
11882             ret => 1
11883             },
11884             "60xx,0200" => {
11885             desc => "Overlay Location",
11886             vr => { US => "1" },
11887             ret => 1
11888             },
11889             "60xx,0800" => {
11890             desc => "Overlay Code Label",
11891             vr => { CS => "1-n" },
11892             ret => 1
11893             },
11894             "60xx,0802" => {
11895             desc => "Overlay Number of Tables",
11896             vr => { US => "1" },
11897             ret => 1
11898             },
11899             "60xx,0803" => {
11900             desc => "Overlay Code Table Location",
11901             vr => { AT => "1-n" },
11902             ret => 1
11903             },
11904             "60xx,0804" => {
11905             desc => "Overlay Bits For Code Word",
11906             vr => { US => "1" },
11907             ret => 1
11908             },
11909             "60xx,1001" => {
11910             desc => "Overlay Activation Layer ",
11911             vr => { CS => "1" }
11912             },
11913             "60xx,1100" => {
11914             desc => "Overlay Descriptor - Gray",
11915             vr => { US => "1" },
11916             ret => 1
11917             },
11918             "60xx,1101" => {
11919             desc => "Overlay Descriptor - Red",
11920             vr => { US => "1" },
11921             ret => 1
11922             },
11923             "60xx,1102" => {
11924             desc => "Overlay Descriptor - Green",
11925             vr => { US => "1" },
11926             ret => 1
11927             },
11928             "60xx,1103" => {
11929             desc => "Overlay Descriptor - Blue",
11930             vr => { US => "1" },
11931             ret => 1
11932             },
11933             "60xx,1200" => {
11934             desc => "Overlays - Gray",
11935             vr => { US => "1-n" },
11936             ret => 1
11937             },
11938             "60xx,1201" => {
11939             desc => "Overlays - Red",
11940             vr => { US => "1-n" },
11941             ret => 1
11942             },
11943             "60xx,1202" => {
11944             desc => "Overlays - Green",
11945             vr => { US => "1-n" },
11946             ret => 1
11947             },
11948             "60xx,1203" => {
11949             desc => "Overlays - Blue",
11950             vr => { US => "1-n" },
11951             ret => 1
11952             },
11953             "60xx,1301" => {
11954             desc => "ROI Area",
11955             vr => { IS => "1" }
11956             },
11957             "60xx,1302" => {
11958             desc => "ROI Mean",
11959             vr => { DS => "1" }
11960             },
11961             "60xx,1303" => {
11962             desc => "ROI Standard Deviation",
11963             vr => { DS => "1" }
11964             },
11965             "60xx,1500" => {
11966             desc => "Overlay Label",
11967             vr => { LO => "1" }
11968             },
11969             "60xx,3000" => {
11970             desc => "Overlay Data",
11971             vr => { OB => "1", OW => "1" }
11972             },
11973             "60xx,4000" => {
11974             desc => "Overlay Comments",
11975             vr => { LT => "1" },
11976             ret => 1
11977             },
11978             "7fe0,0010" => {
11979             desc => "Pixel Data",
11980             vr => { OB => "1", OW => "1" }
11981             },
11982             "7fe0,0020" => {
11983             desc => "Coefficients SDVN",
11984             vr => { OW => "1" },
11985             ret => 1
11986             },
11987             "7fe0,0030" => {
11988             desc => "Coefficients SDHN",
11989             vr => { OW => "1" },
11990             ret => 1
11991             },
11992             "7fe0,0040" => {
11993             desc => "Coefficients SDDN",
11994             vr => { OW => "1" },
11995             ret => 1
11996             },
11997             "7fxx,0010" => {
11998             desc => "Variable Pixel Data",
11999             vr => { OB => "1", OW => "1" },
12000             ret => 1
12001             },
12002             "7fxx,0011" => {
12003             desc => "Variable Next Data Group",
12004             vr => { US => "1" },
12005             ret => 1
12006             },
12007             "7fxx,0020" => {
12008             desc => "Variable Coefficients SDVN",
12009             vr => { OW => "1" },
12010             ret => 1
12011             },
12012             "7fxx,0030" => {
12013             desc => "Variable Coefficients SDHN",
12014             vr => { OW => "1" },
12015             ret => 1
12016             },
12017             "7fxx,0040" => {
12018             desc => "Variable Coefficients SDDN",
12019             vr => { OW => "1" },
12020             ret => 1
12021             },
12022             "fffa,fffa" => {
12023             desc => "Digital Signatures Sequence",
12024             vr => { SQ => "1" }
12025             },
12026             "fffc,fffc" => {
12027             desc => "Data Set Trailing Padding",
12028             vr => { OB => "1" }
12029             },
12030             };
12031              
12032             my $DicomTagNameList = {
12033             FileMetaInformationGroupLength => "0002,0000",
12034             FileMetaInformationVersion => "0002,0001",
12035             MediaStorageSOPClassUID => "0002,0002",
12036             MediaStorageSOPInstanceUID => "0002,0003",
12037             TransferSyntaxUID => "0002,0010",
12038             ImplementationClassUID => "0002,0012",
12039             ImplementationVersionName => "0002,0013",
12040             SourceApplicationEntityTitle => "0002,0016",
12041             PrivateInformationCreatorUID => "0002,0100",
12042             PrivateInformation => "0002,0102",
12043             FileSetID => "0004,1130",
12044             FileSetDescriptorFileID => "0004,1141",
12045             SpecificCharacterSetOfFileSetDescriptorFile => "0004,1142",
12046             OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity => "0004,1200",
12047             OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity => "0004,1202",
12048             FileSetConsistencyFlag => "0004,1212",
12049             DirectoryRecordSequence => "0004,1220",
12050             OffsetOfTheNextDirectoryRecord => "0004,1400",
12051             RecordInUseFlag => "0004,1410",
12052             OffsetOfReferencedLowerLevelDirectoryEntity => "0004,1420",
12053             DirectoryRecordType => "0004,1430",
12054             PrivateRecordUID => "0004,1432",
12055             ReferencedFileID => "0004,1500",
12056             MRDRDirectoryRecordOffset => "0004,1504",
12057             ReferencedSOPClassUIDInFile => "0004,1510",
12058             ReferencedSOPInstanceUIDInFile => "0004,1511",
12059             ReferencedTransferSyntaxUIDInFile => "0004,1512",
12060             ReferencedRelatedGeneralSOPClassUIDInFile => "0004,151a",
12061             NumberOfReferences => "0004,1600",
12062             LengthToEnd => "0008,0001",
12063             SpecificCharacterSet => "0008,0005",
12064             LanguageCodeSequence => "0008,0006",
12065             ImageType => "0008,0008",
12066             RecognitionCode => "0008,0010",
12067             InstanceCreationDate => "0008,0012",
12068             InstanceCreationTime => "0008,0013",
12069             InstanceCreatorUID => "0008,0014",
12070             SOPClassUID => "0008,0016",
12071             SOPInstanceUID => "0008,0018",
12072             RelatedGeneralSOPClassUID => "0008,001a",
12073             OriginalSpecializedSOPClassUID => "0008,001b",
12074             StudyDate => "0008,0020",
12075             SeriesDate => "0008,0021",
12076             AcquisitionDate => "0008,0022",
12077             ContentDate => "0008,0023",
12078             OverlayDate => "0008,0024",
12079             CurveDate => "0008,0025",
12080             AcquisitionDateTime => "0008,002a",
12081             StudyTime => "0008,0030",
12082             SeriesTime => "0008,0031",
12083             AcquisitionTime => "0008,0032",
12084             ContentTime => "0008,0033",
12085             OverlayTime => "0008,0034",
12086             CurveTime => "0008,0035",
12087             DataSetType => "0008,0040",
12088             DataSetSubtype => "0008,0041",
12089             NuclearMedicineSeriesType => "0008,0042",
12090             AccessionNumber => "0008,0050",
12091             IssuerOfAccessionNumberSequence => "0008,0051",
12092             QueryRetrieveLevel => "0008,0052",
12093             RetrieveAETitle => "0008,0054",
12094             InstanceAvailability => "0008,0056",
12095             FailedSOPInstanceUIDList => "0008,0058",
12096             Modality => "0008,0060",
12097             ModalitiesInStudy => "0008,0061",
12098             SOPClassesInStudy => "0008,0062",
12099             ConversionType => "0008,0064",
12100             PresentationIntentType => "0008,0068",
12101             Manufacturer => "0008,0070",
12102             InstitutionName => "0008,0080",
12103             InstitutionAddress => "0008,0081",
12104             InstitutionCodeSequence => "0008,0082",
12105             ReferringPhysicianName => "0008,0090",
12106             ReferringPhysicianAddress => "0008,0092",
12107             ReferringPhysicianTelephoneNumbers => "0008,0094",
12108             ReferringPhysicianIdentificationSequence => "0008,0096",
12109             CodeValue => "0008,0100",
12110             CodingSchemeDesignator => "0008,0102",
12111             CodingSchemeVersion => "0008,0103",
12112             CodeMeaning => "0008,0104",
12113             MappingResource => "0008,0105",
12114             ContextGroupVersion => "0008,0106",
12115             ContextGroupLocalVersion => "0008,0107",
12116             ContextGroupExtensionFlag => "0008,010b",
12117             CodingSchemeUID => "0008,010c",
12118             ContextGroupExtensionCreatorUID => "0008,010d",
12119             ContextIdentifier => "0008,010f",
12120             CodingSchemeIdentificationSequence => "0008,0110",
12121             CodingSchemeRegistry => "0008,0112",
12122             CodingSchemeExternalID => "0008,0114",
12123             CodingSchemeName => "0008,0115",
12124             CodingSchemeResponsibleOrganization => "0008,0116",
12125             ContextUID => "0008,0117",
12126             TimezoneOffsetFromUTC => "0008,0201",
12127             NetworkID => "0008,1000",
12128             StationName => "0008,1010",
12129             StudyDescription => "0008,1030",
12130             ProcedureCodeSequence => "0008,1032",
12131             SeriesDescription => "0008,103e",
12132             SeriesDescriptionCodeSequence => "0008,103f",
12133             InstitutionalDepartmentName => "0008,1040",
12134             PhysiciansOfRecord => "0008,1048",
12135             PhysiciansOfRecordIdentificationSequence => "0008,1049",
12136             PerformingPhysicianName => "0008,1050",
12137             PerformingPhysicianIdentificationSequence => "0008,1052",
12138             NameOfPhysiciansReadingStudy => "0008,1060",
12139             PhysiciansReadingStudyIdentificationSequence => "0008,1062",
12140             OperatorsName => "0008,1070",
12141             OperatorIdentificationSequence => "0008,1072",
12142             AdmittingDiagnosesDescription => "0008,1080",
12143             AdmittingDiagnosesCodeSequence => "0008,1084",
12144             ManufacturerModelName => "0008,1090",
12145             ReferencedResultsSequence => "0008,1100",
12146             ReferencedStudySequence => "0008,1110",
12147             ReferencedPerformedProcedureStepSequence => "0008,1111",
12148             ReferencedSeriesSequence => "0008,1115",
12149             ReferencedPatientSequence => "0008,1120",
12150             ReferencedVisitSequence => "0008,1125",
12151             ReferencedOverlaySequence => "0008,1130",
12152             ReferencedStereometricInstanceSequence => "0008,1134",
12153             ReferencedWaveformSequence => "0008,113a",
12154             ReferencedImageSequence => "0008,1140",
12155             ReferencedCurveSequence => "0008,1145",
12156             ReferencedInstanceSequence => "0008,114a",
12157             ReferencedRealWorldValueMappingInstanceSequence => "0008,114b",
12158             ReferencedSOPClassUID => "0008,1150",
12159             ReferencedSOPInstanceUID => "0008,1155",
12160             SOPClassesSupported => "0008,115a",
12161             ReferencedFrameNumber => "0008,1160",
12162             SimpleFrameList => "0008,1161",
12163             CalculatedFrameList => "0008,1162",
12164             TimeRange => "0008,1163",
12165             FrameExtractionSequence => "0008,1164",
12166             MultiFrameSourceSOPInstanceUID => "0008,1167",
12167             TransactionUID => "0008,1195",
12168             FailureReason => "0008,1197",
12169             FailedSOPSequence => "0008,1198",
12170             ReferencedSOPSequence => "0008,1199",
12171             StudiesContainingOtherReferencedInstancesSequence => "0008,1200",
12172             RelatedSeriesSequence => "0008,1250",
12173             LossyImageCompressionRetired => "0008,2110",
12174             DerivationDescription => "0008,2111",
12175             SourceImageSequence => "0008,2112",
12176             StageName => "0008,2120",
12177             StageNumber => "0008,2122",
12178             NumberOfStages => "0008,2124",
12179             ViewName => "0008,2127",
12180             ViewNumber => "0008,2128",
12181             NumberOfEventTimers => "0008,2129",
12182             NumberOfViewsInStage => "0008,212a",
12183             EventElapsedTimes => "0008,2130",
12184             EventTimerNames => "0008,2132",
12185             EventTimerSequence => "0008,2133",
12186             EventTimeOffset => "0008,2134",
12187             EventCodeSequence => "0008,2135",
12188             StartTrim => "0008,2142",
12189             StopTrim => "0008,2143",
12190             RecommendedDisplayFrameRate => "0008,2144",
12191             TransducerPosition => "0008,2200",
12192             TransducerOrientation => "0008,2204",
12193             AnatomicStructure => "0008,2208",
12194             AnatomicRegionSequence => "0008,2218",
12195             AnatomicRegionModifierSequence => "0008,2220",
12196             PrimaryAnatomicStructureSequence => "0008,2228",
12197             AnatomicStructureSpaceOrRegionSequence => "0008,2229",
12198             PrimaryAnatomicStructureModifierSequence => "0008,2230",
12199             TransducerPositionSequence => "0008,2240",
12200             TransducerPositionModifierSequence => "0008,2242",
12201             TransducerOrientationSequence => "0008,2244",
12202             TransducerOrientationModifierSequence => "0008,2246",
12203             AnatomicStructureSpaceOrRegionCodeSequenceTrial => "0008,2251",
12204             AnatomicPortalOfEntranceCodeSequenceTrial => "0008,2253",
12205             AnatomicApproachDirectionCodeSequenceTrial => "0008,2255",
12206             AnatomicPerspectiveDescriptionTrial => "0008,2256",
12207             AnatomicPerspectiveCodeSequenceTrial => "0008,2257",
12208             AnatomicLocationOfExaminingInstrumentDescriptionTrial => "0008,2258",
12209             AnatomicLocationOfExaminingInstrumentCodeSequenceTrial => "0008,2259",
12210             AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial => "0008,225a",
12211             OnAxisBackgroundAnatomicStructureCodeSequenceTrial => "0008,225c",
12212             AlternateRepresentationSequence => "0008,3001",
12213             IrradiationEventUID => "0008,3010",
12214             IdentifyingComments => "0008,4000",
12215             FrameType => "0008,9007",
12216             ReferencedImageEvidenceSequence => "0008,9092",
12217             ReferencedRawDataSequence => "0008,9121",
12218             CreatorVersionUID => "0008,9123",
12219             DerivationImageSequence => "0008,9124",
12220             SourceImageEvidenceSequence => "0008,9154",
12221             PixelPresentation => "0008,9205",
12222             VolumetricProperties => "0008,9206",
12223             VolumeBasedCalculationTechnique => "0008,9207",
12224             ComplexImageComponent => "0008,9208",
12225             AcquisitionContrast => "0008,9209",
12226             DerivationCodeSequence => "0008,9215",
12227             ReferencedPresentationStateSequence => "0008,9237",
12228             ReferencedOtherPlaneSequence => "0008,9410",
12229             FrameDisplaySequence => "0008,9458",
12230             RecommendedDisplayFrameRateInFloat => "0008,9459",
12231             SkipFrameRangeFlag => "0008,9460",
12232             PatientName => "0010,0010",
12233             PatientID => "0010,0020",
12234             IssuerOfPatientID => "0010,0021",
12235             TypeOfPatientID => "0010,0022",
12236             IssuerOfPatientIDQualifiersSequence => "0010,0024",
12237             PatientBirthDate => "0010,0030",
12238             PatientBirthTime => "0010,0032",
12239             PatientSex => "0010,0040",
12240             PatientInsurancePlanCodeSequence => "0010,0050",
12241             PatientPrimaryLanguageCodeSequence => "0010,0101",
12242             PatientPrimaryLanguageModifierCodeSequence => "0010,0102",
12243             OtherPatientIDs => "0010,1000",
12244             OtherPatientNames => "0010,1001",
12245             OtherPatientIDsSequence => "0010,1002",
12246             PatientBirthName => "0010,1005",
12247             PatientAge => "0010,1010",
12248             PatientSize => "0010,1020",
12249             PatientWeight => "0010,1030",
12250             PatientAddress => "0010,1040",
12251             InsurancePlanIdentification => "0010,1050",
12252             PatientMotherBirthName => "0010,1060",
12253             MilitaryRank => "0010,1080",
12254             BranchOfService => "0010,1081",
12255             MedicalRecordLocator => "0010,1090",
12256             MedicalAlerts => "0010,2000",
12257             Allergies => "0010,2110",
12258             CountryOfResidence => "0010,2150",
12259             RegionOfResidence => "0010,2152",
12260             PatientTelephoneNumbers => "0010,2154",
12261             EthnicGroup => "0010,2160",
12262             Occupation => "0010,2180",
12263             SmokingStatus => "0010,21a0",
12264             AdditionalPatientHistory => "0010,21b0",
12265             PregnancyStatus => "0010,21c0",
12266             LastMenstrualDate => "0010,21d0",
12267             PatientReligiousPreference => "0010,21f0",
12268             PatientSpeciesDescription => "0010,2201",
12269             PatientSpeciesCodeSequence => "0010,2202",
12270             PatientSexNeutered => "0010,2203",
12271             AnatomicalOrientationType => "0010,2210",
12272             PatientBreedDescription => "0010,2292",
12273             PatientBreedCodeSequence => "0010,2293",
12274             BreedRegistrationSequence => "0010,2294",
12275             BreedRegistrationNumber => "0010,2295",
12276             BreedRegistryCodeSequence => "0010,2296",
12277             ResponsiblePerson => "0010,2297",
12278             ResponsiblePersonRole => "0010,2298",
12279             ResponsibleOrganization => "0010,2299",
12280             PatientComments => "0010,4000",
12281             ExaminedBodyThickness => "0010,9431",
12282             ClinicalTrialSponsorName => "0012,0010",
12283             ClinicalTrialProtocolID => "0012,0020",
12284             ClinicalTrialProtocolName => "0012,0021",
12285             ClinicalTrialSiteID => "0012,0030",
12286             ClinicalTrialSiteName => "0012,0031",
12287             ClinicalTrialSubjectID => "0012,0040",
12288             ClinicalTrialSubjectReadingID => "0012,0042",
12289             ClinicalTrialTimePointID => "0012,0050",
12290             ClinicalTrialTimePointDescription => "0012,0051",
12291             ClinicalTrialCoordinatingCenterName => "0012,0060",
12292             PatientIdentityRemoved => "0012,0062",
12293             DeidentificationMethod => "0012,0063",
12294             DeidentificationMethodCodeSequence => "0012,0064",
12295             ClinicalTrialSeriesID => "0012,0071",
12296             ClinicalTrialSeriesDescription => "0012,0072",
12297             ClinicalTrialProtocolEthicsCommitteeName => "0012,0081",
12298             ClinicalTrialProtocolEthicsCommitteeApprovalNumber => "0012,0082",
12299             ConsentForClinicalTrialUseSequence => "0012,0083",
12300             DistributionType => "0012,0084",
12301             ConsentForDistributionFlag => "0012,0085",
12302             ContrastBolusAgent => "0018,0010",
12303             ContrastBolusAgentSequence => "0018,0012",
12304             ContrastBolusAdministrationRouteSequence => "0018,0014",
12305             BodyPartExamined => "0018,0015",
12306             ScanningSequence => "0018,0020",
12307             SequenceVariant => "0018,0021",
12308             ScanOptions => "0018,0022",
12309             MRAcquisitionType => "0018,0023",
12310             SequenceName => "0018,0024",
12311             AngioFlag => "0018,0025",
12312             InterventionDrugInformationSequence => "0018,0026",
12313             InterventionDrugStopTime => "0018,0027",
12314             InterventionDrugDose => "0018,0028",
12315             InterventionDrugCodeSequence => "0018,0029",
12316             AdditionalDrugSequence => "0018,002a",
12317             Radionuclide => "0018,0030",
12318             Radiopharmaceutical => "0018,0031",
12319             EnergyWindowCenterline => "0018,0032",
12320             EnergyWindowTotalWidth => "0018,0033",
12321             InterventionDrugName => "0018,0034",
12322             InterventionDrugStartTime => "0018,0035",
12323             InterventionSequence => "0018,0036",
12324             TherapyType => "0018,0037",
12325             InterventionStatus => "0018,0038",
12326             TherapyDescription => "0018,0039",
12327             InterventionDescription => "0018,003a",
12328             CineRate => "0018,0040",
12329             InitialCineRunState => "0018,0042",
12330             SliceThickness => "0018,0050",
12331             KVP => "0018,0060",
12332             CountsAccumulated => "0018,0070",
12333             AcquisitionTerminationCondition => "0018,0071",
12334             EffectiveDuration => "0018,0072",
12335             AcquisitionStartCondition => "0018,0073",
12336             AcquisitionStartConditionData => "0018,0074",
12337             AcquisitionTerminationConditionData => "0018,0075",
12338             RepetitionTime => "0018,0080",
12339             EchoTime => "0018,0081",
12340             InversionTime => "0018,0082",
12341             NumberOfAverages => "0018,0083",
12342             ImagingFrequency => "0018,0084",
12343             ImagedNucleus => "0018,0085",
12344             EchoNumbers => "0018,0086",
12345             MagneticFieldStrength => "0018,0087",
12346             SpacingBetweenSlices => "0018,0088",
12347             NumberOfPhaseEncodingSteps => "0018,0089",
12348             DataCollectionDiameter => "0018,0090",
12349             EchoTrainLength => "0018,0091",
12350             PercentSampling => "0018,0093",
12351             PercentPhaseFieldOfView => "0018,0094",
12352             PixelBandwidth => "0018,0095",
12353             DeviceSerialNumber => "0018,1000",
12354             DeviceUID => "0018,1002",
12355             DeviceID => "0018,1003",
12356             PlateID => "0018,1004",
12357             GeneratorID => "0018,1005",
12358             GridID => "0018,1006",
12359             CassetteID => "0018,1007",
12360             GantryID => "0018,1008",
12361             SecondaryCaptureDeviceID => "0018,1010",
12362             HardcopyCreationDeviceID => "0018,1011",
12363             DateOfSecondaryCapture => "0018,1012",
12364             TimeOfSecondaryCapture => "0018,1014",
12365             SecondaryCaptureDeviceManufacturer => "0018,1016",
12366             HardcopyDeviceManufacturer => "0018,1017",
12367             SecondaryCaptureDeviceManufacturerModelName => "0018,1018",
12368             SecondaryCaptureDeviceSoftwareVersions => "0018,1019",
12369             HardcopyDeviceSoftwareVersion => "0018,101a",
12370             HardcopyDeviceManufacturerModelName => "0018,101b",
12371             SoftwareVersions => "0018,1020",
12372             VideoImageFormatAcquired => "0018,1022",
12373             DigitalImageFormatAcquired => "0018,1023",
12374             ProtocolName => "0018,1030",
12375             ContrastBolusRoute => "0018,1040",
12376             ContrastBolusVolume => "0018,1041",
12377             ContrastBolusStartTime => "0018,1042",
12378             ContrastBolusStopTime => "0018,1043",
12379             ContrastBolusTotalDose => "0018,1044",
12380             SyringeCounts => "0018,1045",
12381             ContrastFlowRate => "0018,1046",
12382             ContrastFlowDuration => "0018,1047",
12383             ContrastBolusIngredient => "0018,1048",
12384             ContrastBolusIngredientConcentration => "0018,1049",
12385             SpatialResolution => "0018,1050",
12386             TriggerTime => "0018,1060",
12387             TriggerSourceOrType => "0018,1061",
12388             NominalInterval => "0018,1062",
12389             FrameTime => "0018,1063",
12390             CardiacFramingType => "0018,1064",
12391             FrameTimeVector => "0018,1065",
12392             FrameDelay => "0018,1066",
12393             ImageTriggerDelay => "0018,1067",
12394             MultiplexGroupTimeOffset => "0018,1068",
12395             TriggerTimeOffset => "0018,1069",
12396             SynchronizationTrigger => "0018,106a",
12397             SynchronizationChannel => "0018,106c",
12398             TriggerSamplePosition => "0018,106e",
12399             RadiopharmaceuticalRoute => "0018,1070",
12400             RadiopharmaceuticalVolume => "0018,1071",
12401             RadiopharmaceuticalStartTime => "0018,1072",
12402             RadiopharmaceuticalStopTime => "0018,1073",
12403             RadionuclideTotalDose => "0018,1074",
12404             RadionuclideHalfLife => "0018,1075",
12405             RadionuclidePositronFraction => "0018,1076",
12406             RadiopharmaceuticalSpecificActivity => "0018,1077",
12407             RadiopharmaceuticalStartDateTime => "0018,1078",
12408             RadiopharmaceuticalStopDateTime => "0018,1079",
12409             BeatRejectionFlag => "0018,1080",
12410             LowRRValue => "0018,1081",
12411             HighRRValue => "0018,1082",
12412             IntervalsAcquired => "0018,1083",
12413             IntervalsRejected => "0018,1084",
12414             PVCRejection => "0018,1085",
12415             SkipBeats => "0018,1086",
12416             HeartRate => "0018,1088",
12417             CardiacNumberOfImages => "0018,1090",
12418             TriggerWindow => "0018,1094",
12419             ReconstructionDiameter => "0018,1100",
12420             DistanceSourceToDetector => "0018,1110",
12421             DistanceSourceToPatient => "0018,1111",
12422             EstimatedRadiographicMagnificationFactor => "0018,1114",
12423             GantryDetectorTilt => "0018,1120",
12424             GantryDetectorSlew => "0018,1121",
12425             TableHeight => "0018,1130",
12426             TableTraverse => "0018,1131",
12427             TableMotion => "0018,1134",
12428             TableVerticalIncrement => "0018,1135",
12429             TableLateralIncrement => "0018,1136",
12430             TableLongitudinalIncrement => "0018,1137",
12431             TableAngle => "0018,1138",
12432             TableType => "0018,113a",
12433             RotationDirection => "0018,1140",
12434             AngularPosition => "0018,1141",
12435             RadialPosition => "0018,1142",
12436             ScanArc => "0018,1143",
12437             AngularStep => "0018,1144",
12438             CenterOfRotationOffset => "0018,1145",
12439             RotationOffset => "0018,1146",
12440             FieldOfViewShape => "0018,1147",
12441             FieldOfViewDimensions => "0018,1149",
12442             ExposureTime => "0018,1150",
12443             XRayTubeCurrent => "0018,1151",
12444             Exposure => "0018,1152",
12445             ExposureInuAs => "0018,1153",
12446             AveragePulseWidth => "0018,1154",
12447             RadiationSetting => "0018,1155",
12448             RectificationType => "0018,1156",
12449             RadiationMode => "0018,115a",
12450             ImageAndFluoroscopyAreaDoseProduct => "0018,115e",
12451             FilterType => "0018,1160",
12452             TypeOfFilters => "0018,1161",
12453             IntensifierSize => "0018,1162",
12454             ImagerPixelSpacing => "0018,1164",
12455             Grid => "0018,1166",
12456             GeneratorPower => "0018,1170",
12457             CollimatorGridName => "0018,1180",
12458             CollimatorType => "0018,1181",
12459             FocalDistance => "0018,1182",
12460             XFocusCenter => "0018,1183",
12461             YFocusCenter => "0018,1184",
12462             FocalSpots => "0018,1190",
12463             AnodeTargetMaterial => "0018,1191",
12464             BodyPartThickness => "0018,11a0",
12465             CompressionForce => "0018,11a2",
12466             DateOfLastCalibration => "0018,1200",
12467             TimeOfLastCalibration => "0018,1201",
12468             ConvolutionKernel => "0018,1210",
12469             UpperLowerPixelValues => "0018,1240",
12470             ActualFrameDuration => "0018,1242",
12471             CountRate => "0018,1243",
12472             PreferredPlaybackSequencing => "0018,1244",
12473             ReceiveCoilName => "0018,1250",
12474             TransmitCoilName => "0018,1251",
12475             PlateType => "0018,1260",
12476             PhosphorType => "0018,1261",
12477             ScanVelocity => "0018,1300",
12478             WholeBodyTechnique => "0018,1301",
12479             ScanLength => "0018,1302",
12480             AcquisitionMatrix => "0018,1310",
12481             InPlanePhaseEncodingDirection => "0018,1312",
12482             FlipAngle => "0018,1314",
12483             VariableFlipAngleFlag => "0018,1315",
12484             SAR => "0018,1316",
12485             dBdt => "0018,1318",
12486             AcquisitionDeviceProcessingDescription => "0018,1400",
12487             AcquisitionDeviceProcessingCode => "0018,1401",
12488             CassetteOrientation => "0018,1402",
12489             CassetteSize => "0018,1403",
12490             ExposuresOnPlate => "0018,1404",
12491             RelativeXRayExposure => "0018,1405",
12492             ColumnAngulation => "0018,1450",
12493             TomoLayerHeight => "0018,1460",
12494             TomoAngle => "0018,1470",
12495             TomoTime => "0018,1480",
12496             TomoType => "0018,1490",
12497             TomoClass => "0018,1491",
12498             NumberOfTomosynthesisSourceImages => "0018,1495",
12499             PositionerMotion => "0018,1500",
12500             PositionerType => "0018,1508",
12501             PositionerPrimaryAngle => "0018,1510",
12502             PositionerSecondaryAngle => "0018,1511",
12503             PositionerPrimaryAngleIncrement => "0018,1520",
12504             PositionerSecondaryAngleIncrement => "0018,1521",
12505             DetectorPrimaryAngle => "0018,1530",
12506             DetectorSecondaryAngle => "0018,1531",
12507             ShutterShape => "0018,1600",
12508             ShutterLeftVerticalEdge => "0018,1602",
12509             ShutterRightVerticalEdge => "0018,1604",
12510             ShutterUpperHorizontalEdge => "0018,1606",
12511             ShutterLowerHorizontalEdge => "0018,1608",
12512             CenterOfCircularShutter => "0018,1610",
12513             RadiusOfCircularShutter => "0018,1612",
12514             VerticesOfThePolygonalShutter => "0018,1620",
12515             ShutterPresentationValue => "0018,1622",
12516             ShutterOverlayGroup => "0018,1623",
12517             ShutterPresentationColorCIELabValue => "0018,1624",
12518             CollimatorShape => "0018,1700",
12519             CollimatorLeftVerticalEdge => "0018,1702",
12520             CollimatorRightVerticalEdge => "0018,1704",
12521             CollimatorUpperHorizontalEdge => "0018,1706",
12522             CollimatorLowerHorizontalEdge => "0018,1708",
12523             CenterOfCircularCollimator => "0018,1710",
12524             RadiusOfCircularCollimator => "0018,1712",
12525             VerticesOfThePolygonalCollimator => "0018,1720",
12526             AcquisitionTimeSynchronized => "0018,1800",
12527             TimeSource => "0018,1801",
12528             TimeDistributionProtocol => "0018,1802",
12529             NTPSourceAddress => "0018,1803",
12530             PageNumberVector => "0018,2001",
12531             FrameLabelVector => "0018,2002",
12532             FramePrimaryAngleVector => "0018,2003",
12533             FrameSecondaryAngleVector => "0018,2004",
12534             SliceLocationVector => "0018,2005",
12535             DisplayWindowLabelVector => "0018,2006",
12536             NominalScannedPixelSpacing => "0018,2010",
12537             DigitizingDeviceTransportDirection => "0018,2020",
12538             RotationOfScannedFilm => "0018,2030",
12539             IVUSAcquisition => "0018,3100",
12540             IVUSPullbackRate => "0018,3101",
12541             IVUSGatedRate => "0018,3102",
12542             IVUSPullbackStartFrameNumber => "0018,3103",
12543             IVUSPullbackStopFrameNumber => "0018,3104",
12544             LesionNumber => "0018,3105",
12545             AcquisitionComments => "0018,4000",
12546             OutputPower => "0018,5000",
12547             TransducerData => "0018,5010",
12548             FocusDepth => "0018,5012",
12549             ProcessingFunction => "0018,5020",
12550             PostprocessingFunction => "0018,5021",
12551             MechanicalIndex => "0018,5022",
12552             BoneThermalIndex => "0018,5024",
12553             CranialThermalIndex => "0018,5026",
12554             SoftTissueThermalIndex => "0018,5027",
12555             SoftTissueFocusThermalIndex => "0018,5028",
12556             SoftTissueSurfaceThermalIndex => "0018,5029",
12557             DynamicRange => "0018,5030",
12558             TotalGain => "0018,5040",
12559             DepthOfScanField => "0018,5050",
12560             PatientPosition => "0018,5100",
12561             ViewPosition => "0018,5101",
12562             ProjectionEponymousNameCodeSequence => "0018,5104",
12563             ImageTransformationMatrix => "0018,5210",
12564             ImageTranslationVector => "0018,5212",
12565             Sensitivity => "0018,6000",
12566             SequenceOfUltrasoundRegions => "0018,6011",
12567             RegionSpatialFormat => "0018,6012",
12568             RegionDataType => "0018,6014",
12569             RegionFlags => "0018,6016",
12570             RegionLocationMinX0 => "0018,6018",
12571             RegionLocationMinY0 => "0018,601a",
12572             RegionLocationMaxX1 => "0018,601c",
12573             RegionLocationMaxY1 => "0018,601e",
12574             ReferencePixelX0 => "0018,6020",
12575             ReferencePixelY0 => "0018,6022",
12576             PhysicalUnitsXDirection => "0018,6024",
12577             PhysicalUnitsYDirection => "0018,6026",
12578             ReferencePixelPhysicalValueX => "0018,6028",
12579             ReferencePixelPhysicalValueY => "0018,602a",
12580             PhysicalDeltaX => "0018,602c",
12581             PhysicalDeltaY => "0018,602e",
12582             TransducerFrequency => "0018,6030",
12583             TransducerType => "0018,6031",
12584             PulseRepetitionFrequency => "0018,6032",
12585             DopplerCorrectionAngle => "0018,6034",
12586             SteeringAngle => "0018,6036",
12587             DopplerSampleVolumeXPositionRetired => "0018,6038",
12588             DopplerSampleVolumeXPosition => "0018,6039",
12589             DopplerSampleVolumeYPositionRetired => "0018,603a",
12590             DopplerSampleVolumeYPosition => "0018,603b",
12591             TMLinePositionX0Retired => "0018,603c",
12592             TMLinePositionX0 => "0018,603d",
12593             TMLinePositionY0Retired => "0018,603e",
12594             TMLinePositionY0 => "0018,603f",
12595             TMLinePositionX1Retired => "0018,6040",
12596             TMLinePositionX1 => "0018,6041",
12597             TMLinePositionY1Retired => "0018,6042",
12598             TMLinePositionY1 => "0018,6043",
12599             PixelComponentOrganization => "0018,6044",
12600             PixelComponentMask => "0018,6046",
12601             PixelComponentRangeStart => "0018,6048",
12602             PixelComponentRangeStop => "0018,604a",
12603             PixelComponentPhysicalUnits => "0018,604c",
12604             PixelComponentDataType => "0018,604e",
12605             NumberOfTableBreakPoints => "0018,6050",
12606             TableOfXBreakPoints => "0018,6052",
12607             TableOfYBreakPoints => "0018,6054",
12608             NumberOfTableEntries => "0018,6056",
12609             TableOfPixelValues => "0018,6058",
12610             TableOfParameterValues => "0018,605a",
12611             RWaveTimeVector => "0018,6060",
12612             DetectorConditionsNominalFlag => "0018,7000",
12613             DetectorTemperature => "0018,7001",
12614             DetectorType => "0018,7004",
12615             DetectorConfiguration => "0018,7005",
12616             DetectorDescription => "0018,7006",
12617             DetectorMode => "0018,7008",
12618             DetectorID => "0018,700a",
12619             DateOfLastDetectorCalibration => "0018,700c",
12620             TimeOfLastDetectorCalibration => "0018,700e",
12621             ExposuresOnDetectorSinceLastCalibration => "0018,7010",
12622             ExposuresOnDetectorSinceManufactured => "0018,7011",
12623             DetectorTimeSinceLastExposure => "0018,7012",
12624             DetectorActiveTime => "0018,7014",
12625             DetectorActivationOffsetFromExposure => "0018,7016",
12626             DetectorBinning => "0018,701a",
12627             DetectorElementPhysicalSize => "0018,7020",
12628             DetectorElementSpacing => "0018,7022",
12629             DetectorActiveShape => "0018,7024",
12630             DetectorActiveDimensions => "0018,7026",
12631             DetectorActiveOrigin => "0018,7028",
12632             DetectorManufacturerName => "0018,702a",
12633             DetectorManufacturerModelName => "0018,702b",
12634             FieldOfViewOrigin => "0018,7030",
12635             FieldOfViewRotation => "0018,7032",
12636             FieldOfViewHorizontalFlip => "0018,7034",
12637             GridAbsorbingMaterial => "0018,7040",
12638             GridSpacingMaterial => "0018,7041",
12639             GridThickness => "0018,7042",
12640             GridPitch => "0018,7044",
12641             GridAspectRatio => "0018,7046",
12642             GridPeriod => "0018,7048",
12643             GridFocalDistance => "0018,704c",
12644             FilterMaterial => "0018,7050",
12645             FilterThicknessMinimum => "0018,7052",
12646             FilterThicknessMaximum => "0018,7054",
12647             FilterBeamPathLengthMinimum => "0018,7056",
12648             FilterBeamPathLengthMaximum => "0018,7058",
12649             ExposureControlMode => "0018,7060",
12650             ExposureControlModeDescription => "0018,7062",
12651             ExposureStatus => "0018,7064",
12652             PhototimerSetting => "0018,7065",
12653             ExposureTimeInuS => "0018,8150",
12654             XRayTubeCurrentInuA => "0018,8151",
12655             ContentQualification => "0018,9004",
12656             PulseSequenceName => "0018,9005",
12657             MRImagingModifierSequence => "0018,9006",
12658             EchoPulseSequence => "0018,9008",
12659             InversionRecovery => "0018,9009",
12660             FlowCompensation => "0018,9010",
12661             MultipleSpinEcho => "0018,9011",
12662             MultiPlanarExcitation => "0018,9012",
12663             PhaseContrast => "0018,9014",
12664             TimeOfFlightContrast => "0018,9015",
12665             Spoiling => "0018,9016",
12666             SteadyStatePulseSequence => "0018,9017",
12667             EchoPlanarPulseSequence => "0018,9018",
12668             TagAngleFirstAxis => "0018,9019",
12669             MagnetizationTransfer => "0018,9020",
12670             T2Preparation => "0018,9021",
12671             BloodSignalNulling => "0018,9022",
12672             SaturationRecovery => "0018,9024",
12673             SpectrallySelectedSuppression => "0018,9025",
12674             SpectrallySelectedExcitation => "0018,9026",
12675             SpatialPresaturation => "0018,9027",
12676             Tagging => "0018,9028",
12677             OversamplingPhase => "0018,9029",
12678             TagSpacingFirstDimension => "0018,9030",
12679             GeometryOfKSpaceTraversal => "0018,9032",
12680             SegmentedKSpaceTraversal => "0018,9033",
12681             RectilinearPhaseEncodeReordering => "0018,9034",
12682             TagThickness => "0018,9035",
12683             PartialFourierDirection => "0018,9036",
12684             CardiacSynchronizationTechnique => "0018,9037",
12685             ReceiveCoilManufacturerName => "0018,9041",
12686             MRReceiveCoilSequence => "0018,9042",
12687             ReceiveCoilType => "0018,9043",
12688             QuadratureReceiveCoil => "0018,9044",
12689             MultiCoilDefinitionSequence => "0018,9045",
12690             MultiCoilConfiguration => "0018,9046",
12691             MultiCoilElementName => "0018,9047",
12692             MultiCoilElementUsed => "0018,9048",
12693             MRTransmitCoilSequence => "0018,9049",
12694             TransmitCoilManufacturerName => "0018,9050",
12695             TransmitCoilType => "0018,9051",
12696             SpectralWidth => "0018,9052",
12697             ChemicalShiftReference => "0018,9053",
12698             VolumeLocalizationTechnique => "0018,9054",
12699             MRAcquisitionFrequencyEncodingSteps => "0018,9058",
12700             Decoupling => "0018,9059",
12701             DecoupledNucleus => "0018,9060",
12702             DecouplingFrequency => "0018,9061",
12703             DecouplingMethod => "0018,9062",
12704             DecouplingChemicalShiftReference => "0018,9063",
12705             KSpaceFiltering => "0018,9064",
12706             TimeDomainFiltering => "0018,9065",
12707             NumberOfZeroFills => "0018,9066",
12708             BaselineCorrection => "0018,9067",
12709             ParallelReductionFactorInPlane => "0018,9069",
12710             CardiacRRIntervalSpecified => "0018,9070",
12711             AcquisitionDuration => "0018,9073",
12712             FrameAcquisitionDateTime => "0018,9074",
12713             DiffusionDirectionality => "0018,9075",
12714             DiffusionGradientDirectionSequence => "0018,9076",
12715             ParallelAcquisition => "0018,9077",
12716             ParallelAcquisitionTechnique => "0018,9078",
12717             InversionTimes => "0018,9079",
12718             MetaboliteMapDescription => "0018,9080",
12719             PartialFourier => "0018,9081",
12720             EffectiveEchoTime => "0018,9082",
12721             MetaboliteMapCodeSequence => "0018,9083",
12722             ChemicalShiftSequence => "0018,9084",
12723             CardiacSignalSource => "0018,9085",
12724             DiffusionBValue => "0018,9087",
12725             DiffusionGradientOrientation => "0018,9089",
12726             VelocityEncodingDirection => "0018,9090",
12727             VelocityEncodingMinimumValue => "0018,9091",
12728             NumberOfKSpaceTrajectories => "0018,9093",
12729             CoverageOfKSpace => "0018,9094",
12730             SpectroscopyAcquisitionPhaseRows => "0018,9095",
12731             ParallelReductionFactorInPlaneRetired => "0018,9096",
12732             TransmitterFrequency => "0018,9098",
12733             ResonantNucleus => "0018,9100",
12734             FrequencyCorrection => "0018,9101",
12735             MRSpectroscopyFOVGeometrySequence => "0018,9103",
12736             SlabThickness => "0018,9104",
12737             SlabOrientation => "0018,9105",
12738             MidSlabPosition => "0018,9106",
12739             MRSpatialSaturationSequence => "0018,9107",
12740             MRTimingAndRelatedParametersSequence => "0018,9112",
12741             MREchoSequence => "0018,9114",
12742             MRModifierSequence => "0018,9115",
12743             MRDiffusionSequence => "0018,9117",
12744             CardiacSynchronizationSequence => "0018,9118",
12745             MRAveragesSequence => "0018,9119",
12746             MRFOVGeometrySequence => "0018,9125",
12747             VolumeLocalizationSequence => "0018,9126",
12748             SpectroscopyAcquisitionDataColumns => "0018,9127",
12749             DiffusionAnisotropyType => "0018,9147",
12750             FrameReferenceDateTime => "0018,9151",
12751             MRMetaboliteMapSequence => "0018,9152",
12752             ParallelReductionFactorOutOfPlane => "0018,9155",
12753             SpectroscopyAcquisitionOutOfPlanePhaseSteps => "0018,9159",
12754             BulkMotionStatus => "0018,9166",
12755             ParallelReductionFactorSecondInPlane => "0018,9168",
12756             CardiacBeatRejectionTechnique => "0018,9169",
12757             RespiratoryMotionCompensationTechnique => "0018,9170",
12758             RespiratorySignalSource => "0018,9171",
12759             BulkMotionCompensationTechnique => "0018,9172",
12760             BulkMotionSignalSource => "0018,9173",
12761             ApplicableSafetyStandardAgency => "0018,9174",
12762             ApplicableSafetyStandardDescription => "0018,9175",
12763             OperatingModeSequence => "0018,9176",
12764             OperatingModeType => "0018,9177",
12765             OperatingMode => "0018,9178",
12766             SpecificAbsorptionRateDefinition => "0018,9179",
12767             GradientOutputType => "0018,9180",
12768             SpecificAbsorptionRateValue => "0018,9181",
12769             GradientOutput => "0018,9182",
12770             FlowCompensationDirection => "0018,9183",
12771             TaggingDelay => "0018,9184",
12772             RespiratoryMotionCompensationTechniqueDescription => "0018,9185",
12773             RespiratorySignalSourceID => "0018,9186",
12774             ChemicalShiftMinimumIntegrationLimitInHz => "0018,9195",
12775             ChemicalShiftMaximumIntegrationLimitInHz => "0018,9196",
12776             MRVelocityEncodingSequence => "0018,9197",
12777             FirstOrderPhaseCorrection => "0018,9198",
12778             WaterReferencedPhaseCorrection => "0018,9199",
12779             MRSpectroscopyAcquisitionType => "0018,9200",
12780             RespiratoryCyclePosition => "0018,9214",
12781             VelocityEncodingMaximumValue => "0018,9217",
12782             TagSpacingSecondDimension => "0018,9218",
12783             TagAngleSecondAxis => "0018,9219",
12784             FrameAcquisitionDuration => "0018,9220",
12785             MRImageFrameTypeSequence => "0018,9226",
12786             MRSpectroscopyFrameTypeSequence => "0018,9227",
12787             MRAcquisitionPhaseEncodingStepsInPlane => "0018,9231",
12788             MRAcquisitionPhaseEncodingStepsOutOfPlane => "0018,9232",
12789             SpectroscopyAcquisitionPhaseColumns => "0018,9234",
12790             CardiacCyclePosition => "0018,9236",
12791             SpecificAbsorptionRateSequence => "0018,9239",
12792             RFEchoTrainLength => "0018,9240",
12793             GradientEchoTrainLength => "0018,9241",
12794             ChemicalShiftMinimumIntegrationLimitInppm => "0018,9295",
12795             ChemicalShiftMaximumIntegrationLimitInppm => "0018,9296",
12796             CTAcquisitionTypeSequence => "0018,9301",
12797             AcquisitionType => "0018,9302",
12798             TubeAngle => "0018,9303",
12799             CTAcquisitionDetailsSequence => "0018,9304",
12800             RevolutionTime => "0018,9305",
12801             SingleCollimationWidth => "0018,9306",
12802             TotalCollimationWidth => "0018,9307",
12803             CTTableDynamicsSequence => "0018,9308",
12804             TableSpeed => "0018,9309",
12805             TableFeedPerRotation => "0018,9310",
12806             SpiralPitchFactor => "0018,9311",
12807             CTGeometrySequence => "0018,9312",
12808             DataCollectionCenterPatient => "0018,9313",
12809             CTReconstructionSequence => "0018,9314",
12810             ReconstructionAlgorithm => "0018,9315",
12811             ConvolutionKernelGroup => "0018,9316",
12812             ReconstructionFieldOfView => "0018,9317",
12813             ReconstructionTargetCenterPatient => "0018,9318",
12814             ReconstructionAngle => "0018,9319",
12815             ImageFilter => "0018,9320",
12816             CTExposureSequence => "0018,9321",
12817             ReconstructionPixelSpacing => "0018,9322",
12818             ExposureModulationType => "0018,9323",
12819             EstimatedDoseSaving => "0018,9324",
12820             CTXRayDetailsSequence => "0018,9325",
12821             CTPositionSequence => "0018,9326",
12822             TablePosition => "0018,9327",
12823             ExposureTimeInms => "0018,9328",
12824             CTImageFrameTypeSequence => "0018,9329",
12825             XRayTubeCurrentInmA => "0018,9330",
12826             ExposureInmAs => "0018,9332",
12827             ConstantVolumeFlag => "0018,9333",
12828             FluoroscopyFlag => "0018,9334",
12829             DistanceSourceToDataCollectionCenter => "0018,9335",
12830             ContrastBolusAgentNumber => "0018,9337",
12831             ContrastBolusIngredientCodeSequence => "0018,9338",
12832             ContrastAdministrationProfileSequence => "0018,9340",
12833             ContrastBolusUsageSequence => "0018,9341",
12834             ContrastBolusAgentAdministered => "0018,9342",
12835             ContrastBolusAgentDetected => "0018,9343",
12836             ContrastBolusAgentPhase => "0018,9344",
12837             CTDIvol => "0018,9345",
12838             CTDIPhantomTypeCodeSequence => "0018,9346",
12839             CalciumScoringMassFactorPatient => "0018,9351",
12840             CalciumScoringMassFactorDevice => "0018,9352",
12841             EnergyWeightingFactor => "0018,9353",
12842             CTAdditionalXRaySourceSequence => "0018,9360",
12843             ProjectionPixelCalibrationSequence => "0018,9401",
12844             DistanceSourceToIsocenter => "0018,9402",
12845             DistanceObjectToTableTop => "0018,9403",
12846             ObjectPixelSpacingInCenterOfBeam => "0018,9404",
12847             PositionerPositionSequence => "0018,9405",
12848             TablePositionSequence => "0018,9406",
12849             CollimatorShapeSequence => "0018,9407",
12850             XAXRFFrameCharacteristicsSequence => "0018,9412",
12851             FrameAcquisitionSequence => "0018,9417",
12852             XRayReceptorType => "0018,9420",
12853             AcquisitionProtocolName => "0018,9423",
12854             AcquisitionProtocolDescription => "0018,9424",
12855             ContrastBolusIngredientOpaque => "0018,9425",
12856             DistanceReceptorPlaneToDetectorHousing => "0018,9426",
12857             IntensifierActiveShape => "0018,9427",
12858             IntensifierActiveDimensions => "0018,9428",
12859             PhysicalDetectorSize => "0018,9429",
12860             PositionOfIsocenterProjection => "0018,9430",
12861             FieldOfViewSequence => "0018,9432",
12862             FieldOfViewDescription => "0018,9433",
12863             ExposureControlSensingRegionsSequence => "0018,9434",
12864             ExposureControlSensingRegionShape => "0018,9435",
12865             ExposureControlSensingRegionLeftVerticalEdge => "0018,9436",
12866             ExposureControlSensingRegionRightVerticalEdge => "0018,9437",
12867             ExposureControlSensingRegionUpperHorizontalEdge => "0018,9438",
12868             ExposureControlSensingRegionLowerHorizontalEdge => "0018,9439",
12869             CenterOfCircularExposureControlSensingRegion => "0018,9440",
12870             RadiusOfCircularExposureControlSensingRegion => "0018,9441",
12871             VerticesOfThePolygonalExposureControlSensingRegion => "0018,9442",
12872             ColumnAngulationPatient => "0018,9447",
12873             BeamAngle => "0018,9449",
12874             FrameDetectorParametersSequence => "0018,9451",
12875             CalculatedAnatomyThickness => "0018,9452",
12876             CalibrationSequence => "0018,9455",
12877             ObjectThicknessSequence => "0018,9456",
12878             PlaneIdentification => "0018,9457",
12879             FieldOfViewDimensionsInFloat => "0018,9461",
12880             IsocenterReferenceSystemSequence => "0018,9462",
12881             PositionerIsocenterPrimaryAngle => "0018,9463",
12882             PositionerIsocenterSecondaryAngle => "0018,9464",
12883             PositionerIsocenterDetectorRotationAngle => "0018,9465",
12884             TableXPositionToIsocenter => "0018,9466",
12885             TableYPositionToIsocenter => "0018,9467",
12886             TableZPositionToIsocenter => "0018,9468",
12887             TableHorizontalRotationAngle => "0018,9469",
12888             TableHeadTiltAngle => "0018,9470",
12889             TableCradleTiltAngle => "0018,9471",
12890             FrameDisplayShutterSequence => "0018,9472",
12891             AcquiredImageAreaDoseProduct => "0018,9473",
12892             CArmPositionerTabletopRelationship => "0018,9474",
12893             XRayGeometrySequence => "0018,9476",
12894             IrradiationEventIdentificationSequence => "0018,9477",
12895             XRay3DFrameTypeSequence => "0018,9504",
12896             ContributingSourcesSequence => "0018,9506",
12897             XRay3DAcquisitionSequence => "0018,9507",
12898             PrimaryPositionerScanArc => "0018,9508",
12899             SecondaryPositionerScanArc => "0018,9509",
12900             PrimaryPositionerScanStartAngle => "0018,9510",
12901             SecondaryPositionerScanStartAngle => "0018,9511",
12902             PrimaryPositionerIncrement => "0018,9514",
12903             SecondaryPositionerIncrement => "0018,9515",
12904             StartAcquisitionDateTime => "0018,9516",
12905             EndAcquisitionDateTime => "0018,9517",
12906             ApplicationName => "0018,9524",
12907             ApplicationVersion => "0018,9525",
12908             ApplicationManufacturer => "0018,9526",
12909             AlgorithmType => "0018,9527",
12910             AlgorithmDescription => "0018,9528",
12911             XRay3DReconstructionSequence => "0018,9530",
12912             ReconstructionDescription => "0018,9531",
12913             PerProjectionAcquisitionSequence => "0018,9538",
12914             DiffusionBMatrixSequence => "0018,9601",
12915             DiffusionBValueXX => "0018,9602",
12916             DiffusionBValueXY => "0018,9603",
12917             DiffusionBValueXZ => "0018,9604",
12918             DiffusionBValueYY => "0018,9605",
12919             DiffusionBValueYZ => "0018,9606",
12920             DiffusionBValueZZ => "0018,9607",
12921             DecayCorrectionDateTime => "0018,9701",
12922             StartDensityThreshold => "0018,9715",
12923             StartRelativeDensityDifferenceThreshold => "0018,9716",
12924             StartCardiacTriggerCountThreshold => "0018,9717",
12925             StartRespiratoryTriggerCountThreshold => "0018,9718",
12926             TerminationCountsThreshold => "0018,9719",
12927             TerminationDensityThreshold => "0018,9720",
12928             TerminationRelativeDensityThreshold => "0018,9721",
12929             TerminationTimeThreshold => "0018,9722",
12930             TerminationCardiacTriggerCountThreshold => "0018,9723",
12931             TerminationRespiratoryTriggerCountThreshold => "0018,9724",
12932             DetectorGeometry => "0018,9725",
12933             TransverseDetectorSeparation => "0018,9726",
12934             AxialDetectorDimension => "0018,9727",
12935             RadiopharmaceuticalAgentNumber => "0018,9729",
12936             PETFrameAcquisitionSequence => "0018,9732",
12937             PETDetectorMotionDetailsSequence => "0018,9733",
12938             PETTableDynamicsSequence => "0018,9734",
12939             PETPositionSequence => "0018,9735",
12940             PETFrameCorrectionFactorsSequence => "0018,9736",
12941             RadiopharmaceuticalUsageSequence => "0018,9737",
12942             AttenuationCorrectionSource => "0018,9738",
12943             NumberOfIterations => "0018,9739",
12944             NumberOfSubsets => "0018,9740",
12945             PETReconstructionSequence => "0018,9749",
12946             PETFrameTypeSequence => "0018,9751",
12947             TimeOfFlightInformationUsed => "0018,9755",
12948             ReconstructionType => "0018,9756",
12949             DecayCorrected => "0018,9758",
12950             AttenuationCorrected => "0018,9759",
12951             ScatterCorrected => "0018,9760",
12952             DeadTimeCorrected => "0018,9761",
12953             GantryMotionCorrected => "0018,9762",
12954             PatientMotionCorrected => "0018,9763",
12955             CountLossNormalizationCorrected => "0018,9764",
12956             RandomsCorrected => "0018,9765",
12957             NonUniformRadialSamplingCorrected => "0018,9766",
12958             SensitivityCalibrated => "0018,9767",
12959             DetectorNormalizationCorrection => "0018,9768",
12960             IterativeReconstructionMethod => "0018,9769",
12961             AttenuationCorrectionTemporalRelationship => "0018,9770",
12962             PatientPhysiologicalStateSequence => "0018,9771",
12963             PatientPhysiologicalStateCodeSequence => "0018,9772",
12964             DepthsOfFocus => "0018,9801",
12965             ExcludedIntervalsSequence => "0018,9803",
12966             ExclusionStartDatetime => "0018,9804",
12967             ExclusionDuration => "0018,9805",
12968             USImageDescriptionSequence => "0018,9806",
12969             ImageDataTypeSequence => "0018,9807",
12970             DataType => "0018,9808",
12971             TransducerScanPatternCodeSequence => "0018,9809",
12972             AliasedDataType => "0018,980b",
12973             PositionMeasuringDeviceUsed => "0018,980c",
12974             TransducerGeometryCodeSequence => "0018,980d",
12975             TransducerBeamSteeringCodeSequence => "0018,980e",
12976             TransducerApplicationCodeSequence => "0018,980f",
12977             ContributingEquipmentSequence => "0018,a001",
12978             ContributionDateTime => "0018,a002",
12979             ContributionDescription => "0018,a003",
12980             StudyInstanceUID => "0020,000d",
12981             SeriesInstanceUID => "0020,000e",
12982             StudyID => "0020,0010",
12983             SeriesNumber => "0020,0011",
12984             AcquisitionNumber => "0020,0012",
12985             InstanceNumber => "0020,0013",
12986             IsotopeNumber => "0020,0014",
12987             PhaseNumber => "0020,0015",
12988             IntervalNumber => "0020,0016",
12989             TimeSlotNumber => "0020,0017",
12990             AngleNumber => "0020,0018",
12991             ItemNumber => "0020,0019",
12992             PatientOrientation => "0020,0020",
12993             OverlayNumber => "0020,0022",
12994             CurveNumber => "0020,0024",
12995             LUTNumber => "0020,0026",
12996             ImagePosition => "0020,0030",
12997             ImagePositionPatient => "0020,0032",
12998             ImageOrientation => "0020,0035",
12999             ImageOrientationPatient => "0020,0037",
13000             Location => "0020,0050",
13001             FrameOfReferenceUID => "0020,0052",
13002             Laterality => "0020,0060",
13003             ImageLaterality => "0020,0062",
13004             ImageGeometryType => "0020,0070",
13005             MaskingImage => "0020,0080",
13006             TemporalPositionIdentifier => "0020,0100",
13007             NumberOfTemporalPositions => "0020,0105",
13008             TemporalResolution => "0020,0110",
13009             SynchronizationFrameOfReferenceUID => "0020,0200",
13010             SOPInstanceUIDOfConcatenationSource => "0020,0242",
13011             SeriesInStudy => "0020,1000",
13012             AcquisitionsInSeries => "0020,1001",
13013             ImagesInAcquisition => "0020,1002",
13014             ImagesInSeries => "0020,1003",
13015             AcquisitionsInStudy => "0020,1004",
13016             ImagesInStudy => "0020,1005",
13017             Reference => "0020,1020",
13018             PositionReferenceIndicator => "0020,1040",
13019             SliceLocation => "0020,1041",
13020             OtherStudyNumbers => "0020,1070",
13021             NumberOfPatientRelatedStudies => "0020,1200",
13022             NumberOfPatientRelatedSeries => "0020,1202",
13023             NumberOfPatientRelatedInstances => "0020,1204",
13024             NumberOfStudyRelatedSeries => "0020,1206",
13025             NumberOfStudyRelatedInstances => "0020,1208",
13026             NumberOfSeriesRelatedInstances => "0020,1209",
13027             SourceImageIDs => "0020,31xx",
13028             ModifyingDeviceID => "0020,3401",
13029             ModifiedImageID => "0020,3402",
13030             ModifiedImageDate => "0020,3403",
13031             ModifyingDeviceManufacturer => "0020,3404",
13032             ModifiedImageTime => "0020,3405",
13033             ModifiedImageDescription => "0020,3406",
13034             ImageComments => "0020,4000",
13035             OriginalImageIdentification => "0020,5000",
13036             OriginalImageIdentificationNomenclature => "0020,5002",
13037             StackID => "0020,9056",
13038             InStackPositionNumber => "0020,9057",
13039             FrameAnatomySequence => "0020,9071",
13040             FrameLaterality => "0020,9072",
13041             FrameContentSequence => "0020,9111",
13042             PlanePositionSequence => "0020,9113",
13043             PlaneOrientationSequence => "0020,9116",
13044             TemporalPositionIndex => "0020,9128",
13045             NominalCardiacTriggerDelayTime => "0020,9153",
13046             FrameAcquisitionNumber => "0020,9156",
13047             DimensionIndexValues => "0020,9157",
13048             FrameComments => "0020,9158",
13049             ConcatenationUID => "0020,9161",
13050             InConcatenationNumber => "0020,9162",
13051             InConcatenationTotalNumber => "0020,9163",
13052             DimensionOrganizationUID => "0020,9164",
13053             DimensionIndexPointer => "0020,9165",
13054             FunctionalGroupPointer => "0020,9167",
13055             DimensionIndexPrivateCreator => "0020,9213",
13056             DimensionOrganizationSequence => "0020,9221",
13057             DimensionIndexSequence => "0020,9222",
13058             ConcatenationFrameOffsetNumber => "0020,9228",
13059             FunctionalGroupPrivateCreator => "0020,9238",
13060             NominalPercentageOfCardiacPhase => "0020,9241",
13061             NominalPercentageOfRespiratoryPhase => "0020,9245",
13062             StartingRespiratoryAmplitude => "0020,9246",
13063             StartingRespiratoryPhase => "0020,9247",
13064             EndingRespiratoryAmplitude => "0020,9248",
13065             EndingRespiratoryPhase => "0020,9249",
13066             RespiratoryTriggerType => "0020,9250",
13067             RRIntervalTimeNominal => "0020,9251",
13068             ActualCardiacTriggerDelayTime => "0020,9252",
13069             RespiratorySynchronizationSequence => "0020,9253",
13070             RespiratoryIntervalTime => "0020,9254",
13071             NominalRespiratoryTriggerDelayTime => "0020,9255",
13072             RespiratoryTriggerDelayThreshold => "0020,9256",
13073             ActualRespiratoryTriggerDelayTime => "0020,9257",
13074             ImagePositionVolume => "0020,9301",
13075             ImageOrientationVolume => "0020,9302",
13076             UltrasoundAcquisitionGeometry => "0020,9307",
13077             ApexPosition => "0020,9308",
13078             VolumeToTransducerMappingMatrix => "0020,9309",
13079             VolumeToTableMappingMatrix => "0020,930a",
13080             PatientFrameOfReferenceSource => "0020,930c",
13081             TemporalPositionTimeOffset => "0020,930d",
13082             PlanePositionVolumeSequence => "0020,930e",
13083             PlaneOrientationVolumeSequence => "0020,930f",
13084             TemporalPositionSequence => "0020,9310",
13085             DimensionOrganizationType => "0020,9311",
13086             VolumeFrameOfReferenceUID => "0020,9312",
13087             TableFrameOfReferenceUID => "0020,9313",
13088             DimensionDescriptionLabel => "0020,9421",
13089             PatientOrientationInFrameSequence => "0020,9450",
13090             FrameLabel => "0020,9453",
13091             AcquisitionIndex => "0020,9518",
13092             ContributingSOPInstancesReferenceSequence => "0020,9529",
13093             ReconstructionIndex => "0020,9536",
13094             LightPathFilterPassThroughWavelength => "0022,0001",
13095             LightPathFilterPassBand => "0022,0002",
13096             ImagePathFilterPassThroughWavelength => "0022,0003",
13097             ImagePathFilterPassBand => "0022,0004",
13098             PatientEyeMovementCommanded => "0022,0005",
13099             PatientEyeMovementCommandCodeSequence => "0022,0006",
13100             SphericalLensPower => "0022,0007",
13101             CylinderLensPower => "0022,0008",
13102             CylinderAxis => "0022,0009",
13103             EmmetropicMagnification => "0022,000a",
13104             IntraOcularPressure => "0022,000b",
13105             HorizontalFieldOfView => "0022,000c",
13106             PupilDilated => "0022,000d",
13107             DegreeOfDilation => "0022,000e",
13108             StereoBaselineAngle => "0022,0010",
13109             StereoBaselineDisplacement => "0022,0011",
13110             StereoHorizontalPixelOffset => "0022,0012",
13111             StereoVerticalPixelOffset => "0022,0013",
13112             StereoRotation => "0022,0014",
13113             AcquisitionDeviceTypeCodeSequence => "0022,0015",
13114             IlluminationTypeCodeSequence => "0022,0016",
13115             LightPathFilterTypeStackCodeSequence => "0022,0017",
13116             ImagePathFilterTypeStackCodeSequence => "0022,0018",
13117             LensesCodeSequence => "0022,0019",
13118             ChannelDescriptionCodeSequence => "0022,001a",
13119             RefractiveStateSequence => "0022,001b",
13120             MydriaticAgentCodeSequence => "0022,001c",
13121             RelativeImagePositionCodeSequence => "0022,001d",
13122             StereoPairsSequence => "0022,0020",
13123             LeftImageSequence => "0022,0021",
13124             RightImageSequence => "0022,0022",
13125             AxialLengthOfTheEye => "0022,0030",
13126             OphthalmicFrameLocationSequence => "0022,0031",
13127             ReferenceCoordinates => "0022,0032",
13128             DepthSpatialResolution => "0022,0035",
13129             MaximumDepthDistortion => "0022,0036",
13130             AlongScanSpatialResolution => "0022,0037",
13131             MaximumAlongScanDistortion => "0022,0038",
13132             OphthalmicImageOrientation => "0022,0039",
13133             DepthOfTransverseImage => "0022,0041",
13134             MydriaticAgentConcentrationUnitsSequence => "0022,0042",
13135             AcrossScanSpatialResolution => "0022,0048",
13136             MaximumAcrossScanDistortion => "0022,0049",
13137             MydriaticAgentConcentration => "0022,004e",
13138             IlluminationWaveLength => "0022,0055",
13139             IlluminationPower => "0022,0056",
13140             IlluminationBandwidth => "0022,0057",
13141             MydriaticAgentSequence => "0022,0058",
13142             SamplesPerPixel => "0028,0002",
13143             SamplesPerPixelUsed => "0028,0003",
13144             PhotometricInterpretation => "0028,0004",
13145             ImageDimensions => "0028,0005",
13146             PlanarConfiguration => "0028,0006",
13147             NumberOfFrames => "0028,0008",
13148             FrameIncrementPointer => "0028,0009",
13149             FrameDimensionPointer => "0028,000a",
13150             Rows => "0028,0010",
13151             Columns => "0028,0011",
13152             Planes => "0028,0012",
13153             UltrasoundColorDataPresent => "0028,0014",
13154             PixelSpacing => "0028,0030",
13155             ZoomFactor => "0028,0031",
13156             ZoomCenter => "0028,0032",
13157             PixelAspectRatio => "0028,0034",
13158             ImageFormat => "0028,0040",
13159             ManipulatedImage => "0028,0050",
13160             CorrectedImage => "0028,0051",
13161             CompressionRecognitionCode => "0028,005f",
13162             CompressionCode => "0028,0060",
13163             CompressionOriginator => "0028,0061",
13164             CompressionLabel => "0028,0062",
13165             CompressionDescription => "0028,0063",
13166             CompressionSequence => "0028,0065",
13167             CompressionStepPointers => "0028,0066",
13168             RepeatInterval => "0028,0068",
13169             BitsGrouped => "0028,0069",
13170             PerimeterTable => "0028,0070",
13171             PerimeterValue => "0028,0071",
13172             PredictorRows => "0028,0080",
13173             PredictorColumns => "0028,0081",
13174             PredictorConstants => "0028,0082",
13175             BlockedPixels => "0028,0090",
13176             BlockRows => "0028,0091",
13177             BlockColumns => "0028,0092",
13178             RowOverlap => "0028,0093",
13179             ColumnOverlap => "0028,0094",
13180             BitsAllocated => "0028,0100",
13181             BitsStored => "0028,0101",
13182             HighBit => "0028,0102",
13183             PixelRepresentation => "0028,0103",
13184             SmallestValidPixelValue => "0028,0104",
13185             LargestValidPixelValue => "0028,0105",
13186             SmallestImagePixelValue => "0028,0106",
13187             LargestImagePixelValue => "0028,0107",
13188             SmallestPixelValueInSeries => "0028,0108",
13189             LargestPixelValueInSeries => "0028,0109",
13190             SmallestImagePixelValueInPlane => "0028,0110",
13191             LargestImagePixelValueInPlane => "0028,0111",
13192             PixelPaddingValue => "0028,0120",
13193             PixelPaddingRangeLimit => "0028,0121",
13194             ImageLocation => "0028,0200",
13195             QualityControlImage => "0028,0300",
13196             BurnedInAnnotation => "0028,0301",
13197             TransformLabel => "0028,0400",
13198             TransformVersionNumber => "0028,0401",
13199             NumberOfTransformSteps => "0028,0402",
13200             SequenceOfCompressedData => "0028,0403",
13201             DetailsOfCoefficients => "0028,0404",
13202             RowsForNthOrderCoefficients => "0028,04x0",
13203             ColumnsForNthOrderCoefficients => "0028,04x1",
13204             CoefficientCoding => "0028,04x2",
13205             CoefficientCodingPointers => "0028,04x3",
13206             DCTLabel => "0028,0700",
13207             DataBlockDescription => "0028,0701",
13208             DataBlock => "0028,0702",
13209             NormalizationFactorFormat => "0028,0710",
13210             ZonalMapNumberFormat => "0028,0720",
13211             ZonalMapLocation => "0028,0721",
13212             ZonalMapFormat => "0028,0722",
13213             AdaptiveMapFormat => "0028,0730",
13214             CodeNumberFormat => "0028,0740",
13215             CodeLabel => "0028,08x0",
13216             NumberOfTables => "0028,08x2",
13217             CodeTableLocation => "0028,08x3",
13218             BitsForCodeWord => "0028,08x4",
13219             ImageDataLocation => "0028,08x8",
13220             PixelSpacingCalibrationType => "0028,0a02",
13221             PixelSpacingCalibrationDescription => "0028,0a04",
13222             PixelIntensityRelationship => "0028,1040",
13223             PixelIntensityRelationshipSign => "0028,1041",
13224             WindowCenter => "0028,1050",
13225             WindowWidth => "0028,1051",
13226             RescaleIntercept => "0028,1052",
13227             RescaleSlope => "0028,1053",
13228             RescaleType => "0028,1054",
13229             WindowCenterWidthExplanation => "0028,1055",
13230             VOILUTFunction => "0028,1056",
13231             GrayScale => "0028,1080",
13232             RecommendedViewingMode => "0028,1090",
13233             GrayLookupTableDescriptor => "0028,1100",
13234             RedPaletteColorLookupTableDescriptor => "0028,1101",
13235             GreenPaletteColorLookupTableDescriptor => "0028,1102",
13236             BluePaletteColorLookupTableDescriptor => "0028,1103",
13237             AlphaPaletteColorLookupTableDescriptor => "0028,1104",
13238             LargeRedPaletteColorLookupTableDescriptor => "0028,1111",
13239             LargeGreenPaletteColorLookupTableDescriptor => "0028,1112",
13240             LargeBluePaletteColorLookupTableDescriptor => "0028,1113",
13241             PaletteColorLookupTableUID => "0028,1199",
13242             GrayLookupTableData => "0028,1200",
13243             RedPaletteColorLookupTableData => "0028,1201",
13244             GreenPaletteColorLookupTableData => "0028,1202",
13245             BluePaletteColorLookupTableData => "0028,1203",
13246             AlphaPaletteColorLookupTableData => "0028,1204",
13247             LargeRedPaletteColorLookupTableData => "0028,1211",
13248             LargeGreenPaletteColorLookupTableData => "0028,1212",
13249             LargeBluePaletteColorLookupTableData => "0028,1213",
13250             LargePaletteColorLookupTableUID => "0028,1214",
13251             SegmentedRedPaletteColorLookupTableData => "0028,1221",
13252             SegmentedGreenPaletteColorLookupTableData => "0028,1222",
13253             SegmentedBluePaletteColorLookupTableData => "0028,1223",
13254             BreastImplantPresent => "0028,1300",
13255             PartialView => "0028,1350",
13256             PartialViewDescription => "0028,1351",
13257             PartialViewCodeSequence => "0028,1352",
13258             SpatialLocationsPreserved => "0028,135a",
13259             DataFrameAssignmentSequence => "0028,1401",
13260             DataPathAssignment => "0028,1402",
13261             BitsMappedToColorLookupTable => "0028,1403",
13262             BlendingLUT1Sequence => "0028,1404",
13263             BlendingLUT1TransferFunction => "0028,1405",
13264             BlendingWeightConstant => "0028,1406",
13265             BlendingLookupTableDescriptor => "0028,1407",
13266             BlendingLookupTableData => "0028,1408",
13267             EnhancedPaletteColorLookupTableSequence => "0028,140b",
13268             BlendingLUT2Sequence => "0028,140c",
13269             BlendingLUT2TransferFunction => "0028,140d",
13270             DataPathID => "0028,140e",
13271             RGBLUTTransferFunction => "0028,140f",
13272             AlphaLUTTransferFunction => "0028,1410",
13273             ICCProfile => "0028,2000",
13274             LossyImageCompression => "0028,2110",
13275             LossyImageCompressionRatio => "0028,2112",
13276             LossyImageCompressionMethod => "0028,2114",
13277             ModalityLUTSequence => "0028,3000",
13278             LUTDescriptor => "0028,3002",
13279             LUTExplanation => "0028,3003",
13280             ModalityLUTType => "0028,3004",
13281             LUTData => "0028,3006",
13282             VOILUTSequence => "0028,3010",
13283             SoftcopyVOILUTSequence => "0028,3110",
13284             ImagePresentationComments => "0028,4000",
13285             BiPlaneAcquisitionSequence => "0028,5000",
13286             RepresentativeFrameNumber => "0028,6010",
13287             FrameNumbersOfInterest => "0028,6020",
13288             FrameOfInterestDescription => "0028,6022",
13289             FrameOfInterestType => "0028,6023",
13290             MaskPointers => "0028,6030",
13291             RWavePointer => "0028,6040",
13292             MaskSubtractionSequence => "0028,6100",
13293             MaskOperation => "0028,6101",
13294             ApplicableFrameRange => "0028,6102",
13295             MaskFrameNumbers => "0028,6110",
13296             ContrastFrameAveraging => "0028,6112",
13297             MaskSubPixelShift => "0028,6114",
13298             TIDOffset => "0028,6120",
13299             MaskOperationExplanation => "0028,6190",
13300             PixelDataProviderURL => "0028,7fe0",
13301             DataPointRows => "0028,9001",
13302             DataPointColumns => "0028,9002",
13303             SignalDomainColumns => "0028,9003",
13304             LargestMonochromePixelValue => "0028,9099",
13305             DataRepresentation => "0028,9108",
13306             PixelMeasuresSequence => "0028,9110",
13307             FrameVOILUTSequence => "0028,9132",
13308             PixelValueTransformationSequence => "0028,9145",
13309             SignalDomainRows => "0028,9235",
13310             DisplayFilterPercentage => "0028,9411",
13311             FramePixelShiftSequence => "0028,9415",
13312             SubtractionItemID => "0028,9416",
13313             PixelIntensityRelationshipLUTSequence => "0028,9422",
13314             FramePixelDataPropertiesSequence => "0028,9443",
13315             GeometricalProperties => "0028,9444",
13316             GeometricMaximumDistortion => "0028,9445",
13317             ImageProcessingApplied => "0028,9446",
13318             MaskSelectionMode => "0028,9454",
13319             LUTFunction => "0028,9474",
13320             MaskVisibilityPercentage => "0028,9478",
13321             PixelShiftSequence => "0028,9501",
13322             RegionPixelShiftSequence => "0028,9502",
13323             VerticesOfTheRegion => "0028,9503",
13324             MultiFramePresentationSequence => "0028,9505",
13325             PixelShiftFrameRange => "0028,9506",
13326             LUTFrameRange => "0028,9507",
13327             ImageToEquipmentMappingMatrix => "0028,9520",
13328             EquipmentCoordinateSystemIdentification => "0028,9537",
13329             StudyStatusID => "0032,000a",
13330             StudyPriorityID => "0032,000c",
13331             StudyIDIssuer => "0032,0012",
13332             StudyVerifiedDate => "0032,0032",
13333             StudyVerifiedTime => "0032,0033",
13334             StudyReadDate => "0032,0034",
13335             StudyReadTime => "0032,0035",
13336             ScheduledStudyStartDate => "0032,1000",
13337             ScheduledStudyStartTime => "0032,1001",
13338             ScheduledStudyStopDate => "0032,1010",
13339             ScheduledStudyStopTime => "0032,1011",
13340             ScheduledStudyLocation => "0032,1020",
13341             ScheduledStudyLocationAETitle => "0032,1021",
13342             ReasonForStudy => "0032,1030",
13343             RequestingPhysicianIdentificationSequence => "0032,1031",
13344             RequestingPhysician => "0032,1032",
13345             RequestingService => "0032,1033",
13346             RequestingServiceCodeSequence => "0032,1034",
13347             StudyArrivalDate => "0032,1040",
13348             StudyArrivalTime => "0032,1041",
13349             StudyCompletionDate => "0032,1050",
13350             StudyCompletionTime => "0032,1051",
13351             StudyComponentStatusID => "0032,1055",
13352             RequestedProcedureDescription => "0032,1060",
13353             RequestedProcedureCodeSequence => "0032,1064",
13354             RequestedContrastAgent => "0032,1070",
13355             StudyComments => "0032,4000",
13356             ReferencedPatientAliasSequence => "0038,0004",
13357             VisitStatusID => "0038,0008",
13358             AdmissionID => "0038,0010",
13359             IssuerOfAdmissionID => "0038,0011",
13360             IssuerOfAdmissionIDSequence => "0038,0014",
13361             RouteOfAdmissions => "0038,0016",
13362             ScheduledAdmissionDate => "0038,001a",
13363             ScheduledAdmissionTime => "0038,001b",
13364             ScheduledDischargeDate => "0038,001c",
13365             ScheduledDischargeTime => "0038,001d",
13366             ScheduledPatientInstitutionResidence => "0038,001e",
13367             AdmittingDate => "0038,0020",
13368             AdmittingTime => "0038,0021",
13369             DischargeDate => "0038,0030",
13370             DischargeTime => "0038,0032",
13371             DischargeDiagnosisDescription => "0038,0040",
13372             DischargeDiagnosisCodeSequence => "0038,0044",
13373             SpecialNeeds => "0038,0050",
13374             ServiceEpisodeID => "0038,0060",
13375             IssuerOfServiceEpisodeID => "0038,0061",
13376             ServiceEpisodeDescription => "0038,0062",
13377             IssuerOfServiceEpisodeIDSequence => "0038,0064",
13378             PertinentDocumentsSequence => "0038,0100",
13379             CurrentPatientLocation => "0038,0300",
13380             PatientInstitutionResidence => "0038,0400",
13381             PatientState => "0038,0500",
13382             PatientClinicalTrialParticipationSequence => "0038,0502",
13383             VisitComments => "0038,4000",
13384             WaveformOriginality => "003a,0004",
13385             NumberOfWaveformChannels => "003a,0005",
13386             NumberOfWaveformSamples => "003a,0010",
13387             SamplingFrequency => "003a,001a",
13388             MultiplexGroupLabel => "003a,0020",
13389             ChannelDefinitionSequence => "003a,0200",
13390             WaveformChannelNumber => "003a,0202",
13391             ChannelLabel => "003a,0203",
13392             ChannelStatus => "003a,0205",
13393             ChannelSourceSequence => "003a,0208",
13394             ChannelSourceModifiersSequence => "003a,0209",
13395             SourceWaveformSequence => "003a,020a",
13396             ChannelDerivationDescription => "003a,020c",
13397             ChannelSensitivity => "003a,0210",
13398             ChannelSensitivityUnitsSequence => "003a,0211",
13399             ChannelSensitivityCorrectionFactor => "003a,0212",
13400             ChannelBaseline => "003a,0213",
13401             ChannelTimeSkew => "003a,0214",
13402             ChannelSampleSkew => "003a,0215",
13403             ChannelOffset => "003a,0218",
13404             WaveformBitsStored => "003a,021a",
13405             FilterLowFrequency => "003a,0220",
13406             FilterHighFrequency => "003a,0221",
13407             NotchFilterFrequency => "003a,0222",
13408             NotchFilterBandwidth => "003a,0223",
13409             WaveformDataDisplayScale => "003a,0230",
13410             WaveformDisplayBackgroundCIELabValue => "003a,0231",
13411             WaveformPresentationGroupSequence => "003a,0240",
13412             PresentationGroupNumber => "003a,0241",
13413             ChannelDisplaySequence => "003a,0242",
13414             ChannelRecommendedDisplayCIELabValue => "003a,0244",
13415             ChannelPosition => "003a,0245",
13416             DisplayShadingFlag => "003a,0246",
13417             FractionalChannelDisplayScale => "003a,0247",
13418             AbsoluteChannelDisplayScale => "003a,0248",
13419             MultiplexedAudioChannelsDescriptionCodeSequence => "003a,0300",
13420             ChannelIdentificationCode => "003a,0301",
13421             ChannelMode => "003a,0302",
13422             ScheduledStationAETitle => "0040,0001",
13423             ScheduledProcedureStepStartDate => "0040,0002",
13424             ScheduledProcedureStepStartTime => "0040,0003",
13425             ScheduledProcedureStepEndDate => "0040,0004",
13426             ScheduledProcedureStepEndTime => "0040,0005",
13427             ScheduledPerformingPhysicianName => "0040,0006",
13428             ScheduledProcedureStepDescription => "0040,0007",
13429             ScheduledProtocolCodeSequence => "0040,0008",
13430             ScheduledProcedureStepID => "0040,0009",
13431             StageCodeSequence => "0040,000a",
13432             ScheduledPerformingPhysicianIdentificationSequence => "0040,000b",
13433             ScheduledStationName => "0040,0010",
13434             ScheduledProcedureStepLocation => "0040,0011",
13435             PreMedication => "0040,0012",
13436             ScheduledProcedureStepStatus => "0040,0020",
13437             OrderPlacerIdentifierSequence => "0040,0026",
13438             OrderFillerIdentifierSequence => "0040,0027",
13439             LocalNamespaceEntityID => "0040,0031",
13440             UniversalEntityID => "0040,0032",
13441             UniversalEntityIDType => "0040,0033",
13442             IdentifierTypeCode => "0040,0035",
13443             AssigningFacilitySequence => "0040,0036",
13444             AssigningJurisdictionCodeSequence => "0040,0039",
13445             AssigningAgencyOrDepartmentCodeSequence => "0040,003a",
13446             ScheduledProcedureStepSequence => "0040,0100",
13447             ReferencedNonImageCompositeSOPInstanceSequence => "0040,0220",
13448             PerformedStationAETitle => "0040,0241",
13449             PerformedStationName => "0040,0242",
13450             PerformedLocation => "0040,0243",
13451             PerformedProcedureStepStartDate => "0040,0244",
13452             PerformedProcedureStepStartTime => "0040,0245",
13453             PerformedProcedureStepEndDate => "0040,0250",
13454             PerformedProcedureStepEndTime => "0040,0251",
13455             PerformedProcedureStepStatus => "0040,0252",
13456             PerformedProcedureStepID => "0040,0253",
13457             PerformedProcedureStepDescription => "0040,0254",
13458             PerformedProcedureTypeDescription => "0040,0255",
13459             PerformedProtocolCodeSequence => "0040,0260",
13460             PerformedProtocolType => "0040,0261",
13461             ScheduledStepAttributesSequence => "0040,0270",
13462             RequestAttributesSequence => "0040,0275",
13463             CommentsOnThePerformedProcedureStep => "0040,0280",
13464             PerformedProcedureStepDiscontinuationReasonCodeSequence => "0040,0281",
13465             QuantitySequence => "0040,0293",
13466             Quantity => "0040,0294",
13467             MeasuringUnitsSequence => "0040,0295",
13468             BillingItemSequence => "0040,0296",
13469             TotalTimeOfFluoroscopy => "0040,0300",
13470             TotalNumberOfExposures => "0040,0301",
13471             EntranceDose => "0040,0302",
13472             ExposedArea => "0040,0303",
13473             DistanceSourceToEntrance => "0040,0306",
13474             DistanceSourceToSupport => "0040,0307",
13475             ExposureDoseSequence => "0040,030e",
13476             CommentsOnRadiationDose => "0040,0310",
13477             XRayOutput => "0040,0312",
13478             HalfValueLayer => "0040,0314",
13479             OrganDose => "0040,0316",
13480             OrganExposed => "0040,0318",
13481             BillingProcedureStepSequence => "0040,0320",
13482             FilmConsumptionSequence => "0040,0321",
13483             BillingSuppliesAndDevicesSequence => "0040,0324",
13484             ReferencedProcedureStepSequence => "0040,0330",
13485             PerformedSeriesSequence => "0040,0340",
13486             CommentsOnTheScheduledProcedureStep => "0040,0400",
13487             ProtocolContextSequence => "0040,0440",
13488             ContentItemModifierSequence => "0040,0441",
13489             ScheduledSpecimenSequence => "0040,0500",
13490             SpecimenAccessionNumber => "0040,050a",
13491             ContainerIdentifier => "0040,0512",
13492             IssuerOfTheContainerIdentifierSequence => "0040,0513",
13493             AlternateContainerIdentifierSequence => "0040,0515",
13494             ContainerTypeCodeSequence => "0040,0518",
13495             ContainerDescription => "0040,051a",
13496             ContainerComponentSequence => "0040,0520",
13497             SpecimenSequence => "0040,0550",
13498             SpecimenIdentifier => "0040,0551",
13499             SpecimenDescriptionSequenceTrial => "0040,0552",
13500             SpecimenDescriptionTrial => "0040,0553",
13501             SpecimenUID => "0040,0554",
13502             AcquisitionContextSequence => "0040,0555",
13503             AcquisitionContextDescription => "0040,0556",
13504             SpecimenDescriptionSequence => "0040,0560",
13505             IssuerOfTheSpecimenIdentifierSequence => "0040,0562",
13506             SpecimenTypeCodeSequence => "0040,059a",
13507             SpecimenShortDescription => "0040,0600",
13508             SpecimenDetailedDescription => "0040,0602",
13509             SpecimenPreparationSequence => "0040,0610",
13510             SpecimenPreparationStepContentItemSequence => "0040,0612",
13511             SpecimenLocalizationContentItemSequence => "0040,0620",
13512             SlideIdentifier => "0040,06fa",
13513             ImageCenterPointCoordinatesSequence => "0040,071a",
13514             XOffsetInSlideCoordinateSystem => "0040,072a",
13515             YOffsetInSlideCoordinateSystem => "0040,073a",
13516             ZOffsetInSlideCoordinateSystem => "0040,074a",
13517             PixelSpacingSequence => "0040,08d8",
13518             CoordinateSystemAxisCodeSequence => "0040,08da",
13519             MeasurementUnitsCodeSequence => "0040,08ea",
13520             VitalStainCodeSequenceTrial => "0040,09f8",
13521             RequestedProcedureID => "0040,1001",
13522             ReasonForTheRequestedProcedure => "0040,1002",
13523             RequestedProcedurePriority => "0040,1003",
13524             PatientTransportArrangements => "0040,1004",
13525             RequestedProcedureLocation => "0040,1005",
13526             PlacerOrderNumberProcedure => "0040,1006",
13527             FillerOrderNumberProcedure => "0040,1007",
13528             ConfidentialityCode => "0040,1008",
13529             ReportingPriority => "0040,1009",
13530             ReasonForRequestedProcedureCodeSequence => "0040,100a",
13531             NamesOfIntendedRecipientsOfResults => "0040,1010",
13532             IntendedRecipientsOfResultsIdentificationSequence => "0040,1011",
13533             ReasonForPerformedProcedureCodeSequence => "0040,1012",
13534             PersonIdentificationCodeSequence => "0040,1101",
13535             PersonAddress => "0040,1102",
13536             PersonTelephoneNumbers => "0040,1103",
13537             RequestedProcedureComments => "0040,1400",
13538             ReasonForTheImagingServiceRequest => "0040,2001",
13539             IssueDateOfImagingServiceRequest => "0040,2004",
13540             IssueTimeOfImagingServiceRequest => "0040,2005",
13541             PlacerOrderNumberImagingServiceRequestRetired => "0040,2006",
13542             FillerOrderNumberImagingServiceRequestRetired => "0040,2007",
13543             OrderEnteredBy => "0040,2008",
13544             OrderEntererLocation => "0040,2009",
13545             OrderCallbackPhoneNumber => "0040,2010",
13546             PlacerOrderNumberImagingServiceRequest => "0040,2016",
13547             FillerOrderNumberImagingServiceRequest => "0040,2017",
13548             ImagingServiceRequestComments => "0040,2400",
13549             ConfidentialityConstraintOnPatientDataDescription => "0040,3001",
13550             GeneralPurposeScheduledProcedureStepStatus => "0040,4001",
13551             GeneralPurposePerformedProcedureStepStatus => "0040,4002",
13552             GeneralPurposeScheduledProcedureStepPriority => "0040,4003",
13553             ScheduledProcessingApplicationsCodeSequence => "0040,4004",
13554             ScheduledProcedureStepStartDateTime => "0040,4005",
13555             MultipleCopiesFlag => "0040,4006",
13556             PerformedProcessingApplicationsCodeSequence => "0040,4007",
13557             HumanPerformerCodeSequence => "0040,4009",
13558             ScheduledProcedureStepModificationDateTime => "0040,4010",
13559             ExpectedCompletionDateTime => "0040,4011",
13560             ResultingGeneralPurposePerformedProcedureStepsSequence => "0040,4015",
13561             ReferencedGeneralPurposeScheduledProcedureStepSequence => "0040,4016",
13562             ScheduledWorkitemCodeSequence => "0040,4018",
13563             PerformedWorkitemCodeSequence => "0040,4019",
13564             InputAvailabilityFlag => "0040,4020",
13565             InputInformationSequence => "0040,4021",
13566             RelevantInformationSequence => "0040,4022",
13567             ReferencedGeneralPurposeScheduledProcedureStepTransactionUID => "0040,4023",
13568             ScheduledStationNameCodeSequence => "0040,4025",
13569             ScheduledStationClassCodeSequence => "0040,4026",
13570             ScheduledStationGeographicLocationCodeSequence => "0040,4027",
13571             PerformedStationNameCodeSequence => "0040,4028",
13572             PerformedStationClassCodeSequence => "0040,4029",
13573             PerformedStationGeographicLocationCodeSequence => "0040,4030",
13574             RequestedSubsequentWorkitemCodeSequence => "0040,4031",
13575             NonDICOMOutputCodeSequence => "0040,4032",
13576             OutputInformationSequence => "0040,4033",
13577             ScheduledHumanPerformersSequence => "0040,4034",
13578             ActualHumanPerformersSequence => "0040,4035",
13579             HumanPerformerOrganization => "0040,4036",
13580             HumanPerformerName => "0040,4037",
13581             RawDataHandling => "0040,4040",
13582             EntranceDoseInmGy => "0040,8302",
13583             ReferencedImageRealWorldValueMappingSequence => "0040,9094",
13584             RealWorldValueMappingSequence => "0040,9096",
13585             PixelValueMappingCodeSequence => "0040,9098",
13586             LUTLabel => "0040,9210",
13587             RealWorldValueLastValueMapped => "0040,9211",
13588             RealWorldValueLUTData => "0040,9212",
13589             RealWorldValueFirstValueMapped => "0040,9216",
13590             RealWorldValueIntercept => "0040,9224",
13591             RealWorldValueSlope => "0040,9225",
13592             RelationshipType => "0040,a010",
13593             VerifyingOrganization => "0040,a027",
13594             VerificationDateTime => "0040,a030",
13595             ObservationDateTime => "0040,a032",
13596             ValueType => "0040,a040",
13597             ConceptNameCodeSequence => "0040,a043",
13598             ContinuityOfContent => "0040,a050",
13599             VerifyingObserverSequence => "0040,a073",
13600             VerifyingObserverName => "0040,a075",
13601             AuthorObserverSequence => "0040,a078",
13602             ParticipantSequence => "0040,a07a",
13603             CustodialOrganizationSequence => "0040,a07c",
13604             ParticipationType => "0040,a080",
13605             ParticipationDateTime => "0040,a082",
13606             ObserverType => "0040,a084",
13607             VerifyingObserverIdentificationCodeSequence => "0040,a088",
13608             EquivalentCDADocumentSequence => "0040,a090",
13609             ReferencedWaveformChannels => "0040,a0b0",
13610             DateTime => "0040,a120",
13611             Date => "0040,a121",
13612             Time => "0040,a122",
13613             PersonName => "0040,a123",
13614             UID => "0040,a124",
13615             TemporalRangeType => "0040,a130",
13616             ReferencedSamplePositions => "0040,a132",
13617             ReferencedFrameNumbers => "0040,a136",
13618             ReferencedTimeOffsets => "0040,a138",
13619             ReferencedDateTime => "0040,a13a",
13620             TextValue => "0040,a160",
13621             ConceptCodeSequence => "0040,a168",
13622             PurposeOfReferenceCodeSequence => "0040,a170",
13623             AnnotationGroupNumber => "0040,a180",
13624             ModifierCodeSequence => "0040,a195",
13625             MeasuredValueSequence => "0040,a300",
13626             NumericValueQualifierCodeSequence => "0040,a301",
13627             NumericValue => "0040,a30a",
13628             AddressTrial => "0040,a353",
13629             TelephoneNumberTrial => "0040,a354",
13630             PredecessorDocumentsSequence => "0040,a360",
13631             ReferencedRequestSequence => "0040,a370",
13632             PerformedProcedureCodeSequence => "0040,a372",
13633             CurrentRequestedProcedureEvidenceSequence => "0040,a375",
13634             PertinentOtherEvidenceSequence => "0040,a385",
13635             HL7StructuredDocumentReferenceSequence => "0040,a390",
13636             CompletionFlag => "0040,a491",
13637             CompletionFlagDescription => "0040,a492",
13638             VerificationFlag => "0040,a493",
13639             ArchiveRequested => "0040,a494",
13640             PreliminaryFlag => "0040,a496",
13641             ContentTemplateSequence => "0040,a504",
13642             IdenticalDocumentsSequence => "0040,a525",
13643             ContentSequence => "0040,a730",
13644             WaveformAnnotationSequence => "0040,b020",
13645             TemplateIdentifier => "0040,db00",
13646             TemplateVersion => "0040,db06",
13647             TemplateLocalVersion => "0040,db07",
13648             TemplateExtensionFlag => "0040,db0b",
13649             TemplateExtensionOrganizationUID => "0040,db0c",
13650             TemplateExtensionCreatorUID => "0040,db0d",
13651             ReferencedContentItemIdentifier => "0040,db73",
13652             HL7InstanceIdentifier => "0040,e001",
13653             HL7DocumentEffectiveTime => "0040,e004",
13654             HL7DocumentTypeCodeSequence => "0040,e006",
13655             RetrieveURI => "0040,e010",
13656             RetrieveLocationUID => "0040,e011",
13657             DocumentTitle => "0042,0010",
13658             EncapsulatedDocument => "0042,0011",
13659             MIMETypeOfEncapsulatedDocument => "0042,0012",
13660             SourceInstanceSequence => "0042,0013",
13661             ListOfMIMETypes => "0042,0014",
13662             ProductPackageIdentifier => "0044,0001",
13663             SubstanceAdministrationApproval => "0044,0002",
13664             ApprovalStatusFurtherDescription => "0044,0003",
13665             ApprovalStatusDateTime => "0044,0004",
13666             ProductTypeCodeSequence => "0044,0007",
13667             ProductName => "0044,0008",
13668             ProductDescription => "0044,0009",
13669             ProductLotIdentifier => "0044,000a",
13670             ProductExpirationDateTime => "0044,000b",
13671             SubstanceAdministrationDateTime => "0044,0010",
13672             SubstanceAdministrationNotes => "0044,0011",
13673             SubstanceAdministrationDeviceID => "0044,0012",
13674             ProductParameterSequence => "0044,0013",
13675             SubstanceAdministrationParameterSequence => "0044,0019",
13676             LensDescription => "0046,0012",
13677             RightLensSequence => "0046,0014",
13678             LeftLensSequence => "0046,0015",
13679             UnspecifiedLateralityLensSequence => "0046,0016",
13680             CylinderSequence => "0046,0018",
13681             PrismSequence => "0046,0028",
13682             HorizontalPrismPower => "0046,0030",
13683             HorizontalPrismBase => "0046,0032",
13684             VerticalPrismPower => "0046,0034",
13685             VerticalPrismBase => "0046,0036",
13686             LensSegmentType => "0046,0038",
13687             OpticalTransmittance => "0046,0040",
13688             ChannelWidth => "0046,0042",
13689             PupilSize => "0046,0044",
13690             CornealSize => "0046,0046",
13691             AutorefractionRightEyeSequence => "0046,0050",
13692             AutorefractionLeftEyeSequence => "0046,0052",
13693             DistancePupillaryDistance => "0046,0060",
13694             NearPupillaryDistance => "0046,0062",
13695             IntermediatePupillaryDistance => "0046,0063",
13696             OtherPupillaryDistance => "0046,0064",
13697             KeratometryRightEyeSequence => "0046,0070",
13698             KeratometryLeftEyeSequence => "0046,0071",
13699             SteepKeratometricAxisSequence => "0046,0074",
13700             RadiusOfCurvature => "0046,0075",
13701             KeratometricPower => "0046,0076",
13702             KeratometricAxis => "0046,0077",
13703             FlatKeratometricAxisSequence => "0046,0080",
13704             BackgroundColor => "0046,0092",
13705             Optotype => "0046,0094",
13706             OptotypePresentation => "0046,0095",
13707             SubjectiveRefractionRightEyeSequence => "0046,0097",
13708             SubjectiveRefractionLeftEyeSequence => "0046,0098",
13709             AddNearSequence => "0046,0100",
13710             AddIntermediateSequence => "0046,0101",
13711             AddOtherSequence => "0046,0102",
13712             AddPower => "0046,0104",
13713             ViewingDistance => "0046,0106",
13714             VisualAcuityTypeCodeSequence => "0046,0121",
13715             VisualAcuityRightEyeSequence => "0046,0122",
13716             VisualAcuityLeftEyeSequence => "0046,0123",
13717             VisualAcuityBothEyesOpenSequence => "0046,0124",
13718             ViewingDistanceType => "0046,0125",
13719             VisualAcuityModifiers => "0046,0135",
13720             DecimalVisualAcuity => "0046,0137",
13721             OptotypeDetailedDefinition => "0046,0139",
13722             ReferencedRefractiveMeasurementsSequence => "0046,0145",
13723             SpherePower => "0046,0146",
13724             CylinderPower => "0046,0147",
13725             CalibrationImage => "0050,0004",
13726             DeviceSequence => "0050,0010",
13727             ContainerComponentTypeCodeSequence => "0050,0012",
13728             ContainerComponentThickness => "0050,0013",
13729             DeviceLength => "0050,0014",
13730             ContainerComponentWidth => "0050,0015",
13731             DeviceDiameter => "0050,0016",
13732             DeviceDiameterUnits => "0050,0017",
13733             DeviceVolume => "0050,0018",
13734             InterMarkerDistance => "0050,0019",
13735             ContainerComponentMaterial => "0050,001a",
13736             ContainerComponentID => "0050,001b",
13737             ContainerComponentLength => "0050,001c",
13738             ContainerComponentDiameter => "0050,001d",
13739             ContainerComponentDescription => "0050,001e",
13740             DeviceDescription => "0050,0020",
13741             EnergyWindowVector => "0054,0010",
13742             NumberOfEnergyWindows => "0054,0011",
13743             EnergyWindowInformationSequence => "0054,0012",
13744             EnergyWindowRangeSequence => "0054,0013",
13745             EnergyWindowLowerLimit => "0054,0014",
13746             EnergyWindowUpperLimit => "0054,0015",
13747             RadiopharmaceuticalInformationSequence => "0054,0016",
13748             ResidualSyringeCounts => "0054,0017",
13749             EnergyWindowName => "0054,0018",
13750             DetectorVector => "0054,0020",
13751             NumberOfDetectors => "0054,0021",
13752             DetectorInformationSequence => "0054,0022",
13753             PhaseVector => "0054,0030",
13754             NumberOfPhases => "0054,0031",
13755             PhaseInformationSequence => "0054,0032",
13756             NumberOfFramesInPhase => "0054,0033",
13757             PhaseDelay => "0054,0036",
13758             PauseBetweenFrames => "0054,0038",
13759             PhaseDescription => "0054,0039",
13760             RotationVector => "0054,0050",
13761             NumberOfRotations => "0054,0051",
13762             RotationInformationSequence => "0054,0052",
13763             NumberOfFramesInRotation => "0054,0053",
13764             RRIntervalVector => "0054,0060",
13765             NumberOfRRIntervals => "0054,0061",
13766             GatedInformationSequence => "0054,0062",
13767             DataInformationSequence => "0054,0063",
13768             TimeSlotVector => "0054,0070",
13769             NumberOfTimeSlots => "0054,0071",
13770             TimeSlotInformationSequence => "0054,0072",
13771             TimeSlotTime => "0054,0073",
13772             SliceVector => "0054,0080",
13773             NumberOfSlices => "0054,0081",
13774             AngularViewVector => "0054,0090",
13775             TimeSliceVector => "0054,0100",
13776             NumberOfTimeSlices => "0054,0101",
13777             StartAngle => "0054,0200",
13778             TypeOfDetectorMotion => "0054,0202",
13779             TriggerVector => "0054,0210",
13780             NumberOfTriggersInPhase => "0054,0211",
13781             ViewCodeSequence => "0054,0220",
13782             ViewModifierCodeSequence => "0054,0222",
13783             RadionuclideCodeSequence => "0054,0300",
13784             AdministrationRouteCodeSequence => "0054,0302",
13785             RadiopharmaceuticalCodeSequence => "0054,0304",
13786             CalibrationDataSequence => "0054,0306",
13787             EnergyWindowNumber => "0054,0308",
13788             ImageID => "0054,0400",
13789             PatientOrientationCodeSequence => "0054,0410",
13790             PatientOrientationModifierCodeSequence => "0054,0412",
13791             PatientGantryRelationshipCodeSequence => "0054,0414",
13792             SliceProgressionDirection => "0054,0500",
13793             SeriesType => "0054,1000",
13794             Units => "0054,1001",
13795             CountsSource => "0054,1002",
13796             ReprojectionMethod => "0054,1004",
13797             RandomsCorrectionMethod => "0054,1100",
13798             AttenuationCorrectionMethod => "0054,1101",
13799             DecayCorrection => "0054,1102",
13800             ReconstructionMethod => "0054,1103",
13801             DetectorLinesOfResponseUsed => "0054,1104",
13802             ScatterCorrectionMethod => "0054,1105",
13803             AxialAcceptance => "0054,1200",
13804             AxialMash => "0054,1201",
13805             TransverseMash => "0054,1202",
13806             DetectorElementSize => "0054,1203",
13807             CoincidenceWindowWidth => "0054,1210",
13808             SecondaryCountsType => "0054,1220",
13809             FrameReferenceTime => "0054,1300",
13810             PrimaryPromptsCountsAccumulated => "0054,1310",
13811             SecondaryCountsAccumulated => "0054,1311",
13812             SliceSensitivityFactor => "0054,1320",
13813             DecayFactor => "0054,1321",
13814             DoseCalibrationFactor => "0054,1322",
13815             ScatterFractionFactor => "0054,1323",
13816             DeadTimeFactor => "0054,1324",
13817             ImageIndex => "0054,1330",
13818             CountsIncluded => "0054,1400",
13819             DeadTimeCorrectionFlag => "0054,1401",
13820             HistogramSequence => "0060,3000",
13821             HistogramNumberOfBins => "0060,3002",
13822             HistogramFirstBinValue => "0060,3004",
13823             HistogramLastBinValue => "0060,3006",
13824             HistogramBinWidth => "0060,3008",
13825             HistogramExplanation => "0060,3010",
13826             HistogramData => "0060,3020",
13827             SegmentationType => "0062,0001",
13828             SegmentSequence => "0062,0002",
13829             SegmentedPropertyCategoryCodeSequence => "0062,0003",
13830             SegmentNumber => "0062,0004",
13831             SegmentLabel => "0062,0005",
13832             SegmentDescription => "0062,0006",
13833             SegmentAlgorithmType => "0062,0008",
13834             SegmentAlgorithmName => "0062,0009",
13835             SegmentIdentificationSequence => "0062,000a",
13836             ReferencedSegmentNumber => "0062,000b",
13837             RecommendedDisplayGrayscaleValue => "0062,000c",
13838             RecommendedDisplayCIELabValue => "0062,000d",
13839             MaximumFractionalValue => "0062,000e",
13840             SegmentedPropertyTypeCodeSequence => "0062,000f",
13841             SegmentationFractionalType => "0062,0010",
13842             DeformableRegistrationSequence => "0064,0002",
13843             SourceFrameOfReferenceUID => "0064,0003",
13844             DeformableRegistrationGridSequence => "0064,0005",
13845             GridDimensions => "0064,0007",
13846             GridResolution => "0064,0008",
13847             VectorGridData => "0064,0009",
13848             PreDeformationMatrixRegistrationSequence => "0064,000f",
13849             PostDeformationMatrixRegistrationSequence => "0064,0010",
13850             NumberOfSurfaces => "0066,0001",
13851             SurfaceSequence => "0066,0002",
13852             SurfaceNumber => "0066,0003",
13853             SurfaceComments => "0066,0004",
13854             SurfaceProcessing => "0066,0009",
13855             SurfaceProcessingRatio => "0066,000a",
13856             SurfaceProcessingDescription => "0066,000b",
13857             RecommendedPresentationOpacity => "0066,000c",
13858             RecommendedPresentationType => "0066,000d",
13859             FiniteVolume => "0066,000e",
13860             Manifold => "0066,0010",
13861             SurfacePointsSequence => "0066,0011",
13862             SurfacePointsNormalsSequence => "0066,0012",
13863             SurfaceMeshPrimitivesSequence => "0066,0013",
13864             NumberOfSurfacePoints => "0066,0015",
13865             PointCoordinatesData => "0066,0016",
13866             PointPositionAccuracy => "0066,0017",
13867             MeanPointDistance => "0066,0018",
13868             MaximumPointDistance => "0066,0019",
13869             PointsBoundingBoxCoordinates => "0066,001a",
13870             AxisOfRotation => "0066,001b",
13871             CenterOfRotation => "0066,001c",
13872             NumberOfVectors => "0066,001e",
13873             VectorDimensionality => "0066,001f",
13874             VectorAccuracy => "0066,0020",
13875             VectorCoordinateData => "0066,0021",
13876             TrianglePointIndexList => "0066,0023",
13877             EdgePointIndexList => "0066,0024",
13878             VertexPointIndexList => "0066,0025",
13879             TriangleStripSequence => "0066,0026",
13880             TriangleFanSequence => "0066,0027",
13881             LineSequence => "0066,0028",
13882             PrimitivePointIndexList => "0066,0029",
13883             SurfaceCount => "0066,002a",
13884             ReferencedSurfaceSequence => "0066,002b",
13885             ReferencedSurfaceNumber => "0066,002c",
13886             SegmentSurfaceGenerationAlgorithmIdentificationSequence => "0066,002d",
13887             SegmentSurfaceSourceInstanceSequence => "0066,002e",
13888             AlgorithmFamilyCodeSequence => "0066,002f",
13889             AlgorithmNameCodeSequence => "0066,0030",
13890             AlgorithmVersion => "0066,0031",
13891             AlgorithmParameters => "0066,0032",
13892             FacetSequence => "0066,0034",
13893             SurfaceProcessingAlgorithmIdentificationSequence => "0066,0035",
13894             AlgorithmName => "0066,0036",
13895             GraphicAnnotationSequence => "0070,0001",
13896             GraphicLayer => "0070,0002",
13897             BoundingBoxAnnotationUnits => "0070,0003",
13898             AnchorPointAnnotationUnits => "0070,0004",
13899             GraphicAnnotationUnits => "0070,0005",
13900             UnformattedTextValue => "0070,0006",
13901             TextObjectSequence => "0070,0008",
13902             GraphicObjectSequence => "0070,0009",
13903             BoundingBoxTopLeftHandCorner => "0070,0010",
13904             BoundingBoxBottomRightHandCorner => "0070,0011",
13905             BoundingBoxTextHorizontalJustification => "0070,0012",
13906             AnchorPoint => "0070,0014",
13907             AnchorPointVisibility => "0070,0015",
13908             GraphicDimensions => "0070,0020",
13909             NumberOfGraphicPoints => "0070,0021",
13910             GraphicData => "0070,0022",
13911             GraphicType => "0070,0023",
13912             GraphicFilled => "0070,0024",
13913             ImageRotationRetired => "0070,0040",
13914             ImageHorizontalFlip => "0070,0041",
13915             ImageRotation => "0070,0042",
13916             DisplayedAreaTopLeftHandCornerTrial => "0070,0050",
13917             DisplayedAreaBottomRightHandCornerTrial => "0070,0051",
13918             DisplayedAreaTopLeftHandCorner => "0070,0052",
13919             DisplayedAreaBottomRightHandCorner => "0070,0053",
13920             DisplayedAreaSelectionSequence => "0070,005a",
13921             GraphicLayerSequence => "0070,0060",
13922             GraphicLayerOrder => "0070,0062",
13923             GraphicLayerRecommendedDisplayGrayscaleValue => "0070,0066",
13924             GraphicLayerRecommendedDisplayRGBValue => "0070,0067",
13925             GraphicLayerDescription => "0070,0068",
13926             ContentLabel => "0070,0080",
13927             ContentDescription => "0070,0081",
13928             PresentationCreationDate => "0070,0082",
13929             PresentationCreationTime => "0070,0083",
13930             ContentCreatorName => "0070,0084",
13931             ContentCreatorIdentificationCodeSequence => "0070,0086",
13932             AlternateContentDescriptionSequence => "0070,0087",
13933             PresentationSizeMode => "0070,0100",
13934             PresentationPixelSpacing => "0070,0101",
13935             PresentationPixelAspectRatio => "0070,0102",
13936             PresentationPixelMagnificationRatio => "0070,0103",
13937             ShapeType => "0070,0306",
13938             RegistrationSequence => "0070,0308",
13939             MatrixRegistrationSequence => "0070,0309",
13940             MatrixSequence => "0070,030a",
13941             FrameOfReferenceTransformationMatrixType => "0070,030c",
13942             RegistrationTypeCodeSequence => "0070,030d",
13943             FiducialDescription => "0070,030f",
13944             FiducialIdentifier => "0070,0310",
13945             FiducialIdentifierCodeSequence => "0070,0311",
13946             ContourUncertaintyRadius => "0070,0312",
13947             UsedFiducialsSequence => "0070,0314",
13948             GraphicCoordinatesDataSequence => "0070,0318",
13949             FiducialUID => "0070,031a",
13950             FiducialSetSequence => "0070,031c",
13951             FiducialSequence => "0070,031e",
13952             GraphicLayerRecommendedDisplayCIELabValue => "0070,0401",
13953             BlendingSequence => "0070,0402",
13954             RelativeOpacity => "0070,0403",
13955             ReferencedSpatialRegistrationSequence => "0070,0404",
13956             BlendingPosition => "0070,0405",
13957             HangingProtocolName => "0072,0002",
13958             HangingProtocolDescription => "0072,0004",
13959             HangingProtocolLevel => "0072,0006",
13960             HangingProtocolCreator => "0072,0008",
13961             HangingProtocolCreationDateTime => "0072,000a",
13962             HangingProtocolDefinitionSequence => "0072,000c",
13963             HangingProtocolUserIdentificationCodeSequence => "0072,000e",
13964             HangingProtocolUserGroupName => "0072,0010",
13965             SourceHangingProtocolSequence => "0072,0012",
13966             NumberOfPriorsReferenced => "0072,0014",
13967             ImageSetsSequence => "0072,0020",
13968             ImageSetSelectorSequence => "0072,0022",
13969             ImageSetSelectorUsageFlag => "0072,0024",
13970             SelectorAttribute => "0072,0026",
13971             SelectorValueNumber => "0072,0028",
13972             TimeBasedImageSetsSequence => "0072,0030",
13973             ImageSetNumber => "0072,0032",
13974             ImageSetSelectorCategory => "0072,0034",
13975             RelativeTime => "0072,0038",
13976             RelativeTimeUnits => "0072,003a",
13977             AbstractPriorValue => "0072,003c",
13978             AbstractPriorCodeSequence => "0072,003e",
13979             ImageSetLabel => "0072,0040",
13980             SelectorAttributeVR => "0072,0050",
13981             SelectorSequencePointer => "0072,0052",
13982             SelectorSequencePointerPrivateCreator => "0072,0054",
13983             SelectorAttributePrivateCreator => "0072,0056",
13984             SelectorATValue => "0072,0060",
13985             SelectorCSValue => "0072,0062",
13986             SelectorISValue => "0072,0064",
13987             SelectorLOValue => "0072,0066",
13988             SelectorLTValue => "0072,0068",
13989             SelectorPNValue => "0072,006a",
13990             SelectorSHValue => "0072,006c",
13991             SelectorSTValue => "0072,006e",
13992             SelectorUTValue => "0072,0070",
13993             SelectorDSValue => "0072,0072",
13994             SelectorFDValue => "0072,0074",
13995             SelectorFLValue => "0072,0076",
13996             SelectorULValue => "0072,0078",
13997             SelectorUSValue => "0072,007a",
13998             SelectorSLValue => "0072,007c",
13999             SelectorSSValue => "0072,007e",
14000             SelectorCodeSequenceValue => "0072,0080",
14001             NumberOfScreens => "0072,0100",
14002             NominalScreenDefinitionSequence => "0072,0102",
14003             NumberOfVerticalPixels => "0072,0104",
14004             NumberOfHorizontalPixels => "0072,0106",
14005             DisplayEnvironmentSpatialPosition => "0072,0108",
14006             ScreenMinimumGrayscaleBitDepth => "0072,010a",
14007             ScreenMinimumColorBitDepth => "0072,010c",
14008             ApplicationMaximumRepaintTime => "0072,010e",
14009             DisplaySetsSequence => "0072,0200",
14010             DisplaySetNumber => "0072,0202",
14011             DisplaySetLabel => "0072,0203",
14012             DisplaySetPresentationGroup => "0072,0204",
14013             DisplaySetPresentationGroupDescription => "0072,0206",
14014             PartialDataDisplayHandling => "0072,0208",
14015             SynchronizedScrollingSequence => "0072,0210",
14016             DisplaySetScrollingGroup => "0072,0212",
14017             NavigationIndicatorSequence => "0072,0214",
14018             NavigationDisplaySet => "0072,0216",
14019             ReferenceDisplaySets => "0072,0218",
14020             ImageBoxesSequence => "0072,0300",
14021             ImageBoxNumber => "0072,0302",
14022             ImageBoxLayoutType => "0072,0304",
14023             ImageBoxTileHorizontalDimension => "0072,0306",
14024             ImageBoxTileVerticalDimension => "0072,0308",
14025             ImageBoxScrollDirection => "0072,0310",
14026             ImageBoxSmallScrollType => "0072,0312",
14027             ImageBoxSmallScrollAmount => "0072,0314",
14028             ImageBoxLargeScrollType => "0072,0316",
14029             ImageBoxLargeScrollAmount => "0072,0318",
14030             ImageBoxOverlapPriority => "0072,0320",
14031             CineRelativeToRealTime => "0072,0330",
14032             FilterOperationsSequence => "0072,0400",
14033             FilterByCategory => "0072,0402",
14034             FilterByAttributePresence => "0072,0404",
14035             FilterByOperator => "0072,0406",
14036             StructuredDisplayBackgroundCIELabValue => "0072,0420",
14037             EmptyImageBoxCIELabValue => "0072,0421",
14038             StructuredDisplayImageBoxSequence => "0072,0422",
14039             StructuredDisplayTextBoxSequence => "0072,0424",
14040             ReferencedFirstFrameSequence => "0072,0427",
14041             ImageBoxSynchronizationSequence => "0072,0430",
14042             SynchronizedImageBoxList => "0072,0432",
14043             TypeOfSynchronization => "0072,0434",
14044             BlendingOperationType => "0072,0500",
14045             ReformattingOperationType => "0072,0510",
14046             ReformattingThickness => "0072,0512",
14047             ReformattingInterval => "0072,0514",
14048             ReformattingOperationInitialViewDirection => "0072,0516",
14049             ThreeDRenderingType => "0072,0520",
14050             SortingOperationsSequence => "0072,0600",
14051             SortByCategory => "0072,0602",
14052             SortingDirection => "0072,0604",
14053             DisplaySetPatientOrientation => "0072,0700",
14054             VOIType => "0072,0702",
14055             PseudoColorType => "0072,0704",
14056             ShowGrayscaleInverted => "0072,0706",
14057             ShowImageTrueSizeFlag => "0072,0710",
14058             ShowGraphicAnnotationFlag => "0072,0712",
14059             ShowPatientDemographicsFlag => "0072,0714",
14060             ShowAcquisitionTechniquesFlag => "0072,0716",
14061             DisplaySetHorizontalJustification => "0072,0717",
14062             DisplaySetVerticalJustification => "0072,0718",
14063             UnifiedProcedureStepState => "0074,1000",
14064             UnifiedProcedureStepProgressInformationSequence => "0074,1002",
14065             UnifiedProcedureStepProgress => "0074,1004",
14066             UnifiedProcedureStepProgressDescription => "0074,1006",
14067             UnifiedProcedureStepCommunicationsURISequence => "0074,1008",
14068             ContactURI => "0074,100a",
14069             ContactDisplayName => "0074,100c",
14070             UnifiedProcedureStepDiscontinuationReasonCodeSequence => "0074,100e",
14071             BeamTaskSequence => "0074,1020",
14072             BeamTaskType => "0074,1022",
14073             BeamOrderIndex => "0074,1024",
14074             DeliveryVerificationImageSequence => "0074,1030",
14075             VerificationImageTiming => "0074,1032",
14076             DoubleExposureFlag => "0074,1034",
14077             DoubleExposureOrdering => "0074,1036",
14078             DoubleExposureMeterset => "0074,1038",
14079             DoubleExposureFieldDelta => "0074,103a",
14080             RelatedReferenceRTImageSequence => "0074,1040",
14081             GeneralMachineVerificationSequence => "0074,1042",
14082             ConventionalMachineVerificationSequence => "0074,1044",
14083             IonMachineVerificationSequence => "0074,1046",
14084             FailedAttributesSequence => "0074,1048",
14085             OverriddenAttributesSequence => "0074,104a",
14086             ConventionalControlPointVerificationSequence => "0074,104c",
14087             IonControlPointVerificationSequence => "0074,104e",
14088             AttributeOccurrenceSequence => "0074,1050",
14089             AttributeOccurrencePointer => "0074,1052",
14090             AttributeItemSelector => "0074,1054",
14091             AttributeOccurrencePrivateCreator => "0074,1056",
14092             ScheduledProcedureStepPriority => "0074,1200",
14093             WorklistLabel => "0074,1202",
14094             ProcedureStepLabel => "0074,1204",
14095             ScheduledProcessingParametersSequence => "0074,1210",
14096             PerformedProcessingParametersSequence => "0074,1212",
14097             UnifiedProcedureStepPerformedProcedureSequence => "0074,1216",
14098             RelatedProcedureStepSequence => "0074,1220",
14099             ProcedureStepRelationshipType => "0074,1222",
14100             DeletionLock => "0074,1230",
14101             ReceivingAE => "0074,1234",
14102             RequestingAE => "0074,1236",
14103             ReasonForCancellation => "0074,1238",
14104             SCPStatus => "0074,1242",
14105             SubscriptionListStatus => "0074,1244",
14106             UnifiedProcedureStepListStatus => "0074,1246",
14107             StorageMediaFileSetID => "0088,0130",
14108             StorageMediaFileSetUID => "0088,0140",
14109             IconImageSequence => "0088,0200",
14110             TopicTitle => "0088,0904",
14111             TopicSubject => "0088,0906",
14112             TopicAuthor => "0088,0910",
14113             TopicKeywords => "0088,0912",
14114             SOPInstanceStatus => "0100,0410",
14115             SOPAuthorizationDateTime => "0100,0420",
14116             SOPAuthorizationComment => "0100,0424",
14117             AuthorizationEquipmentCertificationNumber => "0100,0426",
14118             MACIDNumber => "0400,0005",
14119             MACCalculationTransferSyntaxUID => "0400,0010",
14120             MACAlgorithm => "0400,0015",
14121             DataElementsSigned => "0400,0020",
14122             DigitalSignatureUID => "0400,0100",
14123             DigitalSignatureDateTime => "0400,0105",
14124             CertificateType => "0400,0110",
14125             CertificateOfSigner => "0400,0115",
14126             Signature => "0400,0120",
14127             CertifiedTimestampType => "0400,0305",
14128             CertifiedTimestamp => "0400,0310",
14129             DigitalSignaturePurposeCodeSequence => "0400,0401",
14130             ReferencedDigitalSignatureSequence => "0400,0402",
14131             ReferencedSOPInstanceMACSequence => "0400,0403",
14132             MAC => "0400,0404",
14133             EncryptedAttributesSequence => "0400,0500",
14134             EncryptedContentTransferSyntaxUID => "0400,0510",
14135             EncryptedContent => "0400,0520",
14136             ModifiedAttributesSequence => "0400,0550",
14137             OriginalAttributesSequence => "0400,0561",
14138             AttributeModificationDateTime => "0400,0562",
14139             ModifyingSystem => "0400,0563",
14140             SourceOfPreviousValues => "0400,0564",
14141             ReasonForTheAttributeModification => "0400,0565",
14142             EscapeTriplet => "1000,xxx0",
14143             RunLengthTriplet => "1000,xxx1",
14144             HuffmanTableSize => "1000,xxx2",
14145             HuffmanTableTriplet => "1000,xxx3",
14146             ShiftTableSize => "1000,xxx4",
14147             ShiftTableTriplet => "1000,xxx5",
14148             ZonalMap => "1010,xxxx",
14149             NumberOfCopies => "2000,0010",
14150             PrinterConfigurationSequence => "2000,001e",
14151             PrintPriority => "2000,0020",
14152             MediumType => "2000,0030",
14153             FilmDestination => "2000,0040",
14154             FilmSessionLabel => "2000,0050",
14155             MemoryAllocation => "2000,0060",
14156             MaximumMemoryAllocation => "2000,0061",
14157             ColorImagePrintingFlag => "2000,0062",
14158             CollationFlag => "2000,0063",
14159             AnnotationFlag => "2000,0065",
14160             ImageOverlayFlag => "2000,0067",
14161             PresentationLUTFlag => "2000,0069",
14162             ImageBoxPresentationLUTFlag => "2000,006a",
14163             MemoryBitDepth => "2000,00a0",
14164             PrintingBitDepth => "2000,00a1",
14165             MediaInstalledSequence => "2000,00a2",
14166             OtherMediaAvailableSequence => "2000,00a4",
14167             SupportedImageDisplayFormatsSequence => "2000,00a8",
14168             ReferencedFilmBoxSequence => "2000,0500",
14169             ReferencedStoredPrintSequence => "2000,0510",
14170             ImageDisplayFormat => "2010,0010",
14171             AnnotationDisplayFormatID => "2010,0030",
14172             FilmOrientation => "2010,0040",
14173             FilmSizeID => "2010,0050",
14174             PrinterResolutionID => "2010,0052",
14175             DefaultPrinterResolutionID => "2010,0054",
14176             MagnificationType => "2010,0060",
14177             SmoothingType => "2010,0080",
14178             DefaultMagnificationType => "2010,00a6",
14179             OtherMagnificationTypesAvailable => "2010,00a7",
14180             DefaultSmoothingType => "2010,00a8",
14181             OtherSmoothingTypesAvailable => "2010,00a9",
14182             BorderDensity => "2010,0100",
14183             EmptyImageDensity => "2010,0110",
14184             MinDensity => "2010,0120",
14185             MaxDensity => "2010,0130",
14186             Trim => "2010,0140",
14187             ConfigurationInformation => "2010,0150",
14188             ConfigurationInformationDescription => "2010,0152",
14189             MaximumCollatedFilms => "2010,0154",
14190             Illumination => "2010,015e",
14191             ReflectedAmbientLight => "2010,0160",
14192             PrinterPixelSpacing => "2010,0376",
14193             ReferencedFilmSessionSequence => "2010,0500",
14194             ReferencedImageBoxSequence => "2010,0510",
14195             ReferencedBasicAnnotationBoxSequence => "2010,0520",
14196             ImageBoxPosition => "2020,0010",
14197             Polarity => "2020,0020",
14198             RequestedImageSize => "2020,0030",
14199             RequestedDecimateCropBehavior => "2020,0040",
14200             RequestedResolutionID => "2020,0050",
14201             RequestedImageSizeFlag => "2020,00a0",
14202             DecimateCropResult => "2020,00a2",
14203             BasicGrayscaleImageSequence => "2020,0110",
14204             BasicColorImageSequence => "2020,0111",
14205             ReferencedImageOverlayBoxSequence => "2020,0130",
14206             ReferencedVOILUTBoxSequence => "2020,0140",
14207             AnnotationPosition => "2030,0010",
14208             TextString => "2030,0020",
14209             ReferencedOverlayPlaneSequence => "2040,0010",
14210             ReferencedOverlayPlaneGroups => "2040,0011",
14211             OverlayPixelDataSequence => "2040,0020",
14212             OverlayMagnificationType => "2040,0060",
14213             OverlaySmoothingType => "2040,0070",
14214             OverlayOrImageMagnification => "2040,0072",
14215             MagnifyToNumberOfColumns => "2040,0074",
14216             OverlayForegroundDensity => "2040,0080",
14217             OverlayBackgroundDensity => "2040,0082",
14218             OverlayMode => "2040,0090",
14219             ThresholdDensity => "2040,0100",
14220             ReferencedImageBoxSequenceRetired => "2040,0500",
14221             PresentationLUTSequence => "2050,0010",
14222             PresentationLUTShape => "2050,0020",
14223             ReferencedPresentationLUTSequence => "2050,0500",
14224             PrintJobID => "2100,0010",
14225             ExecutionStatus => "2100,0020",
14226             ExecutionStatusInfo => "2100,0030",
14227             CreationDate => "2100,0040",
14228             CreationTime => "2100,0050",
14229             Originator => "2100,0070",
14230             DestinationAE => "2100,0140",
14231             OwnerID => "2100,0160",
14232             NumberOfFilms => "2100,0170",
14233             ReferencedPrintJobSequencePullStoredPrint => "2100,0500",
14234             PrinterStatus => "2110,0010",
14235             PrinterStatusInfo => "2110,0020",
14236             PrinterName => "2110,0030",
14237             PrintQueueID => "2110,0099",
14238             QueueStatus => "2120,0010",
14239             PrintJobDescriptionSequence => "2120,0050",
14240             ReferencedPrintJobSequence => "2120,0070",
14241             PrintManagementCapabilitiesSequence => "2130,0010",
14242             PrinterCharacteristicsSequence => "2130,0015",
14243             FilmBoxContentSequence => "2130,0030",
14244             ImageBoxContentSequence => "2130,0040",
14245             AnnotationContentSequence => "2130,0050",
14246             ImageOverlayBoxContentSequence => "2130,0060",
14247             PresentationLUTContentSequence => "2130,0080",
14248             ProposedStudySequence => "2130,00a0",
14249             OriginalImageSequence => "2130,00c0",
14250             LabelUsingInformationExtractedFromInstances => "2200,0001",
14251             LabelText => "2200,0002",
14252             LabelStyleSelection => "2200,0003",
14253             MediaDisposition => "2200,0004",
14254             BarcodeValue => "2200,0005",
14255             BarcodeSymbology => "2200,0006",
14256             AllowMediaSplitting => "2200,0007",
14257             IncludeNonDICOMObjects => "2200,0008",
14258             IncludeDisplayApplication => "2200,0009",
14259             PreserveCompositeInstancesAfterMediaCreation => "2200,000a",
14260             TotalNumberOfPiecesOfMediaCreated => "2200,000b",
14261             RequestedMediaApplicationProfile => "2200,000c",
14262             ReferencedStorageMediaSequence => "2200,000d",
14263             FailureAttributes => "2200,000e",
14264             AllowLossyCompression => "2200,000f",
14265             RequestPriority => "2200,0020",
14266             RTImageLabel => "3002,0002",
14267             RTImageName => "3002,0003",
14268             RTImageDescription => "3002,0004",
14269             ReportedValuesOrigin => "3002,000a",
14270             RTImagePlane => "3002,000c",
14271             XRayImageReceptorTranslation => "3002,000d",
14272             XRayImageReceptorAngle => "3002,000e",
14273             RTImageOrientation => "3002,0010",
14274             ImagePlanePixelSpacing => "3002,0011",
14275             RTImagePosition => "3002,0012",
14276             RadiationMachineName => "3002,0020",
14277             RadiationMachineSAD => "3002,0022",
14278             RadiationMachineSSD => "3002,0024",
14279             RTImageSID => "3002,0026",
14280             SourceToReferenceObjectDistance => "3002,0028",
14281             FractionNumber => "3002,0029",
14282             ExposureSequence => "3002,0030",
14283             MetersetExposure => "3002,0032",
14284             DiaphragmPosition => "3002,0034",
14285             FluenceMapSequence => "3002,0040",
14286             FluenceDataSource => "3002,0041",
14287             FluenceDataScale => "3002,0042",
14288             PrimaryFluenceModeSequence => "3002,0050",
14289             FluenceMode => "3002,0051",
14290             FluenceModeID => "3002,0052",
14291             DVHType => "3004,0001",
14292             DoseUnits => "3004,0002",
14293             DoseType => "3004,0004",
14294             DoseComment => "3004,0006",
14295             NormalizationPoint => "3004,0008",
14296             DoseSummationType => "3004,000a",
14297             GridFrameOffsetVector => "3004,000c",
14298             DoseGridScaling => "3004,000e",
14299             RTDoseROISequence => "3004,0010",
14300             DoseValue => "3004,0012",
14301             TissueHeterogeneityCorrection => "3004,0014",
14302             DVHNormalizationPoint => "3004,0040",
14303             DVHNormalizationDoseValue => "3004,0042",
14304             DVHSequence => "3004,0050",
14305             DVHDoseScaling => "3004,0052",
14306             DVHVolumeUnits => "3004,0054",
14307             DVHNumberOfBins => "3004,0056",
14308             DVHData => "3004,0058",
14309             DVHReferencedROISequence => "3004,0060",
14310             DVHROIContributionType => "3004,0062",
14311             DVHMinimumDose => "3004,0070",
14312             DVHMaximumDose => "3004,0072",
14313             DVHMeanDose => "3004,0074",
14314             StructureSetLabel => "3006,0002",
14315             StructureSetName => "3006,0004",
14316             StructureSetDescription => "3006,0006",
14317             StructureSetDate => "3006,0008",
14318             StructureSetTime => "3006,0009",
14319             ReferencedFrameOfReferenceSequence => "3006,0010",
14320             RTReferencedStudySequence => "3006,0012",
14321             RTReferencedSeriesSequence => "3006,0014",
14322             ContourImageSequence => "3006,0016",
14323             StructureSetROISequence => "3006,0020",
14324             ROINumber => "3006,0022",
14325             ReferencedFrameOfReferenceUID => "3006,0024",
14326             ROIName => "3006,0026",
14327             ROIDescription => "3006,0028",
14328             ROIDisplayColor => "3006,002a",
14329             ROIVolume => "3006,002c",
14330             RTRelatedROISequence => "3006,0030",
14331             RTROIRelationship => "3006,0033",
14332             ROIGenerationAlgorithm => "3006,0036",
14333             ROIGenerationDescription => "3006,0038",
14334             ROIContourSequence => "3006,0039",
14335             ContourSequence => "3006,0040",
14336             ContourGeometricType => "3006,0042",
14337             ContourSlabThickness => "3006,0044",
14338             ContourOffsetVector => "3006,0045",
14339             NumberOfContourPoints => "3006,0046",
14340             ContourNumber => "3006,0048",
14341             AttachedContours => "3006,0049",
14342             ContourData => "3006,0050",
14343             RTROIObservationsSequence => "3006,0080",
14344             ObservationNumber => "3006,0082",
14345             ReferencedROINumber => "3006,0084",
14346             ROIObservationLabel => "3006,0085",
14347             RTROIIdentificationCodeSequence => "3006,0086",
14348             ROIObservationDescription => "3006,0088",
14349             RelatedRTROIObservationsSequence => "3006,00a0",
14350             RTROIInterpretedType => "3006,00a4",
14351             ROIInterpreter => "3006,00a6",
14352             ROIPhysicalPropertiesSequence => "3006,00b0",
14353             ROIPhysicalProperty => "3006,00b2",
14354             ROIPhysicalPropertyValue => "3006,00b4",
14355             ROIElementalCompositionSequence => "3006,00b6",
14356             ROIElementalCompositionAtomicNumber => "3006,00b7",
14357             ROIElementalCompositionAtomicMassFraction => "3006,00b8",
14358             FrameOfReferenceRelationshipSequence => "3006,00c0",
14359             RelatedFrameOfReferenceUID => "3006,00c2",
14360             FrameOfReferenceTransformationType => "3006,00c4",
14361             FrameOfReferenceTransformationMatrix => "3006,00c6",
14362             FrameOfReferenceTransformationComment => "3006,00c8",
14363             MeasuredDoseReferenceSequence => "3008,0010",
14364             MeasuredDoseDescription => "3008,0012",
14365             MeasuredDoseType => "3008,0014",
14366             MeasuredDoseValue => "3008,0016",
14367             TreatmentSessionBeamSequence => "3008,0020",
14368             TreatmentSessionIonBeamSequence => "3008,0021",
14369             CurrentFractionNumber => "3008,0022",
14370             TreatmentControlPointDate => "3008,0024",
14371             TreatmentControlPointTime => "3008,0025",
14372             TreatmentTerminationStatus => "3008,002a",
14373             TreatmentTerminationCode => "3008,002b",
14374             TreatmentVerificationStatus => "3008,002c",
14375             ReferencedTreatmentRecordSequence => "3008,0030",
14376             SpecifiedPrimaryMeterset => "3008,0032",
14377             SpecifiedSecondaryMeterset => "3008,0033",
14378             DeliveredPrimaryMeterset => "3008,0036",
14379             DeliveredSecondaryMeterset => "3008,0037",
14380             SpecifiedTreatmentTime => "3008,003a",
14381             DeliveredTreatmentTime => "3008,003b",
14382             ControlPointDeliverySequence => "3008,0040",
14383             IonControlPointDeliverySequence => "3008,0041",
14384             SpecifiedMeterset => "3008,0042",
14385             DeliveredMeterset => "3008,0044",
14386             MetersetRateSet => "3008,0045",
14387             MetersetRateDelivered => "3008,0046",
14388             ScanSpotMetersetsDelivered => "3008,0047",
14389             DoseRateDelivered => "3008,0048",
14390             TreatmentSummaryCalculatedDoseReferenceSequence => "3008,0050",
14391             CumulativeDoseToDoseReference => "3008,0052",
14392             FirstTreatmentDate => "3008,0054",
14393             MostRecentTreatmentDate => "3008,0056",
14394             NumberOfFractionsDelivered => "3008,005a",
14395             OverrideSequence => "3008,0060",
14396             ParameterSequencePointer => "3008,0061",
14397             OverrideParameterPointer => "3008,0062",
14398             ParameterItemIndex => "3008,0063",
14399             MeasuredDoseReferenceNumber => "3008,0064",
14400             ParameterPointer => "3008,0065",
14401             OverrideReason => "3008,0066",
14402             CorrectedParameterSequence => "3008,0068",
14403             CorrectionValue => "3008,006a",
14404             CalculatedDoseReferenceSequence => "3008,0070",
14405             CalculatedDoseReferenceNumber => "3008,0072",
14406             CalculatedDoseReferenceDescription => "3008,0074",
14407             CalculatedDoseReferenceDoseValue => "3008,0076",
14408             StartMeterset => "3008,0078",
14409             EndMeterset => "3008,007a",
14410             ReferencedMeasuredDoseReferenceSequence => "3008,0080",
14411             ReferencedMeasuredDoseReferenceNumber => "3008,0082",
14412             ReferencedCalculatedDoseReferenceSequence => "3008,0090",
14413             ReferencedCalculatedDoseReferenceNumber => "3008,0092",
14414             BeamLimitingDeviceLeafPairsSequence => "3008,00a0",
14415             RecordedWedgeSequence => "3008,00b0",
14416             RecordedCompensatorSequence => "3008,00c0",
14417             RecordedBlockSequence => "3008,00d0",
14418             TreatmentSummaryMeasuredDoseReferenceSequence => "3008,00e0",
14419             RecordedSnoutSequence => "3008,00f0",
14420             RecordedRangeShifterSequence => "3008,00f2",
14421             RecordedLateralSpreadingDeviceSequence => "3008,00f4",
14422             RecordedRangeModulatorSequence => "3008,00f6",
14423             RecordedSourceSequence => "3008,0100",
14424             SourceSerialNumber => "3008,0105",
14425             TreatmentSessionApplicationSetupSequence => "3008,0110",
14426             ApplicationSetupCheck => "3008,0116",
14427             RecordedBrachyAccessoryDeviceSequence => "3008,0120",
14428             ReferencedBrachyAccessoryDeviceNumber => "3008,0122",
14429             RecordedChannelSequence => "3008,0130",
14430             SpecifiedChannelTotalTime => "3008,0132",
14431             DeliveredChannelTotalTime => "3008,0134",
14432             SpecifiedNumberOfPulses => "3008,0136",
14433             DeliveredNumberOfPulses => "3008,0138",
14434             SpecifiedPulseRepetitionInterval => "3008,013a",
14435             DeliveredPulseRepetitionInterval => "3008,013c",
14436             RecordedSourceApplicatorSequence => "3008,0140",
14437             ReferencedSourceApplicatorNumber => "3008,0142",
14438             RecordedChannelShieldSequence => "3008,0150",
14439             ReferencedChannelShieldNumber => "3008,0152",
14440             BrachyControlPointDeliveredSequence => "3008,0160",
14441             SafePositionExitDate => "3008,0162",
14442             SafePositionExitTime => "3008,0164",
14443             SafePositionReturnDate => "3008,0166",
14444             SafePositionReturnTime => "3008,0168",
14445             CurrentTreatmentStatus => "3008,0200",
14446             TreatmentStatusComment => "3008,0202",
14447             FractionGroupSummarySequence => "3008,0220",
14448             ReferencedFractionNumber => "3008,0223",
14449             FractionGroupType => "3008,0224",
14450             BeamStopperPosition => "3008,0230",
14451             FractionStatusSummarySequence => "3008,0240",
14452             TreatmentDate => "3008,0250",
14453             TreatmentTime => "3008,0251",
14454             RTPlanLabel => "300a,0002",
14455             RTPlanName => "300a,0003",
14456             RTPlanDescription => "300a,0004",
14457             RTPlanDate => "300a,0006",
14458             RTPlanTime => "300a,0007",
14459             TreatmentProtocols => "300a,0009",
14460             PlanIntent => "300a,000a",
14461             TreatmentSites => "300a,000b",
14462             RTPlanGeometry => "300a,000c",
14463             PrescriptionDescription => "300a,000e",
14464             DoseReferenceSequence => "300a,0010",
14465             DoseReferenceNumber => "300a,0012",
14466             DoseReferenceUID => "300a,0013",
14467             DoseReferenceStructureType => "300a,0014",
14468             NominalBeamEnergyUnit => "300a,0015",
14469             DoseReferenceDescription => "300a,0016",
14470             DoseReferencePointCoordinates => "300a,0018",
14471             NominalPriorDose => "300a,001a",
14472             DoseReferenceType => "300a,0020",
14473             ConstraintWeight => "300a,0021",
14474             DeliveryWarningDose => "300a,0022",
14475             DeliveryMaximumDose => "300a,0023",
14476             TargetMinimumDose => "300a,0025",
14477             TargetPrescriptionDose => "300a,0026",
14478             TargetMaximumDose => "300a,0027",
14479             TargetUnderdoseVolumeFraction => "300a,0028",
14480             OrganAtRiskFullVolumeDose => "300a,002a",
14481             OrganAtRiskLimitDose => "300a,002b",
14482             OrganAtRiskMaximumDose => "300a,002c",
14483             OrganAtRiskOverdoseVolumeFraction => "300a,002d",
14484             ToleranceTableSequence => "300a,0040",
14485             ToleranceTableNumber => "300a,0042",
14486             ToleranceTableLabel => "300a,0043",
14487             GantryAngleTolerance => "300a,0044",
14488             BeamLimitingDeviceAngleTolerance => "300a,0046",
14489             BeamLimitingDeviceToleranceSequence => "300a,0048",
14490             BeamLimitingDevicePositionTolerance => "300a,004a",
14491             SnoutPositionTolerance => "300a,004b",
14492             PatientSupportAngleTolerance => "300a,004c",
14493             TableTopEccentricAngleTolerance => "300a,004e",
14494             TableTopPitchAngleTolerance => "300a,004f",
14495             TableTopRollAngleTolerance => "300a,0050",
14496             TableTopVerticalPositionTolerance => "300a,0051",
14497             TableTopLongitudinalPositionTolerance => "300a,0052",
14498             TableTopLateralPositionTolerance => "300a,0053",
14499             RTPlanRelationship => "300a,0055",
14500             FractionGroupSequence => "300a,0070",
14501             FractionGroupNumber => "300a,0071",
14502             FractionGroupDescription => "300a,0072",
14503             NumberOfFractionsPlanned => "300a,0078",
14504             NumberOfFractionPatternDigitsPerDay => "300a,0079",
14505             RepeatFractionCycleLength => "300a,007a",
14506             FractionPattern => "300a,007b",
14507             NumberOfBeams => "300a,0080",
14508             BeamDoseSpecificationPoint => "300a,0082",
14509             BeamDose => "300a,0084",
14510             BeamMeterset => "300a,0086",
14511             BeamDosePointDepth => "300a,0088",
14512             BeamDosePointEquivalentDepth => "300a,0089",
14513             BeamDosePointSSD => "300a,008a",
14514             NumberOfBrachyApplicationSetups => "300a,00a0",
14515             BrachyApplicationSetupDoseSpecificationPoint => "300a,00a2",
14516             BrachyApplicationSetupDose => "300a,00a4",
14517             BeamSequence => "300a,00b0",
14518             TreatmentMachineName => "300a,00b2",
14519             PrimaryDosimeterUnit => "300a,00b3",
14520             SourceAxisDistance => "300a,00b4",
14521             BeamLimitingDeviceSequence => "300a,00b6",
14522             RTBeamLimitingDeviceType => "300a,00b8",
14523             SourceToBeamLimitingDeviceDistance => "300a,00ba",
14524             IsocenterToBeamLimitingDeviceDistance => "300a,00bb",
14525             NumberOfLeafJawPairs => "300a,00bc",
14526             LeafPositionBoundaries => "300a,00be",
14527             BeamNumber => "300a,00c0",
14528             BeamName => "300a,00c2",
14529             BeamDescription => "300a,00c3",
14530             BeamType => "300a,00c4",
14531             RadiationType => "300a,00c6",
14532             HighDoseTechniqueType => "300a,00c7",
14533             ReferenceImageNumber => "300a,00c8",
14534             PlannedVerificationImageSequence => "300a,00ca",
14535             ImagingDeviceSpecificAcquisitionParameters => "300a,00cc",
14536             TreatmentDeliveryType => "300a,00ce",
14537             NumberOfWedges => "300a,00d0",
14538             WedgeSequence => "300a,00d1",
14539             WedgeNumber => "300a,00d2",
14540             WedgeType => "300a,00d3",
14541             WedgeID => "300a,00d4",
14542             WedgeAngle => "300a,00d5",
14543             WedgeFactor => "300a,00d6",
14544             TotalWedgeTrayWaterEquivalentThickness => "300a,00d7",
14545             WedgeOrientation => "300a,00d8",
14546             IsocenterToWedgeTrayDistance => "300a,00d9",
14547             SourceToWedgeTrayDistance => "300a,00da",
14548             WedgeThinEdgePosition => "300a,00db",
14549             BolusID => "300a,00dc",
14550             BolusDescription => "300a,00dd",
14551             NumberOfCompensators => "300a,00e0",
14552             MaterialID => "300a,00e1",
14553             TotalCompensatorTrayFactor => "300a,00e2",
14554             CompensatorSequence => "300a,00e3",
14555             CompensatorNumber => "300a,00e4",
14556             CompensatorID => "300a,00e5",
14557             SourceToCompensatorTrayDistance => "300a,00e6",
14558             CompensatorRows => "300a,00e7",
14559             CompensatorColumns => "300a,00e8",
14560             CompensatorPixelSpacing => "300a,00e9",
14561             CompensatorPosition => "300a,00ea",
14562             CompensatorTransmissionData => "300a,00eb",
14563             CompensatorThicknessData => "300a,00ec",
14564             NumberOfBoli => "300a,00ed",
14565             CompensatorType => "300a,00ee",
14566             NumberOfBlocks => "300a,00f0",
14567             TotalBlockTrayFactor => "300a,00f2",
14568             TotalBlockTrayWaterEquivalentThickness => "300a,00f3",
14569             BlockSequence => "300a,00f4",
14570             BlockTrayID => "300a,00f5",
14571             SourceToBlockTrayDistance => "300a,00f6",
14572             IsocenterToBlockTrayDistance => "300a,00f7",
14573             BlockType => "300a,00f8",
14574             AccessoryCode => "300a,00f9",
14575             BlockDivergence => "300a,00fa",
14576             BlockMountingPosition => "300a,00fb",
14577             BlockNumber => "300a,00fc",
14578             BlockName => "300a,00fe",
14579             BlockThickness => "300a,0100",
14580             BlockTransmission => "300a,0102",
14581             BlockNumberOfPoints => "300a,0104",
14582             BlockData => "300a,0106",
14583             ApplicatorSequence => "300a,0107",
14584             ApplicatorID => "300a,0108",
14585             ApplicatorType => "300a,0109",
14586             ApplicatorDescription => "300a,010a",
14587             CumulativeDoseReferenceCoefficient => "300a,010c",
14588             FinalCumulativeMetersetWeight => "300a,010e",
14589             NumberOfControlPoints => "300a,0110",
14590             ControlPointSequence => "300a,0111",
14591             ControlPointIndex => "300a,0112",
14592             NominalBeamEnergy => "300a,0114",
14593             DoseRateSet => "300a,0115",
14594             WedgePositionSequence => "300a,0116",
14595             WedgePosition => "300a,0118",
14596             BeamLimitingDevicePositionSequence => "300a,011a",
14597             LeafJawPositions => "300a,011c",
14598             GantryAngle => "300a,011e",
14599             GantryRotationDirection => "300a,011f",
14600             BeamLimitingDeviceAngle => "300a,0120",
14601             BeamLimitingDeviceRotationDirection => "300a,0121",
14602             PatientSupportAngle => "300a,0122",
14603             PatientSupportRotationDirection => "300a,0123",
14604             TableTopEccentricAxisDistance => "300a,0124",
14605             TableTopEccentricAngle => "300a,0125",
14606             TableTopEccentricRotationDirection => "300a,0126",
14607             TableTopVerticalPosition => "300a,0128",
14608             TableTopLongitudinalPosition => "300a,0129",
14609             TableTopLateralPosition => "300a,012a",
14610             IsocenterPosition => "300a,012c",
14611             SurfaceEntryPoint => "300a,012e",
14612             SourceToSurfaceDistance => "300a,0130",
14613             CumulativeMetersetWeight => "300a,0134",
14614             TableTopPitchAngle => "300a,0140",
14615             TableTopPitchRotationDirection => "300a,0142",
14616             TableTopRollAngle => "300a,0144",
14617             TableTopRollRotationDirection => "300a,0146",
14618             HeadFixationAngle => "300a,0148",
14619             GantryPitchAngle => "300a,014a",
14620             GantryPitchRotationDirection => "300a,014c",
14621             GantryPitchAngleTolerance => "300a,014e",
14622             PatientSetupSequence => "300a,0180",
14623             PatientSetupNumber => "300a,0182",
14624             PatientSetupLabel => "300a,0183",
14625             PatientAdditionalPosition => "300a,0184",
14626             FixationDeviceSequence => "300a,0190",
14627             FixationDeviceType => "300a,0192",
14628             FixationDeviceLabel => "300a,0194",
14629             FixationDeviceDescription => "300a,0196",
14630             FixationDevicePosition => "300a,0198",
14631             FixationDevicePitchAngle => "300a,0199",
14632             FixationDeviceRollAngle => "300a,019a",
14633             ShieldingDeviceSequence => "300a,01a0",
14634             ShieldingDeviceType => "300a,01a2",
14635             ShieldingDeviceLabel => "300a,01a4",
14636             ShieldingDeviceDescription => "300a,01a6",
14637             ShieldingDevicePosition => "300a,01a8",
14638             SetupTechnique => "300a,01b0",
14639             SetupTechniqueDescription => "300a,01b2",
14640             SetupDeviceSequence => "300a,01b4",
14641             SetupDeviceType => "300a,01b6",
14642             SetupDeviceLabel => "300a,01b8",
14643             SetupDeviceDescription => "300a,01ba",
14644             SetupDeviceParameter => "300a,01bc",
14645             SetupReferenceDescription => "300a,01d0",
14646             TableTopVerticalSetupDisplacement => "300a,01d2",
14647             TableTopLongitudinalSetupDisplacement => "300a,01d4",
14648             TableTopLateralSetupDisplacement => "300a,01d6",
14649             BrachyTreatmentTechnique => "300a,0200",
14650             BrachyTreatmentType => "300a,0202",
14651             TreatmentMachineSequence => "300a,0206",
14652             SourceSequence => "300a,0210",
14653             SourceNumber => "300a,0212",
14654             SourceType => "300a,0214",
14655             SourceManufacturer => "300a,0216",
14656             ActiveSourceDiameter => "300a,0218",
14657             ActiveSourceLength => "300a,021a",
14658             SourceEncapsulationNominalThickness => "300a,0222",
14659             SourceEncapsulationNominalTransmission => "300a,0224",
14660             SourceIsotopeName => "300a,0226",
14661             SourceIsotopeHalfLife => "300a,0228",
14662             SourceStrengthUnits => "300a,0229",
14663             ReferenceAirKermaRate => "300a,022a",
14664             SourceStrength => "300a,022b",
14665             SourceStrengthReferenceDate => "300a,022c",
14666             SourceStrengthReferenceTime => "300a,022e",
14667             ApplicationSetupSequence => "300a,0230",
14668             ApplicationSetupType => "300a,0232",
14669             ApplicationSetupNumber => "300a,0234",
14670             ApplicationSetupName => "300a,0236",
14671             ApplicationSetupManufacturer => "300a,0238",
14672             TemplateNumber => "300a,0240",
14673             TemplateType => "300a,0242",
14674             TemplateName => "300a,0244",
14675             TotalReferenceAirKerma => "300a,0250",
14676             BrachyAccessoryDeviceSequence => "300a,0260",
14677             BrachyAccessoryDeviceNumber => "300a,0262",
14678             BrachyAccessoryDeviceID => "300a,0263",
14679             BrachyAccessoryDeviceType => "300a,0264",
14680             BrachyAccessoryDeviceName => "300a,0266",
14681             BrachyAccessoryDeviceNominalThickness => "300a,026a",
14682             BrachyAccessoryDeviceNominalTransmission => "300a,026c",
14683             ChannelSequence => "300a,0280",
14684             ChannelNumber => "300a,0282",
14685             ChannelLength => "300a,0284",
14686             ChannelTotalTime => "300a,0286",
14687             SourceMovementType => "300a,0288",
14688             NumberOfPulses => "300a,028a",
14689             PulseRepetitionInterval => "300a,028c",
14690             SourceApplicatorNumber => "300a,0290",
14691             SourceApplicatorID => "300a,0291",
14692             SourceApplicatorType => "300a,0292",
14693             SourceApplicatorName => "300a,0294",
14694             SourceApplicatorLength => "300a,0296",
14695             SourceApplicatorManufacturer => "300a,0298",
14696             SourceApplicatorWallNominalThickness => "300a,029c",
14697             SourceApplicatorWallNominalTransmission => "300a,029e",
14698             SourceApplicatorStepSize => "300a,02a0",
14699             TransferTubeNumber => "300a,02a2",
14700             TransferTubeLength => "300a,02a4",
14701             ChannelShieldSequence => "300a,02b0",
14702             ChannelShieldNumber => "300a,02b2",
14703             ChannelShieldID => "300a,02b3",
14704             ChannelShieldName => "300a,02b4",
14705             ChannelShieldNominalThickness => "300a,02b8",
14706             ChannelShieldNominalTransmission => "300a,02ba",
14707             FinalCumulativeTimeWeight => "300a,02c8",
14708             BrachyControlPointSequence => "300a,02d0",
14709             ControlPointRelativePosition => "300a,02d2",
14710             ControlPoint3DPosition => "300a,02d4",
14711             CumulativeTimeWeight => "300a,02d6",
14712             CompensatorDivergence => "300a,02e0",
14713             CompensatorMountingPosition => "300a,02e1",
14714             SourceToCompensatorDistance => "300a,02e2",
14715             TotalCompensatorTrayWaterEquivalentThickness => "300a,02e3",
14716             IsocenterToCompensatorTrayDistance => "300a,02e4",
14717             CompensatorColumnOffset => "300a,02e5",
14718             IsocenterToCompensatorDistances => "300a,02e6",
14719             CompensatorRelativeStoppingPowerRatio => "300a,02e7",
14720             CompensatorMillingToolDiameter => "300a,02e8",
14721             IonRangeCompensatorSequence => "300a,02ea",
14722             CompensatorDescription => "300a,02eb",
14723             RadiationMassNumber => "300a,0302",
14724             RadiationAtomicNumber => "300a,0304",
14725             RadiationChargeState => "300a,0306",
14726             ScanMode => "300a,0308",
14727             VirtualSourceAxisDistances => "300a,030a",
14728             SnoutSequence => "300a,030c",
14729             SnoutPosition => "300a,030d",
14730             SnoutID => "300a,030f",
14731             NumberOfRangeShifters => "300a,0312",
14732             RangeShifterSequence => "300a,0314",
14733             RangeShifterNumber => "300a,0316",
14734             RangeShifterID => "300a,0318",
14735             RangeShifterType => "300a,0320",
14736             RangeShifterDescription => "300a,0322",
14737             NumberOfLateralSpreadingDevices => "300a,0330",
14738             LateralSpreadingDeviceSequence => "300a,0332",
14739             LateralSpreadingDeviceNumber => "300a,0334",
14740             LateralSpreadingDeviceID => "300a,0336",
14741             LateralSpreadingDeviceType => "300a,0338",
14742             LateralSpreadingDeviceDescription => "300a,033a",
14743             LateralSpreadingDeviceWaterEquivalentThickness => "300a,033c",
14744             NumberOfRangeModulators => "300a,0340",
14745             RangeModulatorSequence => "300a,0342",
14746             RangeModulatorNumber => "300a,0344",
14747             RangeModulatorID => "300a,0346",
14748             RangeModulatorType => "300a,0348",
14749             RangeModulatorDescription => "300a,034a",
14750             BeamCurrentModulationID => "300a,034c",
14751             PatientSupportType => "300a,0350",
14752             PatientSupportID => "300a,0352",
14753             PatientSupportAccessoryCode => "300a,0354",
14754             FixationLightAzimuthalAngle => "300a,0356",
14755             FixationLightPolarAngle => "300a,0358",
14756             MetersetRate => "300a,035a",
14757             RangeShifterSettingsSequence => "300a,0360",
14758             RangeShifterSetting => "300a,0362",
14759             IsocenterToRangeShifterDistance => "300a,0364",
14760             RangeShifterWaterEquivalentThickness => "300a,0366",
14761             LateralSpreadingDeviceSettingsSequence => "300a,0370",
14762             LateralSpreadingDeviceSetting => "300a,0372",
14763             IsocenterToLateralSpreadingDeviceDistance => "300a,0374",
14764             RangeModulatorSettingsSequence => "300a,0380",
14765             RangeModulatorGatingStartValue => "300a,0382",
14766             RangeModulatorGatingStopValue => "300a,0384",
14767             RangeModulatorGatingStartWaterEquivalentThickness => "300a,0386",
14768             RangeModulatorGatingStopWaterEquivalentThickness => "300a,0388",
14769             IsocenterToRangeModulatorDistance => "300a,038a",
14770             ScanSpotTuneID => "300a,0390",
14771             NumberOfScanSpotPositions => "300a,0392",
14772             ScanSpotPositionMap => "300a,0394",
14773             ScanSpotMetersetWeights => "300a,0396",
14774             ScanningSpotSize => "300a,0398",
14775             NumberOfPaintings => "300a,039a",
14776             IonToleranceTableSequence => "300a,03a0",
14777             IonBeamSequence => "300a,03a2",
14778             IonBeamLimitingDeviceSequence => "300a,03a4",
14779             IonBlockSequence => "300a,03a6",
14780             IonControlPointSequence => "300a,03a8",
14781             IonWedgeSequence => "300a,03aa",
14782             IonWedgePositionSequence => "300a,03ac",
14783             ReferencedSetupImageSequence => "300a,0401",
14784             SetupImageComment => "300a,0402",
14785             MotionSynchronizationSequence => "300a,0410",
14786             ControlPointOrientation => "300a,0412",
14787             GeneralAccessorySequence => "300a,0420",
14788             GeneralAccessoryID => "300a,0421",
14789             GeneralAccessoryDescription => "300a,0422",
14790             GeneralAccessoryType => "300a,0423",
14791             GeneralAccessoryNumber => "300a,0424",
14792             ReferencedRTPlanSequence => "300c,0002",
14793             ReferencedBeamSequence => "300c,0004",
14794             ReferencedBeamNumber => "300c,0006",
14795             ReferencedReferenceImageNumber => "300c,0007",
14796             StartCumulativeMetersetWeight => "300c,0008",
14797             EndCumulativeMetersetWeight => "300c,0009",
14798             ReferencedBrachyApplicationSetupSequence => "300c,000a",
14799             ReferencedBrachyApplicationSetupNumber => "300c,000c",
14800             ReferencedSourceNumber => "300c,000e",
14801             ReferencedFractionGroupSequence => "300c,0020",
14802             ReferencedFractionGroupNumber => "300c,0022",
14803             ReferencedVerificationImageSequence => "300c,0040",
14804             ReferencedReferenceImageSequence => "300c,0042",
14805             ReferencedDoseReferenceSequence => "300c,0050",
14806             ReferencedDoseReferenceNumber => "300c,0051",
14807             BrachyReferencedDoseReferenceSequence => "300c,0055",
14808             ReferencedStructureSetSequence => "300c,0060",
14809             ReferencedPatientSetupNumber => "300c,006a",
14810             ReferencedDoseSequence => "300c,0080",
14811             ReferencedToleranceTableNumber => "300c,00a0",
14812             ReferencedBolusSequence => "300c,00b0",
14813             ReferencedWedgeNumber => "300c,00c0",
14814             ReferencedCompensatorNumber => "300c,00d0",
14815             ReferencedBlockNumber => "300c,00e0",
14816             ReferencedControlPointIndex => "300c,00f0",
14817             ReferencedControlPointSequence => "300c,00f2",
14818             ReferencedStartControlPointIndex => "300c,00f4",
14819             ReferencedStopControlPointIndex => "300c,00f6",
14820             ReferencedRangeShifterNumber => "300c,0100",
14821             ReferencedLateralSpreadingDeviceNumber => "300c,0102",
14822             ReferencedRangeModulatorNumber => "300c,0104",
14823             ApprovalStatus => "300e,0002",
14824             ReviewDate => "300e,0004",
14825             ReviewTime => "300e,0005",
14826             ReviewerName => "300e,0008",
14827             Arbitrary => "4000,0010",
14828             TextComments => "4000,4000",
14829             ResultsID => "4008,0040",
14830             ResultsIDIssuer => "4008,0042",
14831             ReferencedInterpretationSequence => "4008,0050",
14832             InterpretationRecordedDate => "4008,0100",
14833             InterpretationRecordedTime => "4008,0101",
14834             InterpretationRecorder => "4008,0102",
14835             ReferenceToRecordedSound => "4008,0103",
14836             InterpretationTranscriptionDate => "4008,0108",
14837             InterpretationTranscriptionTime => "4008,0109",
14838             InterpretationTranscriber => "4008,010a",
14839             InterpretationText => "4008,010b",
14840             InterpretationAuthor => "4008,010c",
14841             InterpretationApproverSequence => "4008,0111",
14842             InterpretationApprovalDate => "4008,0112",
14843             InterpretationApprovalTime => "4008,0113",
14844             PhysicianApprovingInterpretation => "4008,0114",
14845             InterpretationDiagnosisDescription => "4008,0115",
14846             InterpretationDiagnosisCodeSequence => "4008,0117",
14847             ResultsDistributionListSequence => "4008,0118",
14848             DistributionName => "4008,0119",
14849             DistributionAddress => "4008,011a",
14850             InterpretationID => "4008,0200",
14851             InterpretationIDIssuer => "4008,0202",
14852             InterpretationTypeID => "4008,0210",
14853             InterpretationStatusID => "4008,0212",
14854             Impressions => "4008,0300",
14855             ResultsComments => "4008,4000",
14856             MACParametersSequence => "4ffe,0001",
14857             CurveDimensions => "50xx,0005",
14858             NumberOfPoints => "50xx,0010",
14859             TypeOfData => "50xx,0020",
14860             CurveDescription => "50xx,0022",
14861             AxisUnits => "50xx,0030",
14862             AxisLabels => "50xx,0040",
14863             DataValueRepresentation => "50xx,0103",
14864             MinimumCoordinateValue => "50xx,0104",
14865             MaximumCoordinateValue => "50xx,0105",
14866             CurveRange => "50xx,0106",
14867             CurveDataDescriptor => "50xx,0110",
14868             CoordinateStartValue => "50xx,0112",
14869             CoordinateStepValue => "50xx,0114",
14870             CurveActivationLayer => "50xx,1001",
14871             AudioType => "50xx,2000",
14872             AudioSampleFormat => "50xx,2002",
14873             NumberOfChannels => "50xx,2004",
14874             NumberOfSamples => "50xx,2006",
14875             SampleRate => "50xx,2008",
14876             TotalTime => "50xx,200a",
14877             AudioSampleData => "50xx,200c",
14878             AudioComments => "50xx,200e",
14879             CurveLabel => "50xx,2500",
14880             CurveReferencedOverlaySequence => "50xx,2600",
14881             CurveReferencedOverlayGroup => "50xx,2610",
14882             CurveData => "50xx,3000",
14883             SharedFunctionalGroupsSequence => "5200,9229",
14884             PerFrameFunctionalGroupsSequence => "5200,9230",
14885             WaveformSequence => "5400,0100",
14886             ChannelMinimumValue => "5400,0110",
14887             ChannelMaximumValue => "5400,0112",
14888             WaveformBitsAllocated => "5400,1004",
14889             WaveformSampleInterpretation => "5400,1006",
14890             WaveformPaddingValue => "5400,100a",
14891             WaveformData => "5400,1010",
14892             FirstOrderPhaseCorrectionAngle => "5600,0010",
14893             SpectroscopyData => "5600,0020",
14894             OverlayRows => "60xx,0010",
14895             OverlayColumns => "60xx,0011",
14896             OverlayPlanes => "60xx,0012",
14897             NumberOfFramesInOverlay => "60xx,0015",
14898             OverlayDescription => "60xx,0022",
14899             OverlayType => "60xx,0040",
14900             OverlaySubtype => "60xx,0045",
14901             OverlayOrigin => "60xx,0050",
14902             ImageFrameOrigin => "60xx,0051",
14903             OverlayPlaneOrigin => "60xx,0052",
14904             OverlayCompressionCode => "60xx,0060",
14905             OverlayCompressionOriginator => "60xx,0061",
14906             OverlayCompressionLabel => "60xx,0062",
14907             OverlayCompressionDescription => "60xx,0063",
14908             OverlayCompressionStepPointers => "60xx,0066",
14909             OverlayRepeatInterval => "60xx,0068",
14910             OverlayBitsGrouped => "60xx,0069",
14911             OverlayBitsAllocated => "60xx,0100",
14912             OverlayBitPosition => "60xx,0102",
14913             OverlayFormat => "60xx,0110",
14914             OverlayLocation => "60xx,0200",
14915             OverlayCodeLabel => "60xx,0800",
14916             OverlayNumberOfTables => "60xx,0802",
14917             OverlayCodeTableLocation => "60xx,0803",
14918             OverlayBitsForCodeWord => "60xx,0804",
14919             OverlayActivationLayer => "60xx,1001",
14920             OverlayDescriptorGray => "60xx,1100",
14921             OverlayDescriptorRed => "60xx,1101",
14922             OverlayDescriptorGreen => "60xx,1102",
14923             OverlayDescriptorBlue => "60xx,1103",
14924             OverlaysGray => "60xx,1200",
14925             OverlaysRed => "60xx,1201",
14926             OverlaysGreen => "60xx,1202",
14927             OverlaysBlue => "60xx,1203",
14928             ROIArea => "60xx,1301",
14929             ROIMean => "60xx,1302",
14930             ROIStandardDeviation => "60xx,1303",
14931             OverlayLabel => "60xx,1500",
14932             OverlayData => "60xx,3000",
14933             OverlayComments => "60xx,4000",
14934             PixelData => "7fe0,0010",
14935             CoefficientsSDVN => "7fe0,0020",
14936             CoefficientsSDHN => "7fe0,0030",
14937             CoefficientsSDDN => "7fe0,0040",
14938             VariablePixelData => "7fxx,0010",
14939             VariableNextDataGroup => "7fxx,0011",
14940             VariableCoefficientsSDVN => "7fxx,0020",
14941             VariableCoefficientsSDHN => "7fxx,0030",
14942             VariableCoefficientsSDDN => "7fxx,0040",
14943             DigitalSignaturesSequence => "fffa,fffa",
14944             DataSetTrailingPadding => "fffc,fffc",
14945             };
14946              
14947             # get a tag description. Input parameter: Dicom tag ID or name.
14948             sub getTagDesc
14949             {
14950 0     0 1   my $tagID = shift;
14951 0           my $tag = getTag($tagID);
14952 0 0         if(defined $tag)
14953             {
14954 0           return $tag->{desc};
14955             }
14956 0           return "Private";
14957             }
14958              
14959             # get a tag ID. Input parameter: Dicom tag ID or name
14960             sub getTagID
14961             {
14962 0     0 1   my $tagName = shift;
14963 0 0         if(defined $DicomTagNameList->{$tagName})
14964             {
14965 0           return $DicomTagNameList->{$tagName};
14966             }
14967             else
14968             {
14969 0 0         return lc($tagName) if($tagName =~ /^[0-9A-Fa-f]{4},[0-9A-Fa-f]{4}$/);
14970             }
14971 0           return undef;
14972             }
14973              
14974             # get a tag structure. Input parameter: Dicom tag ID or name
14975             sub getTag
14976             {
14977 0     0 1   my $tagID = shift;
14978              
14979 0 0 0       if($tagID !~ /^[0-9A-Fa-f]{4},[0-9A-Fa-f]{4}$/ and defined $DicomTagNameList->{$tagID})
14980             {
14981 0           $tagID = $DicomTagNameList->{$tagID};
14982             }
14983              
14984 0           $tagID = lc($tagID);
14985 0 0         if(defined $DicomTagList->{$tagID})
14986             {
14987 0           return $DicomTagList->{$tagID};
14988             }
14989             else
14990             {
14991 0 0 0       if($tagID =~ /^0020,31/) # (0020,31xx)
    0          
    0          
    0          
    0          
    0          
    0          
14992             {
14993 0           $tagID = "0020,31xx";
14994 0 0         if(defined $DicomTagList->{$tagID})
14995             {
14996 0           return $DicomTagList->{$tagID};
14997             }
14998             }
14999             elsif($tagID =~ /^(0028,04)(.)([0-3])$/) # (0028,04x0), (0028,04x1), (0028,04x2), (0028,04x3)
15000             {
15001 0           $tagID = $1."x".$3;
15002 0 0         if(defined $DicomTagList->{$tagID})
15003             {
15004 0           return $DicomTagList->{$tagID};
15005             }
15006             }
15007             elsif($tagID =~ /^(0028,08)(.)([02-48])$/) # (0028,08x0), (0028,08x2), (0028,08x3), (0028,08x4), (0028,08x8)
15008             {
15009 0           $tagID = $1."x".$3;
15010 0 0         if(defined $DicomTagList->{$tagID})
15011             {
15012 0           return $DicomTagList->{$tagID};
15013             }
15014             }
15015             elsif($tagID =~ /^(50)(.{2})(,.{4})$/ or
15016             $tagID =~ /^(60)(.{2})(,.{4})$/) # (50xx,yyyy) or (60xx,yyyy)
15017             {
15018 0           $tagID = $1."xx".$3;
15019 0 0         if(defined $DicomTagList->{$tagID})
15020             {
15021 0           return $DicomTagList->{$tagID};
15022             }
15023             }
15024             elsif($tagID =~ /^(1000,)(.{3})([0-5])$/) # (1000,xxx[0-5])
15025             {
15026 0           $tagID = $1."xxx".$3;
15027 0 0         if(defined $DicomTagList->{$tagID})
15028             {
15029 0           return $DicomTagList->{$tagID};
15030             }
15031             }
15032             elsif($tagID =~ /^1010,/) # (1010,xxxx)
15033             {
15034 0           $tagID = "1010,xxxx";
15035 0 0         if(defined $DicomTagList->{$tagID})
15036             {
15037 0           return $DicomTagList->{$tagID};
15038             }
15039             }
15040             elsif($tagID =~ /^(7f)(.{2})(,.{4})$/) # (7fxx,0010), (7fxx,0011), (7fxx,0020), (7fxx,0030), (7fxx,0040)
15041             {
15042 0           $tagID = $1."xx".$3;
15043 0 0         if(defined $DicomTagList->{$tagID})
15044             {
15045 0           return $DicomTagList->{$tagID};
15046             }
15047             }
15048              
15049 0           return undef;
15050             }
15051             }
15052              
15053             1;
15054              
15055             __END__