source: gs2-extensions/parallel-building/trunk/src/perllib/cpan/Image/ExifTool/DICOM.pm@ 24626

Last change on this file since 24626 was 24626, checked in by jmt12, 13 years ago

An (almost) complete copy of the perllib directory from a (circa SEP2011) head checkout from Greenstone 2 trunk - in order to try and make merging in this extension a little easier later on (as there have been some major changes to buildcol.pl commited in the main trunk but not in the x64 branch)

File size: 241.5 KB
Line 
1#------------------------------------------------------------------------------
2# File: DICOM.pm
3#
4# Description: Read DICOM and ACR-NEMA medical images
5#
6# Revisions: 2005/11/09 - P. Harvey Created
7# 2009/11/19 - P. Harvey Added private GE tags from ref 4
8# 2009/12/11 - P. Harvey Updated to DICOM 2008 spec
9# 2010/04/08 - P. Harvey Updated to DICOM 2009 spec
10#
11# References: 1) http://medical.nema.org/
12# 2) http://www.sph.sc.edu/comd/rorden/dicom.html
13# 3) http://www.dclunie.com/
14# 4) http://www.gehealthcare.com/usen/interoperability/dicom/docs/2258357r3.pdf
15#------------------------------------------------------------------------------
16
17package Image::ExifTool::DICOM;
18
19use strict;
20use vars qw($VERSION %uid);
21use Image::ExifTool qw(:DataAccess :Utils);
22
23$VERSION = '1.11';
24
25# DICOM VR (Value Representation) format conversions
26my %dicomFormat = (
27 FD => 'double',
28 FL => 'float',
29 OB => 'int8u',
30 OF => 'float',
31 OW => 'int16u',
32 SL => 'int32s',
33 SS => 'int16s',
34 UL => 'int32u',
35 US => 'int16u',
36);
37
38# VR elements with 32-bit length in explicit VR syntax
39my %vr32 = ( OB=>1, OW=>1, OF=>1, SQ=>1, UT=>1, UN=>1 );
40
41# data elements with implicit VR regardless of syntax
42my %implicitVR = (
43 'FFFE,E000' => 1,
44 'FFFE,E00D' => 1,
45 'FFFE,E0DD' => 1,
46);
47
48# DICOM tags
49# Note: "XxxGroupLength" tags are generated automatically if they don't exist
50%Image::ExifTool::DICOM::Main = (
51 GROUPS => { 2 => 'Image' },
52 PROCESS_PROC => 0, # set this to zero to omit tags from lookup (way too many!)
53 NOTES => q{
54 The DICOM format is based on the ACR-NEMA specification, but adds a file
55 header and a number of new tags. ExifTool will extract information from
56 either type of file. The Tag ID's in the following table are the tag group
57 and element numbers in hexadecimal, as given in the DICOM specification (see
58 L<http://medical.nema.org/>). The table below contains tags from the DICOM
59 2009 and earlier specifications plus some vendor-specific private tags.
60 },
61 # file meta information group (names end with VR)
62 '0002,0000' => { VR => 'UL', Name => 'FileMetaInfoGroupLength' },
63 '0002,0001' => { VR => 'OB', Name => 'FileMetaInfoVersion' },
64 '0002,0002' => { VR => 'UI', Name => 'MediaStorageSOPClassUID' },
65 '0002,0003' => { VR => 'UI', Name => 'MediaStorageSOPInstanceUID' },
66 '0002,0010' => { VR => 'UI', Name => 'TransferSyntaxUID' },
67 '0002,0012' => { VR => 'UI', Name => 'ImplementationClassUID' },
68 '0002,0013' => { VR => 'SH', Name => 'ImplementationVersionName' },
69 '0002,0016' => { VR => 'AE', Name => 'SourceApplicationEntityTitle' },
70 '0002,0100' => { VR => 'UI', Name => 'PrivateInformationCreatorUID' },
71 '0002,0102' => { VR => 'OB', Name => 'PrivateInformation' },
72 # directory structuring group
73 '0004,1130' => { VR => 'CS', Name => 'FileSetID' },
74 '0004,1141' => { VR => 'CS', Name => 'FileSetDescriptorFileID' },
75 '0004,1142' => { VR => 'CS', Name => 'SpecificCharacterSetOfFile' },
76 '0004,1200' => { VR => 'UL', Name => 'FirstDirectoryRecordOffset' },
77 '0004,1202' => { VR => 'UL', Name => 'LastDirectoryRecordOffset' },
78 '0004,1212' => { VR => 'US', Name => 'FileSetConsistencyFlag' },
79 '0004,1220' => { VR => 'SQ', Name => 'DirectoryRecordSequence' },
80 '0004,1400' => { VR => 'UL', Name => 'OffsetOfNextDirectoryRecord' },
81 '0004,1410' => { VR => 'US', Name => 'RecordInUseFlag' },
82 '0004,1420' => { VR => 'UL', Name => 'LowerLevelDirectoryEntityOffset' },
83 '0004,1430' => { VR => 'CS', Name => 'DirectoryRecordType' },
84 '0004,1432' => { VR => 'UI', Name => 'PrivateRecordUID' },
85 '0004,1500' => { VR => 'CS', Name => 'ReferencedFileID' },
86 '0004,1504' => { VR => 'UL', Name => 'MRDRDirectoryRecordOffset' },
87 '0004,1510' => { VR => 'UI', Name => 'ReferencedSOPClassUIDInFile' },
88 '0004,1511' => { VR => 'UI', Name => 'ReferencedSOPInstanceUIDInFile' },
89 '0004,1512' => { VR => 'UI', Name => 'ReferencedTransferSyntaxUIDInFile' },
90 '0004,151A' => { VR => 'UI', Name => 'ReferencedRelatedSOPClassUIDInFile' },
91 '0004,1600' => { VR => 'UL', Name => 'NumberOfReferences' },
92 # identifying group
93 '0008,0000' => { VR => 'UL', Name => 'IdentifyingGroupLength' },
94 '0008,0001' => { VR => 'UL', Name => 'LengthToEnd' },
95 '0008,0005' => { VR => 'CS', Name => 'SpecificCharacterSet' },
96 '0008,0006' => { VR => 'SQ', Name => 'LanguageCodeSequence' },
97 '0008,0008' => { VR => 'CS', Name => 'ImageType' },
98 '0008,0010' => { VR => 'CS', Name => 'RecognitionCode' },
99 '0008,0012' => { VR => 'DA', Name => 'InstanceCreationDate' },
100 '0008,0013' => { VR => 'TM', Name => 'InstanceCreationTime' },
101 '0008,0014' => { VR => 'UI', Name => 'InstanceCreatorUID' },
102 '0008,0016' => { VR => 'UI', Name => 'SOPClassUID' },
103 '0008,0018' => { VR => 'UI', Name => 'SOPInstanceUID' },
104 '0008,001A' => { VR => 'UI', Name => 'RelatedGeneralSOPClassUID' },
105 '0008,001B' => { VR => 'UI', Name => 'OriginalSpecializedSOPClassUID' },
106 '0008,0020' => { VR => 'DA', Name => 'StudyDate' },
107 '0008,0021' => { VR => 'DA', Name => 'SeriesDate' },
108 '0008,0022' => { VR => 'DA', Name => 'AcquisitionDate' },
109 '0008,0023' => { VR => 'DA', Name => 'ContentDate' },
110 '0008,0024' => { VR => 'DA', Name => 'OverlayDate' },
111 '0008,0025' => { VR => 'DA', Name => 'CurveDate' },
112 '0008,002A' => { VR => 'DT', Name => 'AcquisitionDateTime' },
113 '0008,0030' => { VR => 'TM', Name => 'StudyTime' },
114 '0008,0031' => { VR => 'TM', Name => 'SeriesTime' },
115 '0008,0032' => { VR => 'TM', Name => 'AcquisitionTime' },
116 '0008,0033' => { VR => 'TM', Name => 'ContentTime' },
117 '0008,0034' => { VR => 'TM', Name => 'OverlayTime' },
118 '0008,0035' => { VR => 'TM', Name => 'CurveTime' },
119 '0008,0040' => { VR => 'US', Name => 'DataSetType' },
120 '0008,0041' => { VR => 'LO', Name => 'DataSetSubtype' },
121 '0008,0042' => { VR => 'CS', Name => 'NuclearMedicineSeriesType' },
122 '0008,0050' => { VR => 'SH', Name => 'AccessionNumber' },
123 '0008,0052' => { VR => 'CS', Name => 'QueryRetrieveLevel' },
124 '0008,0054' => { VR => 'AE', Name => 'RetrieveAETitle' },
125 '0008,0056' => { VR => 'CS', Name => 'InstanceAvailability' },
126 '0008,0058' => { VR => 'UI', Name => 'FailedSOPInstanceUIDList' },
127 '0008,0060' => { VR => 'CS', Name => 'Modality' },
128 '0008,0061' => { VR => 'CS', Name => 'ModalitiesInStudy' },
129 '0008,0062' => { VR => 'UI', Name => 'SOPClassesInStudy' },
130 '0008,0064' => { VR => 'CS', Name => 'ConversionType' },
131 '0008,0068' => { VR => 'CS', Name => 'PresentationIntentType' },
132 '0008,0070' => { VR => 'LO', Name => 'Manufacturer' },
133 '0008,0080' => { VR => 'LO', Name => 'InstitutionName' },
134 '0008,0081' => { VR => 'ST', Name => 'InstitutionAddress' },
135 '0008,0082' => { VR => 'SQ', Name => 'InstitutionCodeSequence' },
136 '0008,0090' => { VR => 'PN', Name => 'ReferringPhysicianName' },
137 '0008,0092' => { VR => 'ST', Name => 'ReferringPhysicianAddress' },
138 '0008,0094' => { VR => 'SH', Name => 'ReferringPhysicianTelephoneNumber' },
139 '0008,0096' => { VR => 'SQ', Name => 'ReferringPhysicianIDSequence' },
140 '0008,0100' => { VR => 'SH', Name => 'CodeValue' },
141 '0008,0102' => { VR => 'SH', Name => 'CodingSchemeDesignator' },
142 '0008,0103' => { VR => 'SH', Name => 'CodingSchemeVersion' },
143 '0008,0104' => { VR => 'LO', Name => 'CodeMeaning' },
144 '0008,0105' => { VR => 'CS', Name => 'MappingResource' },
145 '0008,0106' => { VR => 'DT', Name => 'ContextGroupVersion' },
146 '0008,0107' => { VR => 'DT', Name => 'ContextGroupLocalVersion' },
147 '0008,010B' => { VR => 'CS', Name => 'ContextGroupExtensionFlag' },
148 '0008,010C' => { VR => 'UI', Name => 'CodingSchemeUID' },
149 '0008,010D' => { VR => 'UI', Name => 'ContextGroupExtensionCreatorUID' },
150 '0008,010F' => { VR => 'CS', Name => 'ContextIdentifier' },
151 '0008,0110' => { VR => 'SQ', Name => 'CodingSchemeIDSequence' },
152 '0008,0112' => { VR => 'LO', Name => 'CodingSchemeRegistry' },
153 '0008,0114' => { VR => 'ST', Name => 'CodingSchemeExternalID' },
154 '0008,0115' => { VR => 'ST', Name => 'CodingSchemeName' },
155 '0008,0116' => { VR => 'ST', Name => 'ResponsibleOrganization' },
156 '0008,0117' => { VR => 'UI', Name => 'ContextUID' },
157 '0008,0201' => { VR => 'SH', Name => 'TimezoneOffsetFromUTC' },
158 '0008,1000' => { VR => 'AE', Name => 'NetworkID' },
159 '0008,1010' => { VR => 'SH', Name => 'StationName' },
160 '0008,1030' => { VR => 'LO', Name => 'StudyDescription' },
161 '0008,1032' => { VR => 'SQ', Name => 'ProcedureCodeSequence' },
162 '0008,103E' => { VR => 'LO', Name => 'SeriesDescription' },
163 '0008,1040' => { VR => 'LO', Name => 'InstitutionalDepartmentName' },
164 '0008,1048' => { VR => 'PN', Name => 'PhysiciansOfRecord' },
165 '0008,1049' => { VR => 'SQ', Name => 'PhysiciansOfRecordIDSequence' },
166 '0008,1050' => { VR => 'PN', Name => 'PerformingPhysicianName' },
167 '0008,1052' => { VR => 'SQ', Name => 'PerformingPhysicianIDSequence' },
168 '0008,1060' => { VR => 'PN', Name => 'NameOfPhysicianReadingStudy' },
169 '0008,1062' => { VR => 'SQ', Name => 'PhysicianReadingStudyIDSequence' },
170 '0008,1070' => { VR => 'PN', Name => 'OperatorsName' },
171 '0008,1072' => { VR => 'SQ', Name => 'OperatorIDSequence' },
172 '0008,1080' => { VR => 'LO', Name => 'AdmittingDiagnosesDescription' },
173 '0008,1084' => { VR => 'SQ', Name => 'AdmittingDiagnosesCodeSequence' },
174 '0008,1090' => { VR => 'LO', Name => 'ManufacturersModelName' },
175 '0008,1100' => { VR => 'SQ', Name => 'ReferencedResultsSequence' },
176 '0008,1110' => { VR => 'SQ', Name => 'ReferencedStudySequence' },
177 '0008,1111' => { VR => 'SQ', Name => 'ReferencedProcedureStepSequence' },
178 '0008,1115' => { VR => 'SQ', Name => 'ReferencedSeriesSequence' },
179 '0008,1120' => { VR => 'SQ', Name => 'ReferencedPatientSequence' },
180 '0008,1125' => { VR => 'SQ', Name => 'ReferencedVisitSequence' },
181 '0008,1130' => { VR => 'SQ', Name => 'ReferencedOverlaySequence' },
182 '0008,113A' => { VR => 'SQ', Name => 'ReferencedWaveformSequence' },
183 '0008,1140' => { VR => 'SQ', Name => 'ReferencedImageSequence' },
184 '0008,1145' => { VR => 'SQ', Name => 'ReferencedCurveSequence' },
185 '0008,114A' => { VR => 'SQ', Name => 'ReferencedInstanceSequence' },
186 '0008,1150' => { VR => 'UI', Name => 'ReferencedSOPClassUID' },
187 '0008,1155' => { VR => 'UI', Name => 'ReferencedSOPInstanceUID' },
188 '0008,115A' => { VR => 'UI', Name => 'SOPClassesSupported' },
189 '0008,1160' => { VR => 'IS', Name => 'ReferencedFrameNumber' },
190 '0008,1161' => { VR => 'UL', Name => 'SimpleFrameList' },
191 '0008,1162' => { VR => 'UL', Name => 'CalculatedFrameList' },
192 '0008,1163' => { VR => 'FD', Name => 'TimeRange' },
193 '0008,1164' => { VR => 'SQ', Name => 'FrameExtractionSequence' },
194 '0008,1195' => { VR => 'UI', Name => 'TransactionUID' },
195 '0008,1197' => { VR => 'US', Name => 'FailureReason' },
196 '0008,1198' => { VR => 'SQ', Name => 'FailedSOPSequence' },
197 '0008,1199' => { VR => 'SQ', Name => 'ReferencedSOPSequence' },
198 '0008,1200' => { VR => 'SQ', Name => 'OtherReferencedStudiesSequence' },
199 '0008,1250' => { VR => 'SQ', Name => 'RelatedSeriesSequence' },
200 '0008,2110' => { VR => 'CS', Name => 'LossyImageCompression' },
201 '0008,2111' => { VR => 'ST', Name => 'DerivationDescription' },
202 '0008,2112' => { VR => 'SQ', Name => 'SourceImageSequence' },
203 '0008,2120' => { VR => 'SH', Name => 'StageName' },
204 '0008,2122' => { VR => 'IS', Name => 'StageNumber' },
205 '0008,2124' => { VR => 'IS', Name => 'NumberOfStages' },
206 '0008,2127' => { VR => 'SH', Name => 'ViewName' },
207 '0008,2128' => { VR => 'IS', Name => 'ViewNumber' },
208 '0008,2129' => { VR => 'IS', Name => 'NumberOfEventTimers' },
209 '0008,212A' => { VR => 'IS', Name => 'NumberOfViewsInStage' },
210 '0008,2130' => { VR => 'DS', Name => 'EventElapsedTimes' },
211 '0008,2132' => { VR => 'LO', Name => 'EventTimerNames' },
212 '0008,2133' => { VR => 'SQ', Name => 'EventTimerSequence' },
213 '0008,2134' => { VR => 'FD', Name => 'EventTimeOffset' },
214 '0008,2135' => { VR => 'SQ', Name => 'EventCodeSequence' },
215 '0008,2142' => { VR => 'IS', Name => 'StartTrim' },
216 '0008,2143' => { VR => 'IS', Name => 'StopTrim' },
217 '0008,2144' => { VR => 'IS', Name => 'RecommendedDisplayFrameRate' },
218 '0008,2200' => { VR => 'CS', Name => 'TransducerPosition' },
219 '0008,2204' => { VR => 'CS', Name => 'TransducerOrientation' },
220 '0008,2208' => { VR => 'CS', Name => 'AnatomicStructure' },
221 '0008,2218' => { VR => 'SQ', Name => 'AnatomicRegionSequence' },
222 '0008,2220' => { VR => 'SQ', Name => 'AnatomicRegionModifierSequence' },
223 '0008,2228' => { VR => 'SQ', Name => 'PrimaryAnatomicStructureSequence' },
224 '0008,2229' => { VR => 'SQ', Name => 'AnatomicStructureOrRegionSequence' },
225 '0008,2230' => { VR => 'SQ', Name => 'AnatomicStructureModifierSequence' },
226 '0008,2240' => { VR => 'SQ', Name => 'TransducerPositionSequence' },
227 '0008,2242' => { VR => 'SQ', Name => 'TransducerPositionModifierSequence' },
228 '0008,2244' => { VR => 'SQ', Name => 'TransducerOrientationSequence' },
229 '0008,2246' => { VR => 'SQ', Name => 'TransducerOrientationModifierSeq' },
230 '0008,2253' => { VR => 'SQ', Name => 'AnatomicEntrancePortalCodeSeqTrial' },
231 '0008,2255' => { VR => 'SQ', Name => 'AnatomicApproachDirCodeSeqTrial' },
232 '0008,2256' => { VR => 'ST', Name => 'AnatomicPerspectiveDescrTrial' },
233 '0008,2257' => { VR => 'SQ', Name => 'AnatomicPerspectiveCodeSeqTrial' },
234 '0008,3001' => { VR => 'SQ', Name => 'AlternateRepresentationSequence' },
235 '0008,3010' => { VR => 'UI', Name => 'IrradiationEventUID' },
236 '0008,4000' => { VR => 'LT', Name => 'IdentifyingComments' },
237 '0008,9007' => { VR => 'CS', Name => 'FrameType' },
238 '0008,9092' => { VR => 'SQ', Name => 'ReferencedImageEvidenceSequence' },
239 '0008,9121' => { VR => 'SQ', Name => 'ReferencedRawDataSequence' },
240 '0008,9123' => { VR => 'UI', Name => 'CreatorVersionUID' },
241 '0008,9124' => { VR => 'SQ', Name => 'DerivationImageSequence' },
242 '0008,9154' => { VR => 'SQ', Name => 'SourceImageEvidenceSequence' },
243 '0008,9205' => { VR => 'CS', Name => 'PixelPresentation' },
244 '0008,9206' => { VR => 'CS', Name => 'VolumetricProperties' },
245 '0008,9207' => { VR => 'CS', Name => 'VolumeBasedCalculationTechnique' },
246 '0008,9208' => { VR => 'CS', Name => 'ComplexImageComponent' },
247 '0008,9209' => { VR => 'CS', Name => 'AcquisitionContrast' },
248 '0008,9215' => { VR => 'SQ', Name => 'DerivationCodeSequence' },
249 '0008,9237' => { VR => 'SQ', Name => 'GrayscalePresentationStateSequence' },
250 '0008,9410' => { VR => 'SQ', Name => 'ReferencedOtherPlaneSequence' },
251 '0008,9458' => { VR => 'SQ', Name => 'FrameDisplaySequence' },
252 '0008,9459' => { VR => 'FL', Name => 'RecommendedDisplayFrameRateInFloat' },
253 '0008,9460' => { VR => 'CS', Name => 'SkipFrameRangeFlag' },
254 # GEMS_IDEN_01 (ref 4)
255 '0009,1001' => { VR => 'LO', Name => 'FullFidelity' },
256 '0009,1002' => { VR => 'SH', Name => 'SuiteID' },
257 '0009,1004' => { VR => 'SH', Name => 'ProductID' },
258 '0009,1027' => { VR => 'SL', Name => 'ImageActualDate' },
259 '0009,1030' => { VR => 'SH', Name => 'ServiceID' },
260 '0009,1031' => { VR => 'SH', Name => 'MobileLocationNumber' },
261 '0009,10E3' => { VR => 'UI', Name => 'EquipmentUID' },
262 '0009,10E6' => { VR => 'SH', Name => 'GenesisVersionNow' },
263 '0009,10E7' => { VR => 'UL', Name => 'ExamRecordChecksum' },
264 '0009,10E9' => { VR => 'SL', Name => 'ActualSeriesDataTimeStamp' },
265 # patient group
266 '0010,0000' => { VR => 'UL', Name => 'PatientGroupLength' },
267 '0010,0010' => { VR => 'PN', Name => 'PatientName' },
268 '0010,0020' => { VR => 'LO', Name => 'PatientID' },
269 '0010,0021' => { VR => 'LO', Name => 'IssuerOfPatientID' },
270 '0010,0022' => { VR => 'CS', Name => 'TypeOfPatientID' },
271 '0010,0030' => { VR => 'DA', Name => 'PatientBirthDate' },
272 '0010,0032' => { VR => 'TM', Name => 'PatientBirthTime' },
273 '0010,0040' => { VR => 'CS', Name => 'PatientSex' },
274 '0010,0050' => { VR => 'SQ', Name => 'PatientInsurancePlanCodeSequence' },
275 '0010,0101' => { VR => 'SQ', Name => 'PatientPrimaryLanguageCodeSeq' },
276 '0010,0102' => { VR => 'SQ', Name => 'PatientPrimaryLanguageCodeModSeq' },
277 '0010,1000' => { VR => 'LO', Name => 'OtherPatientIDs' },
278 '0010,1001' => { VR => 'PN', Name => 'OtherPatientNames' },
279 '0010,1002' => { VR => 'SQ', Name => 'OtherPatientIDsSequence' },
280 '0010,1005' => { VR => 'PN', Name => 'PatientBirthName' },
281 '0010,1010' => { VR => 'AS', Name => 'PatientAge' },
282 '0010,1020' => { VR => 'DS', Name => 'PatientSize' },
283 '0010,1030' => { VR => 'DS', Name => 'PatientWeight' },
284 '0010,1040' => { VR => 'LO', Name => 'PatientAddress' },
285 '0010,1050' => { VR => 'LO', Name => 'InsurancePlanIdentification' },
286 '0010,1060' => { VR => 'PN', Name => 'PatientMotherBirthName' },
287 '0010,1080' => { VR => 'LO', Name => 'MilitaryRank' },
288 '0010,1081' => { VR => 'LO', Name => 'BranchOfService' },
289 '0010,1090' => { VR => 'LO', Name => 'MedicalRecordLocator' },
290 '0010,2000' => { VR => 'LO', Name => 'MedicalAlerts' },
291 '0010,2110' => { VR => 'LO', Name => 'Allergies' },
292 '0010,2150' => { VR => 'LO', Name => 'CountryOfResidence' },
293 '0010,2152' => { VR => 'LO', Name => 'RegionOfResidence' },
294 '0010,2154' => { VR => 'SH', Name => 'PatientTelephoneNumbers' },
295 '0010,2160' => { VR => 'SH', Name => 'EthnicGroup' },
296 '0010,2180' => { VR => 'SH', Name => 'Occupation' },
297 '0010,21A0' => { VR => 'CS', Name => 'SmokingStatus' },
298 '0010,21B0' => { VR => 'LT', Name => 'AdditionalPatientHistory' },
299 '0010,21C0' => { VR => 'US', Name => 'PregnancyStatus' },
300 '0010,21D0' => { VR => 'DA', Name => 'LastMenstrualDate' },
301 '0010,21F0' => { VR => 'LO', Name => 'PatientReligiousPreference' },
302 '0010,2201' => { VR => 'LO', Name => 'PatientSpeciesDescription' },
303 '0010,2202' => { VR => 'SQ', Name => 'PatientSpeciesCodeSequence' },
304 '0010,2203' => { VR => 'CS', Name => 'PatientSexNeutered' },
305 '0010,2210' => { VR => 'CS', Name => 'AnatomicalOrientationType' },
306 '0010,2292' => { VR => 'LO', Name => 'PatientBreedDescription' },
307 '0010,2293' => { VR => 'SQ', Name => 'PatientBreedCodeSequence' },
308 '0010,2294' => { VR => 'SQ', Name => 'BreedRegistrationSequence' },
309 '0010,2295' => { VR => 'LO', Name => 'BreedRegistrationNumber' },
310 '0010,2296' => { VR => 'SQ', Name => 'BreedRegistryCodeSequence' },
311 '0010,2297' => { VR => 'PN', Name => 'ResponsiblePerson' },
312 '0010,2298' => { VR => 'CS', Name => 'ResponsiblePersonRole' },
313 '0010,2299' => { VR => 'LO', Name => 'ResponsibleOrganization' },
314 '0010,4000' => { VR => 'LT', Name => 'PatientComments' },
315 '0010,9431' => { VR => 'FL', Name => 'ExaminedBodyThickness' },
316 # GEMS_PATI_01 (ref 4)
317 '0011,1010' => { VR => 'SS', Name => 'PatientStatus' },
318 # clinical trial group
319 '0012,0010' => { VR => 'LO', Name => 'ClinicalTrialSponsorName' },
320 '0012,0020' => { VR => 'LO', Name => 'ClinicalTrialProtocolID' },
321 '0012,0021' => { VR => 'LO', Name => 'ClinicalTrialProtocolName' },
322 '0012,0030' => { VR => 'LO', Name => 'ClinicalTrialSiteID' },
323 '0012,0031' => { VR => 'LO', Name => 'ClinicalTrialSiteName' },
324 '0012,0040' => { VR => 'LO', Name => 'ClinicalTrialSubjectID' },
325 '0012,0042' => { VR => 'LO', Name => 'ClinicalTrialSubjectReadingID' },
326 '0012,0050' => { VR => 'LO', Name => 'ClinicalTrialTimePointID' },
327 '0012,0051' => { VR => 'ST', Name => 'ClinicalTrialTimePointDescription' },
328 '0012,0060' => { VR => 'LO', Name => 'ClinicalTrialCoordinatingCenter' },
329 '0012,0062' => { VR => 'CS', Name => 'PatientIdentityRemoved' },
330 '0012,0063' => { VR => 'LO', Name => 'DeidentificationMethod' },
331 '0012,0064' => { VR => 'SQ', Name => 'DeidentificationMethodCodeSequence' },
332 '0012,0071' => { VR => 'LO', Name => 'ClinicalTrialSeriesID' },
333 '0012,0072' => { VR => 'LO', Name => 'ClinicalTrialSeriesDescription' },
334 '0012,0084' => { VR => 'CS', Name => 'DistributionType' },
335 '0012,0085' => { VR => 'CS', Name => 'ConsentForDistributionFlag' },
336 # acquisition group
337 '0018,0000' => { VR => 'UL', Name => 'AcquisitionGroupLength' },
338 '0018,0010' => { VR => 'LO', Name => 'ContrastBolusAgent' },
339 '0018,0012' => { VR => 'SQ', Name => 'ContrastBolusAgentSequence' },
340 '0018,0014' => { VR => 'SQ', Name => 'ContrastBolusAdministrationRoute' },
341 '0018,0015' => { VR => 'CS', Name => 'BodyPartExamined' },
342 '0018,0020' => { VR => 'CS', Name => 'ScanningSequence' },
343 '0018,0021' => { VR => 'CS', Name => 'SequenceVariant' },
344 '0018,0022' => { VR => 'CS', Name => 'ScanOptions' },
345 '0018,0023' => { VR => 'CS', Name => 'MRAcquisitionType' },
346 '0018,0024' => { VR => 'SH', Name => 'SequenceName' },
347 '0018,0025' => { VR => 'CS', Name => 'AngioFlag' },
348 '0018,0026' => { VR => 'SQ', Name => 'InterventionDrugInformationSeq' },
349 '0018,0027' => { VR => 'TM', Name => 'InterventionDrugStopTime' },
350 '0018,0028' => { VR => 'DS', Name => 'InterventionDrugDose' },
351 '0018,0029' => { VR => 'SQ', Name => 'InterventionDrugSequence' },
352 '0018,002A' => { VR => 'SQ', Name => 'AdditionalDrugSequence' },
353 '0018,0030' => { VR => 'LO', Name => 'Radionuclide' },
354 '0018,0031' => { VR => 'LO', Name => 'Radiopharmaceutical' },
355 '0018,0032' => { VR => 'DS', Name => 'EnergyWindowCenterline' },
356 '0018,0033' => { VR => 'DS', Name => 'EnergyWindowTotalWidth' },
357 '0018,0034' => { VR => 'LO', Name => 'InterventionDrugName' },
358 '0018,0035' => { VR => 'TM', Name => 'InterventionDrugStartTime' },
359 '0018,0036' => { VR => 'SQ', Name => 'InterventionSequence' },
360 '0018,0037' => { VR => 'CS', Name => 'TherapyType' },
361 '0018,0038' => { VR => 'CS', Name => 'InterventionStatus' },
362 '0018,0039' => { VR => 'CS', Name => 'TherapyDescription' },
363 '0018,003A' => { VR => 'ST', Name => 'InterventionDescription' },
364 '0018,0040' => { VR => 'IS', Name => 'CineRate' },
365 '0018,0042' => { VR => 'CS', Name => 'InitialCineRunState' },
366 '0018,0050' => { VR => 'DS', Name => 'SliceThickness' },
367 '0018,0060' => { VR => 'DS', Name => 'KVP' },
368 '0018,0070' => { VR => 'IS', Name => 'CountsAccumulated' },
369 '0018,0071' => { VR => 'CS', Name => 'AcquisitionTerminationCondition' },
370 '0018,0072' => { VR => 'DS', Name => 'EffectiveDuration' },
371 '0018,0073' => { VR => 'CS', Name => 'AcquisitionStartCondition' },
372 '0018,0074' => { VR => 'IS', Name => 'AcquisitionStartConditionData' },
373 '0018,0075' => { VR => 'IS', Name => 'AcquisitionEndConditionData' },
374 '0018,0080' => { VR => 'DS', Name => 'RepetitionTime' },
375 '0018,0081' => { VR => 'DS', Name => 'EchoTime' },
376 '0018,0082' => { VR => 'DS', Name => 'InversionTime' },
377 '0018,0083' => { VR => 'DS', Name => 'NumberOfAverages' },
378 '0018,0084' => { VR => 'DS', Name => 'ImagingFrequency' },
379 '0018,0085' => { VR => 'SH', Name => 'ImagedNucleus' },
380 '0018,0086' => { VR => 'IS', Name => 'EchoNumber' },
381 '0018,0087' => { VR => 'DS', Name => 'MagneticFieldStrength' },
382 '0018,0088' => { VR => 'DS', Name => 'SpacingBetweenSlices' },
383 '0018,0089' => { VR => 'IS', Name => 'NumberOfPhaseEncodingSteps' },
384 '0018,0090' => { VR => 'DS', Name => 'DataCollectionDiameter' },
385 '0018,0091' => { VR => 'IS', Name => 'EchoTrainLength' },
386 '0018,0093' => { VR => 'DS', Name => 'PercentSampling' },
387 '0018,0094' => { VR => 'DS', Name => 'PercentPhaseFieldOfView' },
388 '0018,0095' => { VR => 'DS', Name => 'PixelBandwidth' },
389 '0018,1000' => { VR => 'LO', Name => 'DeviceSerialNumber' },
390 '0018,1002' => { VR => 'UI', Name => 'DeviceUID' },
391 '0018,1003' => { VR => 'LO', Name => 'DeviceID' },
392 '0018,1004' => { VR => 'LO', Name => 'PlateID' },
393 '0018,1005' => { VR => 'LO', Name => 'GeneratorID' },
394 '0018,1006' => { VR => 'LO', Name => 'GridID' },
395 '0018,1007' => { VR => 'LO', Name => 'CassetteID' },
396 '0018,1008' => { VR => 'LO', Name => 'GantryID' },
397 '0018,1010' => { VR => 'LO', Name => 'SecondaryCaptureDeviceID' },
398 '0018,1011' => { VR => 'LO', Name => 'HardcopyCreationDeviceID' },
399 '0018,1012' => { VR => 'DA', Name => 'DateOfSecondaryCapture' },
400 '0018,1014' => { VR => 'TM', Name => 'TimeOfSecondaryCapture' },
401 '0018,1016' => { VR => 'LO', Name => 'SecondaryCaptureDeviceManufacturer' },
402 '0018,1017' => { VR => 'LO', Name => 'HardcopyDeviceManufacturer' },
403 '0018,1018' => { VR => 'LO', Name => 'SecondaryCaptureDeviceModelName' },
404 '0018,1019' => { VR => 'LO', Name => 'SecondaryCaptureDeviceSoftwareVers' },
405 '0018,101A' => { VR => 'LO', Name => 'HardcopyDeviceSoftwareVersion' },
406 '0018,101B' => { VR => 'LO', Name => 'HardcopyDeviceModelName' },
407 '0018,1020' => { VR => 'LO', Name => 'SoftwareVersion' },
408 '0018,1022' => { VR => 'SH', Name => 'VideoImageFormatAcquired' },
409 '0018,1023' => { VR => 'LO', Name => 'DigitalImageFormatAcquired' },
410 '0018,1030' => { VR => 'LO', Name => 'ProtocolName' },
411 '0018,1040' => { VR => 'LO', Name => 'ContrastBolusRoute' },
412 '0018,1041' => { VR => 'DS', Name => 'ContrastBolusVolume' },
413 '0018,1042' => { VR => 'TM', Name => 'ContrastBolusStartTime' },
414 '0018,1043' => { VR => 'TM', Name => 'ContrastBolusStopTime' },
415 '0018,1044' => { VR => 'DS', Name => 'ContrastBolusTotalDose' },
416 '0018,1045' => { VR => 'IS', Name => 'SyringeCounts' },
417 '0018,1046' => { VR => 'DS', Name => 'ContrastFlowRate' },
418 '0018,1047' => { VR => 'DS', Name => 'ContrastFlowDuration' },
419 '0018,1048' => { VR => 'CS', Name => 'ContrastBolusIngredient' },
420 '0018,1049' => { VR => 'DS', Name => 'ContrastBolusConcentration' },
421 '0018,1050' => { VR => 'DS', Name => 'SpatialResolution' },
422 '0018,1060' => { VR => 'DS', Name => 'TriggerTime' },
423 '0018,1061' => { VR => 'LO', Name => 'TriggerSourceOrType' },
424 '0018,1062' => { VR => 'IS', Name => 'NominalInterval' },
425 '0018,1063' => { VR => 'DS', Name => 'FrameTime' },
426 '0018,1064' => { VR => 'LO', Name => 'CardiacFramingType' },
427 '0018,1065' => { VR => 'DS', Name => 'FrameTimeVector' },
428 '0018,1066' => { VR => 'DS', Name => 'FrameDelay' },
429 '0018,1067' => { VR => 'DS', Name => 'ImageTriggerDelay' },
430 '0018,1068' => { VR => 'DS', Name => 'MultiplexGroupTimeOffset' },
431 '0018,1069' => { VR => 'DS', Name => 'TriggerTimeOffset' },
432 '0018,106A' => { VR => 'CS', Name => 'SynchronizationTrigger' },
433 '0018,106C' => { VR => 'US', Name => 'SynchronizationChannel' },
434 '0018,106E' => { VR => 'UL', Name => 'TriggerSamplePosition' },
435 '0018,1070' => { VR => 'LO', Name => 'RadiopharmaceuticalRoute' },
436 '0018,1071' => { VR => 'DS', Name => 'RadiopharmaceuticalVolume' },
437 '0018,1072' => { VR => 'TM', Name => 'RadiopharmaceuticalStartTime' },
438 '0018,1073' => { VR => 'TM', Name => 'RadiopharmaceuticalStopTime' },
439 '0018,1074' => { VR => 'DS', Name => 'RadionuclideTotalDose' },
440 '0018,1075' => { VR => 'DS', Name => 'RadionuclideHalfLife' },
441 '0018,1076' => { VR => 'DS', Name => 'RadionuclidePositronFraction' },
442 '0018,1077' => { VR => 'DS', Name => 'RadiopharmaceuticalSpecActivity' },
443 '0018,1078' => { VR => 'DT', Name => 'RadiopharmaceuticalStartDateTime' },
444 '0018,1079' => { VR => 'DT', Name => 'RadiopharmaceuticalStopDateTime' },
445 '0018,1080' => { VR => 'CS', Name => 'BeatRejectionFlag' },
446 '0018,1081' => { VR => 'IS', Name => 'LowRRValue' },
447 '0018,1082' => { VR => 'IS', Name => 'HighRRValue' },
448 '0018,1083' => { VR => 'IS', Name => 'IntervalsAcquired' },
449 '0018,1084' => { VR => 'IS', Name => 'IntervalsRejected' },
450 '0018,1085' => { VR => 'LO', Name => 'PVCRejection' },
451 '0018,1086' => { VR => 'IS', Name => 'SkipBeats' },
452 '0018,1088' => { VR => 'IS', Name => 'HeartRate' },
453 '0018,1090' => { VR => 'IS', Name => 'CardiacNumberOfImages' },
454 '0018,1094' => { VR => 'IS', Name => 'TriggerWindow' },
455 '0018,1100' => { VR => 'DS', Name => 'ReconstructionDiameter' },
456 '0018,1110' => { VR => 'DS', Name => 'DistanceSourceToDetector' },
457 '0018,1111' => { VR => 'DS', Name => 'DistanceSourceToPatient' },
458 '0018,1114' => { VR => 'DS', Name => 'EstimatedRadiographicMagnification' },
459 '0018,1120' => { VR => 'DS', Name => 'GantryDetectorTilt' },
460 '0018,1121' => { VR => 'DS', Name => 'GantryDetectorSlew' },
461 '0018,1130' => { VR => 'DS', Name => 'TableHeight' },
462 '0018,1131' => { VR => 'DS', Name => 'TableTraverse' },
463 '0018,1134' => { VR => 'CS', Name => 'TableMotion' },
464 '0018,1135' => { VR => 'DS', Name => 'TableVerticalIncrement' },
465 '0018,1136' => { VR => 'DS', Name => 'TableLateralIncrement' },
466 '0018,1137' => { VR => 'DS', Name => 'TableLongitudinalIncrement' },
467 '0018,1138' => { VR => 'DS', Name => 'TableAngle' },
468 '0018,113A' => { VR => 'CS', Name => 'TableType' },
469 '0018,1140' => { VR => 'CS', Name => 'RotationDirection' },
470 '0018,1141' => { VR => 'DS', Name => 'AngularPosition' },
471 '0018,1142' => { VR => 'DS', Name => 'RadialPosition' },
472 '0018,1143' => { VR => 'DS', Name => 'ScanArc' },
473 '0018,1144' => { VR => 'DS', Name => 'AngularStep' },
474 '0018,1145' => { VR => 'DS', Name => 'CenterOfRotationOffset' },
475 '0018,1146' => { VR => 'DS', Name => 'RotationOffset' },
476 '0018,1147' => { VR => 'CS', Name => 'FieldOfViewShape' },
477 '0018,1149' => { VR => 'IS', Name => 'FieldOfViewDimensions' },
478 '0018,1150' => { VR => 'IS', Name => 'ExposureTime' },
479 '0018,1151' => { VR => 'IS', Name => 'XRayTubeCurrent' },
480 '0018,1152' => { VR => 'IS', Name => 'Exposure' },
481 '0018,1153' => { VR => 'IS', Name => 'ExposureInMicroAmpSec' },
482 '0018,1154' => { VR => 'DS', Name => 'AveragePulseWidth' },
483 '0018,1155' => { VR => 'CS', Name => 'RadiationSetting' },
484 '0018,1156' => { VR => 'CS', Name => 'RectificationType' },
485 '0018,115A' => { VR => 'CS', Name => 'RadiationMode' },
486 '0018,115E' => { VR => 'DS', Name => 'ImageAreaDoseProduct' },
487 '0018,1160' => { VR => 'SH', Name => 'FilterType' },
488 '0018,1161' => { VR => 'LO', Name => 'TypeOfFilters' },
489 '0018,1162' => { VR => 'DS', Name => 'IntensifierSize' },
490 '0018,1164' => { VR => 'DS', Name => 'ImagerPixelSpacing' },
491 '0018,1166' => { VR => 'CS', Name => 'Grid' },
492 '0018,1170' => { VR => 'IS', Name => 'GeneratorPower' },
493 '0018,1180' => { VR => 'SH', Name => 'CollimatorGridName' },
494 '0018,1181' => { VR => 'CS', Name => 'CollimatorType' },
495 '0018,1182' => { VR => 'IS', Name => 'FocalDistance' },
496 '0018,1183' => { VR => 'DS', Name => 'XFocusCenter' },
497 '0018,1184' => { VR => 'DS', Name => 'YFocusCenter' },
498 '0018,1190' => { VR => 'DS', Name => 'FocalSpots' },
499 '0018,1191' => { VR => 'CS', Name => 'AnodeTargetMaterial' },
500 '0018,11A0' => { VR => 'DS', Name => 'BodyPartThickness' },
501 '0018,11A2' => { VR => 'DS', Name => 'CompressionForce' },
502 '0018,1200' => { VR => 'DA', Name => 'DateOfLastCalibration' },
503 '0018,1201' => { VR => 'TM', Name => 'TimeOfLastCalibration' },
504 '0018,1210' => { VR => 'SH', Name => 'ConvolutionKernel' },
505 '0018,1240' => { VR => 'IS', Name => 'UpperLowerPixelValues' },
506 '0018,1242' => { VR => 'IS', Name => 'ActualFrameDuration' },
507 '0018,1243' => { VR => 'IS', Name => 'CountRate' },
508 '0018,1244' => { VR => 'US', Name => 'PreferredPlaybackSequencing' },
509 '0018,1250' => { VR => 'SH', Name => 'ReceiveCoilName' },
510 '0018,1251' => { VR => 'SH', Name => 'TransmitCoilName' },
511 '0018,1260' => { VR => 'SH', Name => 'PlateType' },
512 '0018,1261' => { VR => 'LO', Name => 'PhosphorType' },
513 '0018,1300' => { VR => 'DS', Name => 'ScanVelocity' },
514 '0018,1301' => { VR => 'CS', Name => 'WholeBodyTechnique' },
515 '0018,1302' => { VR => 'IS', Name => 'ScanLength' },
516 '0018,1310' => { VR => 'US', Name => 'AcquisitionMatrix' },
517 '0018,1312' => { VR => 'CS', Name => 'InPlanePhaseEncodingDirection' },
518 '0018,1314' => { VR => 'DS', Name => 'FlipAngle' },
519 '0018,1315' => { VR => 'CS', Name => 'VariableFlipAngleFlag' },
520 '0018,1316' => { VR => 'DS', Name => 'SAR' },
521 '0018,1318' => { VR => 'DS', Name => 'DB-Dt' },
522 '0018,1400' => { VR => 'LO', Name => 'AcquisitionDeviceProcessingDescr' },
523 '0018,1401' => { VR => 'LO', Name => 'AcquisitionDeviceProcessingCode' },
524 '0018,1402' => { VR => 'CS', Name => 'CassetteOrientation' },
525 '0018,1403' => { VR => 'CS', Name => 'CassetteSize' },
526 '0018,1404' => { VR => 'US', Name => 'ExposuresOnPlate' },
527 '0018,1405' => { VR => 'IS', Name => 'RelativeXRayExposure' },
528 '0018,1450' => { VR => 'DS', Name => 'ColumnAngulation' },
529 '0018,1460' => { VR => 'DS', Name => 'TomoLayerHeight' },
530 '0018,1470' => { VR => 'DS', Name => 'TomoAngle' },
531 '0018,1480' => { VR => 'DS', Name => 'TomoTime' },
532 '0018,1490' => { VR => 'CS', Name => 'TomoType' },
533 '0018,1491' => { VR => 'CS', Name => 'TomoClass' },
534 '0018,1495' => { VR => 'IS', Name => 'NumberOfTomosynthesisSourceImages' },
535 '0018,1500' => { VR => 'CS', Name => 'PositionerMotion' },
536 '0018,1508' => { VR => 'CS', Name => 'PositionerType' },
537 '0018,1510' => { VR => 'DS', Name => 'PositionerPrimaryAngle' },
538 '0018,1511' => { VR => 'DS', Name => 'PositionerSecondaryAngle' },
539 '0018,1520' => { VR => 'DS', Name => 'PositionerPrimaryAngleIncrement' },
540 '0018,1521' => { VR => 'DS', Name => 'PositionerSecondaryAngleIncrement' },
541 '0018,1530' => { VR => 'DS', Name => 'DetectorPrimaryAngle' },
542 '0018,1531' => { VR => 'DS', Name => 'DetectorSecondaryAngle' },
543 '0018,1600' => { VR => 'CS', Name => 'ShutterShape' },
544 '0018,1602' => { VR => 'IS', Name => 'ShutterLeftVerticalEdge' },
545 '0018,1604' => { VR => 'IS', Name => 'ShutterRightVerticalEdge' },
546 '0018,1606' => { VR => 'IS', Name => 'ShutterUpperHorizontalEdge' },
547 '0018,1608' => { VR => 'IS', Name => 'ShutterLowerHorizontalEdge' },
548 '0018,1610' => { VR => 'IS', Name => 'CenterOfCircularShutter' },
549 '0018,1612' => { VR => 'IS', Name => 'RadiusOfCircularShutter' },
550 '0018,1620' => { VR => 'IS', Name => 'VerticesOfPolygonalShutter' },
551 '0018,1622' => { VR => 'US', Name => 'ShutterPresentationValue' },
552 '0018,1623' => { VR => 'US', Name => 'ShutterOverlayGroup' },
553 '0018,1624' => { VR => 'US', Name => 'ShutterPresentationColorCIELabVal' },
554 '0018,1700' => { VR => 'CS', Name => 'CollimatorShape' },
555 '0018,1702' => { VR => 'IS', Name => 'CollimatorLeftVerticalEdge' },
556 '0018,1704' => { VR => 'IS', Name => 'CollimatorRightVerticalEdge' },
557 '0018,1706' => { VR => 'IS', Name => 'CollimatorUpperHorizontalEdge' },
558 '0018,1708' => { VR => 'IS', Name => 'CollimatorLowerHorizontalEdge' },
559 '0018,1710' => { VR => 'IS', Name => 'CenterOfCircularCollimator' },
560 '0018,1712' => { VR => 'IS', Name => 'RadiusOfCircularCollimator' },
561 '0018,1720' => { VR => 'IS', Name => 'VerticesOfPolygonalCollimator' },
562 '0018,1800' => { VR => 'CS', Name => 'AcquisitionTimeSynchronized' },
563 '0018,1801' => { VR => 'SH', Name => 'TimeSource' },
564 '0018,1802' => { VR => 'CS', Name => 'TimeDistributionProtocol' },
565 '0018,1803' => { VR => 'LO', Name => 'NTPSourceAddress' },
566 '0018,2001' => { VR => 'IS', Name => 'PageNumberVector' },
567 '0018,2002' => { VR => 'SH', Name => 'FrameLabelVector' },
568 '0018,2003' => { VR => 'DS', Name => 'FramePrimaryAngleVector' },
569 '0018,2004' => { VR => 'DS', Name => 'FrameSecondaryAngleVector' },
570 '0018,2005' => { VR => 'DS', Name => 'SliceLocationVector' },
571 '0018,2006' => { VR => 'SH', Name => 'DisplayWindowLabelVector' },
572 '0018,2010' => { VR => 'DS', Name => 'NominalScannedPixelSpacing' },
573 '0018,2020' => { VR => 'CS', Name => 'DigitizingDeviceTransportDirection' },
574 '0018,2030' => { VR => 'DS', Name => 'RotationOfScannedFilm' },
575 '0018,3100' => { VR => 'CS', Name => 'IVUSAcquisition' },
576 '0018,3101' => { VR => 'DS', Name => 'IVUSPullbackRate' },
577 '0018,3102' => { VR => 'DS', Name => 'IVUSGatedRate' },
578 '0018,3103' => { VR => 'IS', Name => 'IVUSPullbackStartFrameNumber' },
579 '0018,3104' => { VR => 'IS', Name => 'IVUSPullbackStopFrameNumber' },
580 '0018,3105' => { VR => 'IS', Name => 'LesionNumber' },
581 '0018,4000' => { VR => 'LT', Name => 'AcquisitionComments' },
582 '0018,5000' => { VR => 'SH', Name => 'OutputPower' },
583 '0018,5010' => { VR => 'LO', Name => 'TransducerData' },
584 '0018,5012' => { VR => 'DS', Name => 'FocusDepth' },
585 '0018,5020' => { VR => 'LO', Name => 'ProcessingFunction' },
586 '0018,5021' => { VR => 'LO', Name => 'PostprocessingFunction' },
587 '0018,5022' => { VR => 'DS', Name => 'MechanicalIndex' },
588 '0018,5024' => { VR => 'DS', Name => 'BoneThermalIndex' },
589 '0018,5026' => { VR => 'DS', Name => 'CranialThermalIndex' },
590 '0018,5027' => { VR => 'DS', Name => 'SoftTissueThermalIndex' },
591 '0018,5028' => { VR => 'DS', Name => 'SoftTissueFocusThermalIndex' },
592 '0018,5029' => { VR => 'DS', Name => 'SoftTissueSurfaceThermalIndex' },
593 '0018,5030' => { VR => 'DS', Name => 'DynamicRange' },
594 '0018,5040' => { VR => 'DS', Name => 'TotalGain' },
595 '0018,5050' => { VR => 'IS', Name => 'DepthOfScanField' },
596 '0018,5100' => { VR => 'CS', Name => 'PatientPosition' },
597 '0018,5101' => { VR => 'CS', Name => 'ViewPosition' },
598 '0018,5104' => { VR => 'SQ', Name => 'ProjectionEponymousNameCodeSeq' },
599 '0018,5210' => { VR => 'DS', Name => 'ImageTransformationMatrix' },
600 '0018,5212' => { VR => 'DS', Name => 'ImageTranslationVector' },
601 '0018,6000' => { VR => 'DS', Name => 'Sensitivity' },
602 '0018,6011' => { VR => 'SQ', Name => 'SequenceOfUltrasoundRegions' },
603 '0018,6012' => { VR => 'US', Name => 'RegionSpatialFormat' },
604 '0018,6014' => { VR => 'US', Name => 'RegionDataType' },
605 '0018,6016' => { VR => 'UL', Name => 'RegionFlags' },
606 '0018,6018' => { VR => 'UL', Name => 'RegionLocationMinX0' },
607 '0018,601A' => { VR => 'UL', Name => 'RegionLocationMinY0' },
608 '0018,601C' => { VR => 'UL', Name => 'RegionLocationMaxX1' },
609 '0018,601E' => { VR => 'UL', Name => 'RegionLocationMaxY1' },
610 '0018,6020' => { VR => 'SL', Name => 'ReferencePixelX0' },
611 '0018,6022' => { VR => 'SL', Name => 'ReferencePixelY0' },
612 '0018,6024' => { VR => 'US', Name => 'PhysicalUnitsXDirection' },
613 '0018,6026' => { VR => 'US', Name => 'PhysicalUnitsYDirection' },
614 '0018,6028' => { VR => 'FD', Name => 'ReferencePixelPhysicalValueX' },
615 '0018,602A' => { VR => 'FD', Name => 'ReferencePixelPhysicalValueY' },
616 '0018,602C' => { VR => 'FD', Name => 'PhysicalDeltaX' },
617 '0018,602E' => { VR => 'FD', Name => 'PhysicalDeltaY' },
618 '0018,6030' => { VR => 'UL', Name => 'TransducerFrequency' },
619 '0018,6031' => { VR => 'CS', Name => 'TransducerType' },
620 '0018,6032' => { VR => 'UL', Name => 'PulseRepetitionFrequency' },
621 '0018,6034' => { VR => 'FD', Name => 'DopplerCorrectionAngle' },
622 '0018,6036' => { VR => 'FD', Name => 'SteeringAngle' },
623 '0018,6038' => { VR => 'UL', Name => 'DopplerSampleVolumeXPosRetired' },
624 '0018,6039' => { VR => 'SL', Name => 'DopplerSampleVolumeXPosition' },
625 '0018,603A' => { VR => 'UL', Name => 'DopplerSampleVolumeYPosRetired' },
626 '0018,603B' => { VR => 'SL', Name => 'DopplerSampleVolumeYPosition' },
627 '0018,603C' => { VR => 'UL', Name => 'TMLinePositionX0Retired' },
628 '0018,603D' => { VR => 'SL', Name => 'TMLinePositionX0' },
629 '0018,603E' => { VR => 'UL', Name => 'TMLinePositionY0Retired' },
630 '0018,603F' => { VR => 'SL', Name => 'TMLinePositionY0' },
631 '0018,6040' => { VR => 'UL', Name => 'TMLinePositionX1Retired' },
632 '0018,6041' => { VR => 'SL', Name => 'TMLinePositionX1' },
633 '0018,6042' => { VR => 'UL', Name => 'TMLinePositionY1Retired' },
634 '0018,6043' => { VR => 'SL', Name => 'TMLinePositionY1' },
635 '0018,6044' => { VR => 'US', Name => 'PixelComponentOrganization' },
636 '0018,6046' => { VR => 'UL', Name => 'PixelComponentMask' },
637 '0018,6048' => { VR => 'UL', Name => 'PixelComponentRangeStart' },
638 '0018,604A' => { VR => 'UL', Name => 'PixelComponentRangeStop' },
639 '0018,604C' => { VR => 'US', Name => 'PixelComponentPhysicalUnits' },
640 '0018,604E' => { VR => 'US', Name => 'PixelComponentDataType' },
641 '0018,6050' => { VR => 'UL', Name => 'NumberOfTableBreakPoints' },
642 '0018,6052' => { VR => 'UL', Name => 'TableOfXBreakPoints' },
643 '0018,6054' => { VR => 'FD', Name => 'TableOfYBreakPoints' },
644 '0018,6056' => { VR => 'UL', Name => 'NumberOfTableEntries' },
645 '0018,6058' => { VR => 'UL', Name => 'TableOfPixelValues' },
646 '0018,605A' => { VR => 'FL', Name => 'TableOfParameterValues' },
647 '0018,6060' => { VR => 'FL', Name => 'RWaveTimeVector' },
648 '0018,7000' => { VR => 'CS', Name => 'DetectorConditionsNominalFlag' },
649 '0018,7001' => { VR => 'DS', Name => 'DetectorTemperature' },
650 '0018,7004' => { VR => 'CS', Name => 'DetectorType' },
651 '0018,7005' => { VR => 'CS', Name => 'DetectorConfiguration' },
652 '0018,7006' => { VR => 'LT', Name => 'DetectorDescription' },
653 '0018,7008' => { VR => 'LT', Name => 'DetectorMode' },
654 '0018,700A' => { VR => 'SH', Name => 'DetectorID' },
655 '0018,700C' => { VR => 'DA', Name => 'DateOfLastDetectorCalibration' },
656 '0018,700E' => { VR => 'TM', Name => 'TimeOfLastDetectorCalibration' },
657 '0018,7010' => { VR => 'IS', Name => 'DetectorExposuresSinceCalibration' },
658 '0018,7011' => { VR => 'IS', Name => 'DetectorExposuresSinceManufactured' },
659 '0018,7012' => { VR => 'DS', Name => 'DetectorTimeSinceLastExposure' },
660 '0018,7014' => { VR => 'DS', Name => 'DetectorActiveTime' },
661 '0018,7016' => { VR => 'DS', Name => 'DetectorActiveOffsetFromExposure' },
662 '0018,701A' => { VR => 'DS', Name => 'DetectorBinning' },
663 '0018,7020' => { VR => 'DS', Name => 'DetectorElementPhysicalSize' },
664 '0018,7022' => { VR => 'DS', Name => 'DetectorElementSpacing' },
665 '0018,7024' => { VR => 'CS', Name => 'DetectorActiveShape' },
666 '0018,7026' => { VR => 'DS', Name => 'DetectorActiveDimensions' },
667 '0018,7028' => { VR => 'DS', Name => 'DetectorActiveOrigin' },
668 '0018,702A' => { VR => 'LO', Name => 'DetectorManufacturerName' },
669 '0018,702B' => { VR => 'LO', Name => 'DetectorManufacturersModelName' },
670 '0018,7030' => { VR => 'DS', Name => 'FieldOfViewOrigin' },
671 '0018,7032' => { VR => 'DS', Name => 'FieldOfViewRotation' },
672 '0018,7034' => { VR => 'CS', Name => 'FieldOfViewHorizontalFlip' },
673 '0018,7040' => { VR => 'LT', Name => 'GridAbsorbingMaterial' },
674 '0018,7041' => { VR => 'LT', Name => 'GridSpacingMaterial' },
675 '0018,7042' => { VR => 'DS', Name => 'GridThickness' },
676 '0018,7044' => { VR => 'DS', Name => 'GridPitch' },
677 '0018,7046' => { VR => 'IS', Name => 'GridAspectRatio' },
678 '0018,7048' => { VR => 'DS', Name => 'GridPeriod' },
679 '0018,704C' => { VR => 'DS', Name => 'GridFocalDistance' },
680 '0018,7050' => { VR => 'CS', Name => 'FilterMaterial' },
681 '0018,7052' => { VR => 'DS', Name => 'FilterThicknessMinimum' },
682 '0018,7054' => { VR => 'DS', Name => 'FilterThicknessMaximum' },
683 '0018,7060' => { VR => 'CS', Name => 'ExposureControlMode' },
684 '0018,7062' => { VR => 'LT', Name => 'ExposureControlModeDescription' },
685 '0018,7064' => { VR => 'CS', Name => 'ExposureStatus' },
686 '0018,7065' => { VR => 'DS', Name => 'PhototimerSetting' },
687 '0018,8150' => { VR => 'DS', Name => 'ExposureTimeInMicroSec' },
688 '0018,8151' => { VR => 'DS', Name => 'XRayTubeCurrentInMicroAmps' },
689 '0018,9004' => { VR => 'CS', Name => 'ContentQualification' },
690 '0018,9005' => { VR => 'SH', Name => 'PulseSequenceName' },
691 '0018,9006' => { VR => 'SQ', Name => 'MRImagingModifierSequence' },
692 '0018,9008' => { VR => 'CS', Name => 'EchoPulseSequence' },
693 '0018,9009' => { VR => 'CS', Name => 'InversionRecovery' },
694 '0018,9010' => { VR => 'CS', Name => 'FlowCompensation' },
695 '0018,9011' => { VR => 'CS', Name => 'MultipleSpinEcho' },
696 '0018,9012' => { VR => 'CS', Name => 'MultiPlanarExcitation' },
697 '0018,9014' => { VR => 'CS', Name => 'PhaseContrast' },
698 '0018,9015' => { VR => 'CS', Name => 'TimeOfFlightContrast' },
699 '0018,9016' => { VR => 'CS', Name => 'Spoiling' },
700 '0018,9017' => { VR => 'CS', Name => 'SteadyStatePulseSequence' },
701 '0018,9018' => { VR => 'CS', Name => 'EchoPlanarPulseSequence' },
702 '0018,9019' => { VR => 'FD', Name => 'TagAngleFirstAxis' },
703 '0018,9020' => { VR => 'CS', Name => 'MagnetizationTransfer' },
704 '0018,9021' => { VR => 'CS', Name => 'T2Preparation' },
705 '0018,9022' => { VR => 'CS', Name => 'BloodSignalNulling' },
706 '0018,9022' => { VR => 'CS', Name => 'BloodSignalNulling' },
707 '0018,9024' => { VR => 'CS', Name => 'SaturationRecovery' },
708 '0018,9025' => { VR => 'CS', Name => 'SpectrallySelectedSuppression' },
709 '0018,9026' => { VR => 'CS', Name => 'SpectrallySelectedExcitation' },
710 '0018,9027' => { VR => 'CS', Name => 'SpatialPresaturation' },
711 '0018,9028' => { VR => 'CS', Name => 'Tagging' },
712 '0018,9029' => { VR => 'CS', Name => 'OversamplingPhase' },
713 '0018,9030' => { VR => 'FD', Name => 'TagSpacingFirstDimension' },
714 '0018,9032' => { VR => 'CS', Name => 'GeometryOfKSpaceTraversal' },
715 '0018,9033' => { VR => 'CS', Name => 'SegmentedKSpaceTraversal' },
716 '0018,9034' => { VR => 'CS', Name => 'RectilinearPhaseEncodeReordering' },
717 '0018,9035' => { VR => 'FD', Name => 'TagThickness' },
718 '0018,9036' => { VR => 'CS', Name => 'PartialFourierDirection' },
719 '0018,9037' => { VR => 'CS', Name => 'CardiacSynchronizationTechnique' },
720 '0018,9041' => { VR => 'LO', Name => 'ReceiveCoilManufacturerName' },
721 '0018,9042' => { VR => 'SQ', Name => 'MRReceiveCoilSequence' },
722 '0018,9043' => { VR => 'CS', Name => 'ReceiveCoilType' },
723 '0018,9044' => { VR => 'CS', Name => 'QuadratureReceiveCoil' },
724 '0018,9045' => { VR => 'SQ', Name => 'MultiCoilDefinitionSequence' },
725 '0018,9046' => { VR => 'LO', Name => 'MultiCoilConfiguration' },
726 '0018,9047' => { VR => 'SH', Name => 'MultiCoilElementName' },
727 '0018,9048' => { VR => 'CS', Name => 'MultiCoilElementUsed' },
728 '0018,9049' => { VR => 'SQ', Name => 'MRTransmitCoilSequence' },
729 '0018,9050' => { VR => 'LO', Name => 'TransmitCoilManufacturerName' },
730 '0018,9051' => { VR => 'CS', Name => 'TransmitCoilType' },
731 '0018,9052' => { VR => 'FD', Name => 'SpectralWidth' },
732 '0018,9053' => { VR => 'FD', Name => 'ChemicalShiftReference' },
733 '0018,9054' => { VR => 'CS', Name => 'VolumeLocalizationTechnique' },
734 '0018,9058' => { VR => 'US', Name => 'MRAcquisitionFrequencyEncodeSteps' },
735 '0018,9059' => { VR => 'CS', Name => 'Decoupling' },
736 '0018,9060' => { VR => 'CS', Name => 'DecoupledNucleus' },
737 '0018,9061' => { VR => 'FD', Name => 'DecouplingFrequency' },
738 '0018,9062' => { VR => 'CS', Name => 'DecouplingMethod' },
739 '0018,9063' => { VR => 'FD', Name => 'DecouplingChemicalShiftReference' },
740 '0018,9064' => { VR => 'CS', Name => 'KSpaceFiltering' },
741 '0018,9065' => { VR => 'CS', Name => 'TimeDomainFiltering' },
742 '0018,9066' => { VR => 'US', Name => 'NumberOfZeroFills' },
743 '0018,9067' => { VR => 'CS', Name => 'BaselineCorrection' },
744 '0018,9069' => { VR => 'FD', Name => 'ParallelReductionFactorInPlane' },
745 '0018,9070' => { VR => 'FD', Name => 'CardiacRRIntervalSpecified' },
746 '0018,9073' => { VR => 'FD', Name => 'AcquisitionDuration' },
747 '0018,9074' => { VR => 'DT', Name => 'FrameAcquisitionDateTime' },
748 '0018,9075' => { VR => 'CS', Name => 'DiffusionDirectionality' },
749 '0018,9076' => { VR => 'SQ', Name => 'DiffusionGradientDirectionSequence' },
750 '0018,9077' => { VR => 'CS', Name => 'ParallelAcquisition' },
751 '0018,9078' => { VR => 'CS', Name => 'ParallelAcquisitionTechnique' },
752 '0018,9079' => { VR => 'FD', Name => 'InversionTimes' },
753 '0018,9080' => { VR => 'ST', Name => 'MetaboliteMapDescription' },
754 '0018,9081' => { VR => 'CS', Name => 'PartialFourier' },
755 '0018,9082' => { VR => 'FD', Name => 'EffectiveEchoTime' },
756 '0018,9083' => { VR => 'SQ', Name => 'MetaboliteMapCodeSequence' },
757 '0018,9084' => { VR => 'SQ', Name => 'ChemicalShiftSequence' },
758 '0018,9085' => { VR => 'CS', Name => 'CardiacSignalSource' },
759 '0018,9087' => { VR => 'FD', Name => 'DiffusionBValue' },
760 '0018,9089' => { VR => 'FD', Name => 'DiffusionGradientOrientation' },
761 '0018,9090' => { VR => 'FD', Name => 'VelocityEncodingDirection' },
762 '0018,9091' => { VR => 'FD', Name => 'VelocityEncodingMinimumValue' },
763 '0018,9093' => { VR => 'US', Name => 'NumberOfKSpaceTrajectories' },
764 '0018,9094' => { VR => 'CS', Name => 'CoverageOfKSpace' },
765 '0018,9095' => { VR => 'UL', Name => 'SpectroscopyAcquisitionPhaseRows' },
766 '0018,9096' => { VR => 'FD', Name => 'ParallelReductFactorInPlaneRetired' },
767 '0018,9098' => { VR => 'FD', Name => 'TransmitterFrequency' },
768 '0018,9100' => { VR => 'CS', Name => 'ResonantNucleus' },
769 '0018,9101' => { VR => 'CS', Name => 'FrequencyCorrection' },
770 '0018,9103' => { VR => 'SQ', Name => 'MRSpectroscopyFOV-GeometrySequence' },
771 '0018,9104' => { VR => 'FD', Name => 'SlabThickness' },
772 '0018,9105' => { VR => 'FD', Name => 'SlabOrientation' },
773 '0018,9106' => { VR => 'FD', Name => 'MidSlabPosition' },
774 '0018,9107' => { VR => 'SQ', Name => 'MRSpatialSaturationSequence' },
775 '0018,9112' => { VR => 'SQ', Name => 'MRTimingAndRelatedParametersSeq' },
776 '0018,9114' => { VR => 'SQ', Name => 'MREchoSequence' },
777 '0018,9115' => { VR => 'SQ', Name => 'MRModifierSequence' },
778 '0018,9117' => { VR => 'SQ', Name => 'MRDiffusionSequence' },
779 '0018,9118' => { VR => 'SQ', Name => 'CardiacTriggerSequence' },
780 '0018,9119' => { VR => 'SQ', Name => 'MRAveragesSequence' },
781 '0018,9125' => { VR => 'SQ', Name => 'MRFOV-GeometrySequence' },
782 '0018,9126' => { VR => 'SQ', Name => 'VolumeLocalizationSequence' },
783 '0018,9127' => { VR => 'UL', Name => 'SpectroscopyAcquisitionDataColumns' },
784 '0018,9147' => { VR => 'CS', Name => 'DiffusionAnisotropyType' },
785 '0018,9151' => { VR => 'DT', Name => 'FrameReferenceDateTime' },
786 '0018,9152' => { VR => 'SQ', Name => 'MRMetaboliteMapSequence' },
787 '0018,9155' => { VR => 'FD', Name => 'ParallelReductionFactorOutOfPlane' },
788 '0018,9159' => { VR => 'UL', Name => 'SpectroscopyOutOfPlanePhaseSteps' },
789 '0018,9166' => { VR => 'CS', Name => 'BulkMotionStatus' },
790 '0018,9168' => { VR => 'FD', Name => 'ParallelReductionFactSecondInPlane' },
791 '0018,9169' => { VR => 'CS', Name => 'CardiacBeatRejectionTechnique' },
792 '0018,9170' => { VR => 'CS', Name => 'RespiratoryMotionCompTechnique' },
793 '0018,9171' => { VR => 'CS', Name => 'RespiratorySignalSource' },
794 '0018,9172' => { VR => 'CS', Name => 'BulkMotionCompensationTechnique' },
795 '0018,9173' => { VR => 'CS', Name => 'BulkMotionSignalSource' },
796 '0018,9174' => { VR => 'CS', Name => 'ApplicableSafetyStandardAgency' },
797 '0018,9175' => { VR => 'LO', Name => 'ApplicableSafetyStandardDescr' },
798 '0018,9176' => { VR => 'SQ', Name => 'OperatingModeSequence' },
799 '0018,9177' => { VR => 'CS', Name => 'OperatingModeType' },
800 '0018,9178' => { VR => 'CS', Name => 'OperatingMode' },
801 '0018,9179' => { VR => 'CS', Name => 'SpecificAbsorptionRateDefinition' },
802 '0018,9180' => { VR => 'CS', Name => 'GradientOutputType' },
803 '0018,9181' => { VR => 'FD', Name => 'SpecificAbsorptionRateValue' },
804 '0018,9182' => { VR => 'FD', Name => 'GradientOutput' },
805 '0018,9183' => { VR => 'CS', Name => 'FlowCompensationDirection' },
806 '0018,9184' => { VR => 'FD', Name => 'TaggingDelay' },
807 '0018,9185' => { VR => 'ST', Name => 'RespiratoryMotionCompTechDescr' },
808 '0018,9186' => { VR => 'SH', Name => 'RespiratorySignalSourceID' },
809 '0018,9195' => { VR => 'FD', Name => 'ChemicalShiftsMinIntegrateLimitHz' },
810 '0018,9196' => { VR => 'FD', Name => 'ChemicalShiftsMaxIntegrateLimitHz' },
811 '0018,9197' => { VR => 'SQ', Name => 'MRVelocityEncodingSequence' },
812 '0018,9198' => { VR => 'CS', Name => 'FirstOrderPhaseCorrection' },
813 '0018,9199' => { VR => 'CS', Name => 'WaterReferencedPhaseCorrection' },
814 '0018,9200' => { VR => 'CS', Name => 'MRSpectroscopyAcquisitionType' },
815 '0018,9214' => { VR => 'CS', Name => 'RespiratoryCyclePosition' },
816 '0018,9217' => { VR => 'FD', Name => 'VelocityEncodingMaximumValue' },
817 '0018,9218' => { VR => 'FD', Name => 'TagSpacingSecondDimension' },
818 '0018,9219' => { VR => 'SS', Name => 'TagAngleSecondAxis' },
819 '0018,9220' => { VR => 'FD', Name => 'FrameAcquisitionDuration' },
820 '0018,9226' => { VR => 'SQ', Name => 'MRImageFrameTypeSequence' },
821 '0018,9227' => { VR => 'SQ', Name => 'MRSpectroscopyFrameTypeSequence' },
822 '0018,9231' => { VR => 'US', Name => 'MRAcqPhaseEncodingStepsInPlane' },
823 '0018,9232' => { VR => 'US', Name => 'MRAcqPhaseEncodingStepsOutOfPlane' },
824 '0018,9234' => { VR => 'UL', Name => 'SpectroscopyAcqPhaseColumns' },
825 '0018,9236' => { VR => 'CS', Name => 'CardiacCyclePosition' },
826 '0018,9239' => { VR => 'SQ', Name => 'SpecificAbsorptionRateSequence' },
827 '0018,9240' => { VR => 'US', Name => 'RFEchoTrainLength' },
828 '0018,9241' => { VR => 'US', Name => 'GradientEchoTrainLength' },
829 '0018,9295' => { VR => 'FD', Name => 'ChemicalShiftsMinIntegrateLimitPPM' },
830 '0018,9296' => { VR => 'FD', Name => 'ChemicalShiftsMaxIntegrateLimitPPM' },
831 '0018,9301' => { VR => 'SQ', Name => 'CTAcquisitionTypeSequence' },
832 '0018,9302' => { VR => 'CS', Name => 'AcquisitionType' },
833 '0018,9303' => { VR => 'FD', Name => 'TubeAngle' },
834 '0018,9304' => { VR => 'SQ', Name => 'CTAcquisitionDetailsSequence' },
835 '0018,9305' => { VR => 'FD', Name => 'RevolutionTime' },
836 '0018,9306' => { VR => 'FD', Name => 'SingleCollimationWidth' },
837 '0018,9307' => { VR => 'FD', Name => 'TotalCollimationWidth' },
838 '0018,9308' => { VR => 'SQ', Name => 'CTTableDynamicsSequence' },
839 '0018,9309' => { VR => 'FD', Name => 'TableSpeed' },
840 '0018,9310' => { VR => 'FD', Name => 'TableFeedPerRotation' },
841 '0018,9311' => { VR => 'FD', Name => 'SpiralPitchFactor' },
842 '0018,9312' => { VR => 'SQ', Name => 'CTGeometrySequence' },
843 '0018,9313' => { VR => 'FD', Name => 'DataCollectionCenterPatient' },
844 '0018,9314' => { VR => 'SQ', Name => 'CTReconstructionSequence' },
845 '0018,9315' => { VR => 'CS', Name => 'ReconstructionAlgorithm' },
846 '0018,9316' => { VR => 'CS', Name => 'ConvolutionKernelGroup' },
847 '0018,9317' => { VR => 'FD', Name => 'ReconstructionFieldOfView' },
848 '0018,9318' => { VR => 'FD', Name => 'ReconstructionTargetCenterPatient' },
849 '0018,9319' => { VR => 'FD', Name => 'ReconstructionAngle' },
850 '0018,9320' => { VR => 'SH', Name => 'ImageFilter' },
851 '0018,9321' => { VR => 'SQ', Name => 'CTExposureSequence' },
852 '0018,9322' => { VR => 'FD', Name => 'ReconstructionPixelSpacing' },
853 '0018,9323' => { VR => 'CS', Name => 'ExposureModulationType' },
854 '0018,9324' => { VR => 'FD', Name => 'EstimatedDoseSaving' },
855 '0018,9325' => { VR => 'SQ', Name => 'CTXRayDetailsSequence' },
856 '0018,9326' => { VR => 'SQ', Name => 'CTPositionSequence' },
857 '0018,9327' => { VR => 'FD', Name => 'TablePosition' },
858 '0018,9328' => { VR => 'FD', Name => 'ExposureTimeInMilliSec' },
859 '0018,9329' => { VR => 'SQ', Name => 'CTImageFrameTypeSequence' },
860 '0018,9330' => { VR => 'FD', Name => 'XRayTubeCurrentInMilliAmps' },
861 '0018,9332' => { VR => 'FD', Name => 'ExposureInMilliAmpSec' },
862 '0018,9333' => { VR => 'CS', Name => 'ConstantVolumeFlag' },
863 '0018,9334' => { VR => 'CS', Name => 'FluoroscopyFlag' },
864 '0018,9335' => { VR => 'FD', Name => 'SourceToDataCollectionCenterDist' },
865 '0018,9337' => { VR => 'US', Name => 'ContrastBolusAgentNumber' },
866 '0018,9338' => { VR => 'SQ', Name => 'ContrastBolusIngredientCodeSeq' },
867 '0018,9340' => { VR => 'SQ', Name => 'ContrastAdministrationProfileSeq' },
868 '0018,9341' => { VR => 'SQ', Name => 'ContrastBolusUsageSequence' },
869 '0018,9342' => { VR => 'CS', Name => 'ContrastBolusAgentAdministered' },
870 '0018,9343' => { VR => 'CS', Name => 'ContrastBolusAgentDetected' },
871 '0018,9344' => { VR => 'CS', Name => 'ContrastBolusAgentPhase' },
872 '0018,9345' => { VR => 'FD', Name => 'CTDIvol' },
873 '0018,9346' => { VR => 'SQ', Name => 'CTDIPhantomTypeCodeSequence' },
874 '0018,9351' => { VR => 'FL', Name => 'CalciumScoringMassFactorPatient' },
875 '0018,9352' => { VR => 'FL', Name => 'CalciumScoringMassFactorDevice' },
876 '0018,9353' => { VR => 'FL', Name => 'EnergyWeightingFactor' },
877 '0018,9360' => { VR => 'SQ', Name => 'CTAdditionalXRaySourceSequence' },
878 '0018,9401' => { VR => 'SQ', Name => 'ProjectionPixelCalibrationSequence' },
879 '0018,9402' => { VR => 'FL', Name => 'DistanceSourceToIsocenter' },
880 '0018,9403' => { VR => 'FL', Name => 'DistanceObjectToTableTop' },
881 '0018,9404' => { VR => 'FL', Name => 'ObjectPixelSpacingInCenterOfBeam' },
882 '0018,9405' => { VR => 'SQ', Name => 'PositionerPositionSequence' },
883 '0018,9406' => { VR => 'SQ', Name => 'TablePositionSequence' },
884 '0018,9407' => { VR => 'SQ', Name => 'CollimatorShapeSequence' },
885 '0018,9412' => { VR => 'SQ', Name => 'XA-XRFFrameCharacteristicsSequence' },
886 '0018,9417' => { VR => 'SQ', Name => 'FrameAcquisitionSequence' },
887 '0018,9420' => { VR => 'CS', Name => 'XRayReceptorType' },
888 '0018,9423' => { VR => 'LO', Name => 'AcquisitionProtocolName' },
889 '0018,9424' => { VR => 'LT', Name => 'AcquisitionProtocolDescription' },
890 '0018,9425' => { VR => 'CS', Name => 'ContrastBolusIngredientOpaque' },
891 '0018,9426' => { VR => 'FL', Name => 'DistanceReceptorPlaneToDetHousing' },
892 '0018,9427' => { VR => 'CS', Name => 'IntensifierActiveShape' },
893 '0018,9428' => { VR => 'FL', Name => 'IntensifierActiveDimensions' },
894 '0018,9429' => { VR => 'FL', Name => 'PhysicalDetectorSize' },
895 '0018,9430' => { VR => 'US', Name => 'PositionOfIsocenterProjection' },
896 '0018,9432' => { VR => 'SQ', Name => 'FieldOfViewSequence' },
897 '0018,9433' => { VR => 'LO', Name => 'FieldOfViewDescription' },
898 '0018,9434' => { VR => 'SQ', Name => 'ExposureControlSensingRegionsSeq' },
899 '0018,9435' => { VR => 'CS', Name => 'ExposureControlSensingRegionShape' },
900 '0018,9436' => { VR => 'SS', Name => 'ExposureControlSensRegionLeftEdge' },
901 '0018,9437' => { VR => 'SS', Name => 'ExposureControlSensRegionRightEdge' },
902 '0018,9440' => { VR => 'SS', Name => 'CenterOfCircExposControlSensRegion' },
903 '0018,9441' => { VR => 'US', Name => 'RadiusOfCircExposControlSensRegion' },
904 '0018,9447' => { VR => 'FL', Name => 'ColumnAngulationPatient' },
905 '0018,9449' => { VR => 'FL', Name => 'BeamAngle' },
906 '0018,9451' => { VR => 'SQ', Name => 'FrameDetectorParametersSequence' },
907 '0018,9452' => { VR => 'FL', Name => 'CalculatedAnatomyThickness' },
908 '0018,9455' => { VR => 'SQ', Name => 'CalibrationSequence' },
909 '0018,9456' => { VR => 'SQ', Name => 'ObjectThicknessSequence' },
910 '0018,9457' => { VR => 'CS', Name => 'PlaneIdentification' },
911 '0018,9461' => { VR => 'FL', Name => 'FieldOfViewDimensionsInFloat' },
912 '0018,9462' => { VR => 'SQ', Name => 'IsocenterReferenceSystemSequence' },
913 '0018,9463' => { VR => 'FL', Name => 'PositionerIsocenterPrimaryAngle' },
914 '0018,9464' => { VR => 'FL', Name => 'PositionerIsocenterSecondaryAngle' },
915 '0018,9465' => { VR => 'FL', Name => 'PositionerIsocenterDetRotAngle' },
916 '0018,9466' => { VR => 'FL', Name => 'TableXPositionToIsocenter' },
917 '0018,9467' => { VR => 'FL', Name => 'TableYPositionToIsocenter' },
918 '0018,9468' => { VR => 'FL', Name => 'TableZPositionToIsocenter' },
919 '0018,9469' => { VR => 'FL', Name => 'TableHorizontalRotationAngle' },
920 '0018,9470' => { VR => 'FL', Name => 'TableHeadTiltAngle' },
921 '0018,9471' => { VR => 'FL', Name => 'TableCradleTiltAngle' },
922 '0018,9472' => { VR => 'SQ', Name => 'FrameDisplayShutterSequence' },
923 '0018,9473' => { VR => 'FL', Name => 'AcquiredImageAreaDoseProduct' },
924 '0018,9474' => { VR => 'CS', Name => 'CArmPositionerTabletopRelationship' },
925 '0018,9476' => { VR => 'SQ', Name => 'XRayGeometrySequence' },
926 '0018,9477' => { VR => 'SQ', Name => 'IrradiationEventIDSequence' },
927 '0018,9504' => { VR => 'SQ', Name => 'XRay3DFrameTypeSequence' },
928 '0018,9506' => { VR => 'SQ', Name => 'ContributingSourcesSequence' },
929 '0018,9507' => { VR => 'SQ', Name => 'XRay3DAcquisitionSequence' },
930 '0018,9508' => { VR => 'FL', Name => 'PrimaryPositionerScanArc' },
931 '0018,9509' => { VR => 'FL', Name => 'SecondaryPositionerScanArc' },
932 '0018,9510' => { VR => 'FL', Name => 'PrimaryPositionerScanStartAngle' },
933 '0018,9511' => { VR => 'FL', Name => 'SecondaryPositionerScanStartAngle' },
934 '0018,9514' => { VR => 'FL', Name => 'PrimaryPositionerIncrement' },
935 '0018,9515' => { VR => 'FL', Name => 'SecondaryPositionerIncrement' },
936 '0018,9516' => { VR => 'DT', Name => 'StartAcquisitionDateTime' },
937 '0018,9517' => { VR => 'DT', Name => 'EndAcquisitionDateTime' },
938 '0018,9524' => { VR => 'LO', Name => 'ApplicationName' },
939 '0018,9525' => { VR => 'LO', Name => 'ApplicationVersion' },
940 '0018,9526' => { VR => 'LO', Name => 'ApplicationManufacturer' },
941 '0018,9527' => { VR => 'CS', Name => 'AlgorithmType' },
942 '0018,9528' => { VR => 'LO', Name => 'AlgorithmDescription' },
943 '0018,9530' => { VR => 'SQ', Name => 'XRay3DReconstructionSequence' },
944 '0018,9531' => { VR => 'LO', Name => 'ReconstructionDescription' },
945 '0018,9538' => { VR => 'SQ', Name => 'PerProjectionAcquisitionSequence' },
946 '0018,9601' => { VR => 'SQ', Name => 'DiffusionBMatrixSequence' },
947 '0018,9602' => { VR => 'FD', Name => 'DiffusionBValueXX' },
948 '0018,9603' => { VR => 'FD', Name => 'DiffusionBValueXY' },
949 '0018,9604' => { VR => 'FD', Name => 'DiffusionBValueXZ' },
950 '0018,9605' => { VR => 'FD', Name => 'DiffusionBValueYY' },
951 '0018,9606' => { VR => 'FD', Name => 'DiffusionBValueYZ' },
952 '0018,9607' => { VR => 'FD', Name => 'DiffusionBValueZZ' },
953 '0018,9701' => { VR => 'DT', Name => 'DecayCorrectionDateTime' },
954 '0018,9715' => { VR => 'FD', Name => 'StartDensityThreshold' },
955 '0018,9722' => { VR => 'FD', Name => 'TerminationTimeThreshold' },
956 '0018,9725' => { VR => 'CS', Name => 'DetectorGeometry' },
957 '0018,9727' => { VR => 'FD', Name => 'AxialDetectorDimension' },
958 '0018,9735' => { VR => 'SQ', Name => 'PETPositionSequence' },
959 '0018,9739' => { VR => 'US', Name => 'NumberOfIterations' },
960 '0018,9740' => { VR => 'US', Name => 'NumberOfSubsets' },
961 '0018,9751' => { VR => 'SQ', Name => 'PETFrameTypeSequence' },
962 '0018,9756' => { VR => 'CS', Name => 'ReconstructionType' },
963 '0018,9758' => { VR => 'CS', Name => 'DecayCorrected' },
964 '0018,9759' => { VR => 'CS', Name => 'AttenuationCorrected' },
965 '0018,9760' => { VR => 'CS', Name => 'ScatterCorrected' },
966 '0018,9761' => { VR => 'CS', Name => 'DeadTimeCorrected' },
967 '0018,9762' => { VR => 'CS', Name => 'GantryMotionCorrected' },
968 '0018,9763' => { VR => 'CS', Name => 'PatientMotionCorrected' },
969 '0018,9765' => { VR => 'CS', Name => 'RandomsCorrected' },
970 '0018,9767' => { VR => 'CS', Name => 'SensitivityCalibrated' },
971 '0018,9801' => { VR => 'FD', Name => 'DepthsOfFocus' },
972 '0018,9804' => { VR => 'DT', Name => 'ExclusionStartDatetime' },
973 '0018,9805' => { VR => 'FD', Name => 'ExclusionDuration' },
974 '0018,9807' => { VR => 'SQ', Name => 'ImageDataTypeSequence' },
975 '0018,9808' => { VR => 'CS', Name => 'DataType' },
976 '0018,980B' => { VR => 'CS', Name => 'AliasedDataType' },
977 '0018,A001' => { VR => 'SQ', Name => 'ContributingEquipmentSequence' },
978 '0018,A002' => { VR => 'DT', Name => 'ContributionDateTime' },
979 '0018,A003' => { VR => 'ST', Name => 'ContributionDescription' },
980 # GEMS_ACQU_01 (ref 4)
981 '0019,1002' => { VR => 'SL', Name => 'NumberOfCellsIInDetector' },
982 '0019,1003' => { VR => 'DS', Name => 'CellNumberAtTheta' },
983 '0019,1004' => { VR => 'DS', Name => 'CellSpacing' },
984 '0019,100F' => { VR => 'DS', Name => 'HorizFrameOfRef' },
985 '0019,1011' => { VR => 'SS', Name => 'SeriesContrast' },
986 '0019,1012' => { VR => 'SS', Name => 'LastPseq' },
987 '0019,1013' => { VR => 'SS', Name => 'StartNumberForBaseline' },
988 '0019,1014' => { VR => 'SS', Name => 'EndNumberForBaseline' },
989 '0019,1015' => { VR => 'SS', Name => 'StartNumberForEnhancedScans' },
990 '0019,1016' => { VR => 'SS', Name => 'EndNumberForEnhancedScans' },
991 '0019,1017' => { VR => 'SS', Name => 'SeriesPlane' },
992 '0019,1018' => { VR => 'LO', Name => 'FirstScanRas' },
993 '0019,1019' => { VR => 'DS', Name => 'FirstScanLocation' },
994 '0019,101A' => { VR => 'LO', Name => 'LastScanRas' },
995 '0019,101B' => { VR => 'DS', Name => 'LastScanLoc' },
996 '0019,101E' => { VR => 'DS', Name => 'DisplayFieldOfView' },
997 '0019,1023' => { VR => 'DS', Name => 'TableSpeed' },
998 '0019,1024' => { VR => 'DS', Name => 'MidScanTime' },
999 '0019,1025' => { VR => 'SS', Name => 'MidScanFlag' },
1000 '0019,1026' => { VR => 'SL', Name => 'DegreesOfAzimuth' },
1001 '0019,1027' => { VR => 'DS', Name => 'GantryPeriod' },
1002 '0019,102A' => { VR => 'DS', Name => 'XRayOnPosition' },
1003 '0019,102B' => { VR => 'DS', Name => 'XRayOffPosition' },
1004 '0019,102C' => { VR => 'SL', Name => 'NumberOfTriggers' },
1005 '0019,102E' => { VR => 'DS', Name => 'AngleOfFirstView' },
1006 '0019,102F' => { VR => 'DS', Name => 'TriggerFrequency' },
1007 '0019,1039' => { VR => 'SS', Name => 'ScanFOVType' },
1008 '0019,1040' => { VR => 'SS', Name => 'StatReconFlag' },
1009 '0019,1041' => { VR => 'SS', Name => 'ComputeType' },
1010 '0019,1042' => { VR => 'SS', Name => 'SegmentNumber' },
1011 '0019,1043' => { VR => 'SS', Name => 'TotalSegmentsRequested' },
1012 '0019,1044' => { VR => 'DS', Name => 'InterscanDelay' },
1013 '0019,1047' => { VR => 'SS', Name => 'ViewCompressionFactor' },
1014 '0019,104A' => { VR => 'SS', Name => 'TotalNoOfRefChannels' },
1015 '0019,104B' => { VR => 'SL', Name => 'DataSizeForScanData' },
1016 '0019,1052' => { VR => 'SS', Name => 'ReconPostProcflag' },
1017 '0019,1057' => { VR => 'SS', Name => 'CTWaterNumber' },
1018 '0019,1058' => { VR => 'SS', Name => 'CTBoneNumber' },
1019 '0019,105A' => { VR => 'FL', Name => 'AcquisitionDuration' },
1020 '0019,105E' => { VR => 'SL', Name => 'NumberOfChannels' },
1021 '0019,105F' => { VR => 'SL', Name => 'IncrementBetweenChannels' },
1022 '0019,1060' => { VR => 'SL', Name => 'StartingView' },
1023 '0019,1061' => { VR => 'SL', Name => 'NumberOfViews' },
1024 '0019,1062' => { VR => 'SL', Name => 'IncrementBetweenViews' },
1025 '0019,106A' => { VR => 'SS', Name => 'DependantOnNoViewsProcessed' },
1026 '0019,106B' => { VR => 'SS', Name => 'FieldOfViewInDetectorCells' },
1027 '0019,1070' => { VR => 'SS', Name => 'ValueOfBackProjectionButton' },
1028 '0019,1071' => { VR => 'SS', Name => 'SetIfFatqEstimatesWereUsed' },
1029 '0019,1072' => { VR => 'DS', Name => 'ZChanAvgOverViews' },
1030 '0019,1073' => { VR => 'DS', Name => 'AvgOfLeftRefChansOverViews' },
1031 '0019,1074' => { VR => 'DS', Name => 'MaxLeftChanOverViews' },
1032 '0019,1075' => { VR => 'DS', Name => 'AvgOfRightRefChansOverViews' },
1033 '0019,1076' => { VR => 'DS', Name => 'MaxRightChanOverViews' },
1034 '0019,107D' => { VR => 'DS', Name => 'SecondEcho' },
1035 '0019,107E' => { VR => 'SS', Name => 'NumberOfEchoes' },
1036 '0019,107F' => { VR => 'DS', Name => 'TableDelta' },
1037 '0019,1081' => { VR => 'SS', Name => 'Contiguous' },
1038 '0019,1084' => { VR => 'DS', Name => 'PeakSAR' },
1039 '0019,1085' => { VR => 'SS', Name => 'MonitorSAR' },
1040 '0019,1087' => { VR => 'DS', Name => 'CardiacRepetitionTime' },
1041 '0019,1088' => { VR => 'SS', Name => 'ImagesPerCardiacCycle' },
1042 '0019,108A' => { VR => 'SS', Name => 'ActualReceiveGainAnalog' },
1043 '0019,108B' => { VR => 'SS', Name => 'ActualReceiveGainDigital' },
1044 '0019,108D' => { VR => 'DS', Name => 'DelayAfterTrigger' },
1045 '0019,108F' => { VR => 'SS', Name => 'Swappf' },
1046 '0019,1090' => { VR => 'SS', Name => 'PauseInterval' },
1047 '0019,1091' => { VR => 'DS', Name => 'PulseTime' },
1048 '0019,1092' => { VR => 'SL', Name => 'SliceOffsetOnFreqAxis' },
1049 '0019,1093' => { VR => 'DS', Name => 'CenterFrequency' },
1050 '0019,1094' => { VR => 'SS', Name => 'TransmitGain' },
1051 '0019,1095' => { VR => 'SS', Name => 'AnalogReceiverGain' },
1052 '0019,1096' => { VR => 'SS', Name => 'DigitalReceiverGain' },
1053 '0019,1097' => { VR => 'SL', Name => 'BitmapDefiningCVs' },
1054 '0019,1098' => { VR => 'SS', Name => 'CenterFreqMethod' },
1055 '0019,109B' => { VR => 'SS', Name => 'PulseSeqMode' },
1056 '0019,109C' => { VR => 'LO', Name => 'PulseSeqName' },
1057 '0019,109D' => { VR => 'DT', Name => 'PulseSeqDate' },
1058 '0019,109E' => { VR => 'LO', Name => 'InternalPulseSeqName' },
1059 '0019,109F' => { VR => 'SS', Name => 'TransmittingCoil' },
1060 '0019,10A0' => { VR => 'SS', Name => 'SurfaceCoilType' },
1061 '0019,10A1' => { VR => 'SS', Name => 'ExtremityCoilFlag' },
1062 '0019,10A2' => { VR => 'SL', Name => 'RawDataRunNumber' },
1063 '0019,10A3' => { VR => 'UL', Name => 'CalibratedFieldStrength' },
1064 '0019,10A4' => { VR => 'SS', Name => 'SATFatWaterBone' },
1065 '0019,10A5' => { VR => 'DS', Name => 'ReceiveBandwidth' },
1066 '0019,10A7' => { VR => 'DS', Name => 'UserData01' },
1067 '0019,10A8' => { VR => 'DS', Name => 'UserData02' },
1068 '0019,10A9' => { VR => 'DS', Name => 'UserData03' },
1069 '0019,10AA' => { VR => 'DS', Name => 'UserData04' },
1070 '0019,10AB' => { VR => 'DS', Name => 'UserData05' },
1071 '0019,10AC' => { VR => 'DS', Name => 'UserData06' },
1072 '0019,10AD' => { VR => 'DS', Name => 'UserData07' },
1073 '0019,10AE' => { VR => 'DS', Name => 'UserData08' },
1074 '0019,10AF' => { VR => 'DS', Name => 'UserData09' },
1075 '0019,10B0' => { VR => 'DS', Name => 'UserData10' },
1076 '0019,10B1' => { VR => 'DS', Name => 'UserData11' },
1077 '0019,10B2' => { VR => 'DS', Name => 'UserData12' },
1078 '0019,10B3' => { VR => 'DS', Name => 'UserData13' },
1079 '0019,10B4' => { VR => 'DS', Name => 'UserData14' },
1080 '0019,10B5' => { VR => 'DS', Name => 'UserData15' },
1081 '0019,10B6' => { VR => 'DS', Name => 'UserData16' },
1082 '0019,10B7' => { VR => 'DS', Name => 'UserData17' },
1083 '0019,10B8' => { VR => 'DS', Name => 'UserData18' },
1084 '0019,10B9' => { VR => 'DS', Name => 'UserData19' },
1085 '0019,10BA' => { VR => 'DS', Name => 'UserData20' },
1086 '0019,10BB' => { VR => 'DS', Name => 'UserData21' },
1087 '0019,10BC' => { VR => 'DS', Name => 'UserData22' },
1088 '0019,10BD' => { VR => 'DS', Name => 'UserData23' },
1089 '0019,10BE' => { VR => 'DS', Name => 'ProjectionAngle' },
1090 '0019,10C0' => { VR => 'SS', Name => 'SaturationPlanes' },
1091 '0019,10C1' => { VR => 'SS', Name => 'SurfaceCoilIntensity' },
1092 '0019,10C2' => { VR => 'SS', Name => 'SATLocationR' },
1093 '0019,10C3' => { VR => 'SS', Name => 'SATLocationL' },
1094 '0019,10C4' => { VR => 'SS', Name => 'SATLocationA' },
1095 '0019,10C5' => { VR => 'SS', Name => 'SATLocationP' },
1096 '0019,10C6' => { VR => 'SS', Name => 'SATLocationH' },
1097 '0019,10C7' => { VR => 'SS', Name => 'SATLocationF' },
1098 '0019,10C8' => { VR => 'SS', Name => 'SATThicknessR-L' },
1099 '0019,10C9' => { VR => 'SS', Name => 'SATThicknessA-P' },
1100 '0019,10CA' => { VR => 'SS', Name => 'SATThicknessH-F' },
1101 '0019,10CB' => { VR => 'SS', Name => 'PrescribedFlowAxis' },
1102 '0019,10CC' => { VR => 'SS', Name => 'VelocityEncoding' },
1103 '0019,10CD' => { VR => 'SS', Name => 'ThicknessDisclaimer' },
1104 '0019,10CE' => { VR => 'SS', Name => 'PrescanType' },
1105 '0019,10CF' => { VR => 'SS', Name => 'PrescanStatus' },
1106 '0019,10D0' => { VR => 'SH', Name => 'RawDataType' },
1107 '0019,10D2' => { VR => 'SS', Name => 'ProjectionAlgorithm' },
1108 '0019,10D3' => { VR => 'SH', Name => 'ProjectionAlgorithm' },
1109 '0019,10D5' => { VR => 'SS', Name => 'FractionalEcho' },
1110 '0019,10D6' => { VR => 'SS', Name => 'PrepPulse' },
1111 '0019,10D7' => { VR => 'SS', Name => 'CardiacPhases' },
1112 '0019,10D8' => { VR => 'SS', Name => 'VariableEchoflag' },
1113 '0019,10D9' => { VR => 'DS', Name => 'ConcatenatedSAT' },
1114 '0019,10DA' => { VR => 'SS', Name => 'ReferenceChannelUsed' },
1115 '0019,10DB' => { VR => 'DS', Name => 'BackProjectorCoefficient' },
1116 '0019,10DC' => { VR => 'SS', Name => 'PrimarySpeedCorrectionUsed' },
1117 '0019,10DD' => { VR => 'SS', Name => 'OverrangeCorrectionUsed' },
1118 '0019,10DE' => { VR => 'DS', Name => 'DynamicZAlphaValue' },
1119 '0019,10DF' => { VR => 'DS', Name => 'UserData' },
1120 '0019,10E0' => { VR => 'DS', Name => 'UserData' },
1121 '0019,10E2' => { VR => 'DS', Name => 'VelocityEncodeScale' },
1122 '0019,10F2' => { VR => 'SS', Name => 'FastPhases' },
1123 '0019,10F9' => { VR => 'DS', Name => 'TransmissionGain' },
1124 # relationship group
1125 '0020,0000' => { VR => 'UL', Name => 'RelationshipGroupLength' },
1126 '0020,000D' => { VR => 'UI', Name => 'StudyInstanceUID' },
1127 '0020,000E' => { VR => 'UI', Name => 'SeriesInstanceUID' },
1128 '0020,0010' => { VR => 'SH', Name => 'StudyID' },
1129 '0020,0011' => { VR => 'IS', Name => 'SeriesNumber' },
1130 '0020,0012' => { VR => 'IS', Name => 'AcquisitionNumber' },
1131 '0020,0013' => { VR => 'IS', Name => 'InstanceNumber' },
1132 '0020,0014' => { VR => 'IS', Name => 'IsotopeNumber' },
1133 '0020,0015' => { VR => 'IS', Name => 'PhaseNumber' },
1134 '0020,0016' => { VR => 'IS', Name => 'IntervalNumber' },
1135 '0020,0017' => { VR => 'IS', Name => 'TimeSlotNumber' },
1136 '0020,0018' => { VR => 'IS', Name => 'AngleNumber' },
1137 '0020,0019' => { VR => 'IS', Name => 'ItemNumber' },
1138 '0020,0020' => { VR => 'CS', Name => 'PatientOrientation' },
1139 '0020,0022' => { VR => 'IS', Name => 'OverlayNumber' },
1140 '0020,0024' => { VR => 'IS', Name => 'CurveNumber' },
1141 '0020,0026' => { VR => 'IS', Name => 'LookupTableNumber' },
1142 '0020,0030' => { VR => 'DS', Name => 'ImagePosition' },
1143 '0020,0032' => { VR => 'DS', Name => 'ImagePositionPatient' },
1144 '0020,0035' => { VR => 'DS', Name => 'ImageOrientation' },
1145 '0020,0037' => { VR => 'DS', Name => 'ImageOrientationPatient' },
1146 '0020,0050' => { VR => 'DS', Name => 'Location' },
1147 '0020,0052' => { VR => 'UI', Name => 'FrameOfReferenceUID' },
1148 '0020,0060' => { VR => 'CS', Name => 'Laterality' },
1149 '0020,0062' => { VR => 'CS', Name => 'ImageLaterality' },
1150 '0020,0070' => { VR => 'LO', Name => 'ImageGeometryType' },
1151 '0020,0080' => { VR => 'CS', Name => 'MaskingImage' },
1152 '0020,0100' => { VR => 'IS', Name => 'TemporalPositionIdentifier' },
1153 '0020,0105' => { VR => 'IS', Name => 'NumberOfTemporalPositions' },
1154 '0020,0110' => { VR => 'DS', Name => 'TemporalResolution' },
1155 '0020,0200' => { VR => 'UI', Name => 'SynchronizationFrameOfReferenceUID' },
1156 '0020,1000' => { VR => 'IS', Name => 'SeriesInStudy' },
1157 '0020,1001' => { VR => 'IS', Name => 'AcquisitionsInSeries' },
1158 '0020,1002' => { VR => 'IS', Name => 'ImagesInAcquisition' },
1159 '0020,1003' => { VR => 'IS', Name => 'ImagesInSeries' },
1160 '0020,1004' => { VR => 'IS', Name => 'AcquisitionsInStudy' },
1161 '0020,1005' => { VR => 'IS', Name => 'ImagesInStudy' },
1162 '0020,1020' => { VR => 'CS', Name => 'Reference' },
1163 '0020,1040' => { VR => 'LO', Name => 'PositionReferenceIndicator' },
1164 '0020,1041' => { VR => 'DS', Name => 'SliceLocation' },
1165 '0020,1070' => { VR => 'IS', Name => 'OtherStudyNumbers' },
1166 '0020,1200' => { VR => 'IS', Name => 'NumberOfPatientRelatedStudies' },
1167 '0020,1202' => { VR => 'IS', Name => 'NumberOfPatientRelatedSeries' },
1168 '0020,1204' => { VR => 'IS', Name => 'NumberOfPatientRelatedInstances' },
1169 '0020,1206' => { VR => 'IS', Name => 'NumberOfStudyRelatedSeries' },
1170 '0020,1208' => { VR => 'IS', Name => 'NumberOfStudyRelatedInstances' },
1171 '0020,1209' => { VR => 'IS', Name => 'NumberOfSeriesRelatedInstances' },
1172 '0020,31xx' => { VR => 'CS', Name => 'SourceImageIDs' },
1173 '0020,3401' => { VR => 'CS', Name => 'ModifyingDeviceID' },
1174 '0020,3402' => { VR => 'CS', Name => 'ModifiedImageID' },
1175 '0020,3403' => { VR => 'DA', Name => 'ModifiedImageDate' },
1176 '0020,3404' => { VR => 'LO', Name => 'ModifyingDeviceManufacturer' },
1177 '0020,3405' => { VR => 'TM', Name => 'ModifiedImageTime' },
1178 '0020,3406' => { VR => 'LO', Name => 'ModifiedImageDescription' },
1179 '0020,4000' => { VR => 'LT', Name => 'ImageComments' },
1180 '0020,5000' => { VR => 'AT', Name => 'OriginalImageIdentification' },
1181 '0020,5002' => { VR => 'CS', Name => 'OriginalImageIdentNomenclature' },
1182 '0020,9056' => { VR => 'SH', Name => 'StackID' },
1183 '0020,9057' => { VR => 'UL', Name => 'InStackPositionNumber' },
1184 '0020,9071' => { VR => 'SQ', Name => 'FrameAnatomySequence' },
1185 '0020,9072' => { VR => 'CS', Name => 'FrameLaterality' },
1186 '0020,9111' => { VR => 'SQ', Name => 'FrameContentSequence' },
1187 '0020,9113' => { VR => 'SQ', Name => 'PlanePositionSequence' },
1188 '0020,9116' => { VR => 'SQ', Name => 'PlaneOrientationSequence' },
1189 '0020,9128' => { VR => 'UL', Name => 'TemporalPositionIndex' },
1190 '0020,9153' => { VR => 'FD', Name => 'TriggerDelayTime' },
1191 '0020,9156' => { VR => 'US', Name => 'FrameAcquisitionNumber' },
1192 '0020,9157' => { VR => 'UL', Name => 'DimensionIndexValues' },
1193 '0020,9158' => { VR => 'LT', Name => 'FrameComments' },
1194 '0020,9161' => { VR => 'UI', Name => 'ConcatenationUID' },
1195 '0020,9162' => { VR => 'US', Name => 'InConcatenationNumber' },
1196 '0020,9163' => { VR => 'US', Name => 'InConcatenationTotalNumber' },
1197 '0020,9164' => { VR => 'UI', Name => 'DimensionOrganizationUID' },
1198 '0020,9165' => { VR => 'AT', Name => 'DimensionIndexPointer' },
1199 '0020,9167' => { VR => 'AT', Name => 'FunctionalGroupPointer' },
1200 '0020,9213' => { VR => 'LO', Name => 'DimensionIndexPrivateCreator' },
1201 '0020,9221' => { VR => 'SQ', Name => 'DimensionOrganizationSequence' },
1202 '0020,9222' => { VR => 'SQ', Name => 'DimensionIndexSequence' },
1203 '0020,9228' => { VR => 'UL', Name => 'ConcatenationFrameOffsetNumber' },
1204 '0020,9238' => { VR => 'LO', Name => 'FunctionalGroupPrivateCreator' },
1205 '0020,9241' => { VR => 'FL', Name => 'NominalPercentageOfCardiacPhase' },
1206 '0020,9245' => { VR => 'FL', Name => 'NominalPercentOfRespiratoryPhase' },
1207 '0020,9246' => { VR => 'FL', Name => 'StartingRespiratoryAmplitude' },
1208 '0020,9247' => { VR => 'CS', Name => 'StartingRespiratoryPhase' },
1209 '0020,9248' => { VR => 'FL', Name => 'EndingRespiratoryAmplitude' },
1210 '0020,9249' => { VR => 'CS', Name => 'EndingRespiratoryPhase' },
1211 '0020,9250' => { VR => 'CS', Name => 'RespiratoryTriggerType' },
1212 '0020,9251' => { VR => 'FD', Name => 'RRIntervalTimeNominal' },
1213 '0020,9252' => { VR => 'FD', Name => 'ActualCardiacTriggerDelayTime' },
1214 '0020,9253' => { VR => 'SQ', Name => 'RespiratorySynchronizationSequence' },
1215 '0020,9254' => { VR => 'FD', Name => 'RespiratoryIntervalTime' },
1216 '0020,9255' => { VR => 'FD', Name => 'NominalRespiratoryTriggerDelayTime' },
1217 '0020,9256' => { VR => 'FD', Name => 'RespiratoryTriggerDelayThreshold' },
1218 '0020,9257' => { VR => 'FD', Name => 'ActualRespiratoryTriggerDelayTime' },
1219 '0020,9301' => { VR => 'FD', Name => 'ImagePositionVolume' },
1220 '0020,9302' => { VR => 'FD', Name => 'ImageOrientationVolume' },
1221 '0020,9308' => { VR => 'FD', Name => 'ApexPosition' },
1222 '0020,9421' => { VR => 'LO', Name => 'DimensionDescriptionLabel' },
1223 '0020,9450' => { VR => 'SQ', Name => 'PatientOrientationInFrameSequence' },
1224 '0020,9453' => { VR => 'LO', Name => 'FrameLabel' },
1225 '0020,9518' => { VR => 'US', Name => 'AcquisitionIndex' },
1226 '0020,9529' => { VR => 'SQ', Name => 'ContributingSOPInstancesRefSeq' },
1227 '0020,9536' => { VR => 'US', Name => 'ReconstructionIndex' },
1228 # GEMS_RELA_01 (ref 4)
1229 '0021,1003' => { VR => 'SS', Name => 'SeriesFromWhichPrescribed' },
1230 '0021,1005' => { VR => 'SH', Name => 'GenesisVersionNow' },
1231 '0021,1005' => { VR => 'SH', Name => 'GenesisVersionNow' },
1232 '0021,1007' => { VR => 'UL', Name => 'SeriesRecordChecksum' },
1233 '0021,1018' => { VR => 'SH', Name => 'GenesisVersionNow' },
1234 '0021,1018' => { VR => 'SH', Name => 'GenesisVersionNow' },
1235 '0021,1019' => { VR => 'UL', Name => 'AcqReconRecordChecksum' },
1236 '0021,1019' => { VR => 'UL', Name => 'AcqreconRecordChecksum' },
1237 '0021,1020' => { VR => 'DS', Name => 'TableStartLocation' },
1238 '0021,1035' => { VR => 'SS', Name => 'SeriesFromWhichPrescribed' },
1239 '0021,1036' => { VR => 'SS', Name => 'ImageFromWhichPrescribed' },
1240 '0021,1037' => { VR => 'SS', Name => 'ScreenFormat' },
1241 '0021,104A' => { VR => 'LO', Name => 'AnatomicalReferenceForScout' },
1242 '0021,104F' => { VR => 'SS', Name => 'LocationsInAcquisition' },
1243 '0021,1050' => { VR => 'SS', Name => 'GraphicallyPrescribed' },
1244 '0021,1051' => { VR => 'DS', Name => 'RotationFromSourceXRot' },
1245 '0021,1052' => { VR => 'DS', Name => 'RotationFromSourceYRot' },
1246 '0021,1053' => { VR => 'DS', Name => 'RotationFromSourceZRot' },
1247 '0021,1054' => { VR => 'SH', Name => 'ImagePosition' },
1248 '0021,1055' => { VR => 'SH', Name => 'ImageOrientation' },
1249 '0021,1056' => { VR => 'SL', Name => 'IntegerSlop' },
1250 '0021,1057' => { VR => 'SL', Name => 'IntegerSlop' },
1251 '0021,1058' => { VR => 'SL', Name => 'IntegerSlop' },
1252 '0021,1059' => { VR => 'SL', Name => 'IntegerSlop' },
1253 '0021,105A' => { VR => 'SL', Name => 'IntegerSlop' },
1254 '0021,105B' => { VR => 'DS', Name => 'FloatSlop' },
1255 '0021,105C' => { VR => 'DS', Name => 'FloatSlop' },
1256 '0021,105D' => { VR => 'DS', Name => 'FloatSlop' },
1257 '0021,105E' => { VR => 'DS', Name => 'FloatSlop' },
1258 '0021,105F' => { VR => 'DS', Name => 'FloatSlop' },
1259 '0021,1081' => { VR => 'DS', Name => 'AutoWindowLevelAlpha' },
1260 '0021,1082' => { VR => 'DS', Name => 'AutoWindowLevelBeta' },
1261 '0021,1083' => { VR => 'DS', Name => 'AutoWindowLevelWindow' },
1262 '0021,1084' => { VR => 'DS', Name => 'ToWindowLevelLevel' },
1263 '0021,1090' => { VR => 'SS', Name => 'TubeFocalSpotPosition' },
1264 '0021,1091' => { VR => 'SS', Name => 'BiopsyPosition' },
1265 '0021,1092' => { VR => 'FL', Name => 'BiopsyTLocation' },
1266 '0021,1093' => { VR => 'FL', Name => 'BiopsyRefLocation' },
1267 # ?
1268 '0022,0001' => { VR => 'US', Name => 'LightPathFilterPassThroughWavelen' },
1269 '0022,0002' => { VR => 'US', Name => 'LightPathFilterPassBand' },
1270 '0022,0003' => { VR => 'US', Name => 'ImagePathFilterPassThroughWavelen' },
1271 '0022,0004' => { VR => 'US', Name => 'ImagePathFilterPassBand' },
1272 '0022,0005' => { VR => 'CS', Name => 'PatientEyeMovementCommanded' },
1273 '0022,0006' => { VR => 'SQ', Name => 'PatientEyeMovementCommandCodeSeq' },
1274 '0022,0007' => { VR => 'FL', Name => 'SphericalLensPower' },
1275 '0022,0008' => { VR => 'FL', Name => 'CylinderLensPower' },
1276 '0022,0009' => { VR => 'FL', Name => 'CylinderAxis' },
1277 '0022,000A' => { VR => 'FL', Name => 'EmmetropicMagnification' },
1278 '0022,000B' => { VR => 'FL', Name => 'IntraOcularPressure' },
1279 '0022,000C' => { VR => 'FL', Name => 'HorizontalFieldOfView' },
1280 '0022,000D' => { VR => 'CS', Name => 'PupilDilated' },
1281 '0022,000E' => { VR => 'FL', Name => 'DegreeOfDilation' },
1282 '0022,0010' => { VR => 'FL', Name => 'StereoBaselineAngle' },
1283 '0022,0011' => { VR => 'FL', Name => 'StereoBaselineDisplacement' },
1284 '0022,0012' => { VR => 'FL', Name => 'StereoHorizontalPixelOffset' },
1285 '0022,0013' => { VR => 'FL', Name => 'StereoVerticalPixelOffset' },
1286 '0022,0014' => { VR => 'FL', Name => 'StereoRotation' },
1287 '0022,0015' => { VR => 'SQ', Name => 'AcquisitionDeviceTypeCodeSequence' },
1288 '0022,0016' => { VR => 'SQ', Name => 'IlluminationTypeCodeSequence' },
1289 '0022,0017' => { VR => 'SQ', Name => 'LightPathFilterTypeStackCodeSeq' },
1290 '0022,0018' => { VR => 'SQ', Name => 'ImagePathFilterTypeStackCodeSeq' },
1291 '0022,0019' => { VR => 'SQ', Name => 'LensesCodeSequence' },
1292 '0022,001A' => { VR => 'SQ', Name => 'ChannelDescriptionCodeSequence' },
1293 '0022,001B' => { VR => 'SQ', Name => 'RefractiveStateSequence' },
1294 '0022,001C' => { VR => 'SQ', Name => 'MydriaticAgentCodeSequence' },
1295 '0022,001D' => { VR => 'SQ', Name => 'RelativeImagePositionCodeSequence' },
1296 '0022,0020' => { VR => 'SQ', Name => 'StereoPairsSequence' },
1297 '0022,0021' => { VR => 'SQ', Name => 'LeftImageSequence' },
1298 '0022,0022' => { VR => 'SQ', Name => 'RightImageSequence' },
1299 '0022,0030' => { VR => 'FL', Name => 'AxialLengthOfTheEye' },
1300 '0022,0031' => { VR => 'SQ', Name => 'OphthalmicFrameLocationSequence' },
1301 '0022,0032' => { VR => 'FL', Name => 'ReferenceCoordinates' },
1302 '0022,0035' => { VR => 'FL', Name => 'DepthSpatialResolution' },
1303 '0022,0036' => { VR => 'FL', Name => 'MaximumDepthDistortion' },
1304 '0022,0037' => { VR => 'FL', Name => 'AlongScanSpatialResolution' },
1305 '0022,0038' => { VR => 'FL', Name => 'MaximumAlongScanDistortion' },
1306 '0022,0039' => { VR => 'CS', Name => 'OphthalmicImageOrientation' },
1307 '0022,0041' => { VR => 'FL', Name => 'DepthOfTransverseImage' },
1308 '0022,0042' => { VR => 'SQ', Name => 'MydriaticAgentConcUnitsSeq' },
1309 '0022,0048' => { VR => 'FL', Name => 'AcrossScanSpatialResolution' },
1310 '0022,0049' => { VR => 'FL', Name => 'MaximumAcrossScanDistortion' },
1311 '0022,004E' => { VR => 'DS', Name => 'MydriaticAgentConcentration' },
1312 '0022,0055' => { VR => 'FL', Name => 'IlluminationWaveLength' },
1313 '0022,0056' => { VR => 'FL', Name => 'IlluminationPower' },
1314 '0022,0057' => { VR => 'FL', Name => 'IlluminationBandwidth' },
1315 '0022,0058' => { VR => 'SQ', Name => 'MydriaticAgentSequence' },
1316 # GEMS_STDY_01 (ref 4)
1317 '0023,1001' => { VR => 'SL', Name => 'NumberOfSeriesInStudy' },
1318 '0023,1002' => { VR => 'SL', Name => 'NumberOfUnarchivedSeries' },
1319 '0023,1010' => { VR => 'SS', Name => 'ReferenceImageField' },
1320 '0023,1050' => { VR => 'SS', Name => 'SummaryImage' },
1321 '0023,1070' => { VR => 'FD', Name => 'StartTimeSecsInFirstAxial' },
1322 '0023,1074' => { VR => 'SL', Name => 'NoofUpdatesToHeader' },
1323 '0023,107D' => { VR => 'SS', Name => 'IndicatesIfStudyHasCompleteInfo' },
1324 '0023,107D' => { VR => 'SS', Name => 'IndicatesIfTheStudyHasCompleteInfo' },
1325 # GEMS_SERS_01 (ref 4)
1326 '0025,1006' => { VR => 'SS', Name => 'LastPulseSequenceUsed' },
1327 '0025,1007' => { VR => 'SL', Name => 'ImagesInSeries' },
1328 '0025,1010' => { VR => 'SL', Name => 'LandmarkCounter' },
1329 '0025,1011' => { VR => 'SS', Name => 'NumberOfAcquisitions' },
1330 '0025,1014' => { VR => 'SL', Name => 'IndicatesNoofUpdatesToHeader' },
1331 '0025,1017' => { VR => 'SL', Name => 'SeriesCompleteFlag' },
1332 '0025,1018' => { VR => 'SL', Name => 'NumberOfImagesArchived' },
1333 '0025,1019' => { VR => 'SL', Name => 'LastImageNumberUsed' },
1334 '0025,101A' => { VR => 'SH', Name => 'PrimaryReceiverSuiteAndHost' },
1335 # GEMS_IMAG_01 (ref 4)
1336 '0027,1006' => { VR => 'SL', Name => 'ImageArchiveFlag' },
1337 '0027,1010' => { VR => 'SS', Name => 'ScoutType' },
1338 '0027,101C' => { VR => 'SL', Name => 'VmaMamp' },
1339 '0027,101D' => { VR => 'SS', Name => 'VmaPhase' },
1340 '0027,101E' => { VR => 'SL', Name => 'VmaMod' },
1341 '0027,101F' => { VR => 'SL', Name => 'VmaClip' },
1342 '0027,1020' => { VR => 'SS', Name => 'SmartScanOnOffFlag' },
1343 '0027,1030' => { VR => 'SH', Name => 'ForeignImageRevision' },
1344 '0027,1031' => { VR => 'SS', Name => 'ImagingMode' },
1345 '0027,1032' => { VR => 'SS', Name => 'PulseSequence' },
1346 '0027,1033' => { VR => 'SL', Name => 'ImagingOptions' },
1347 '0027,1035' => { VR => 'SS', Name => 'PlaneType' },
1348 '0027,1036' => { VR => 'SL', Name => 'ObliquePlane' },
1349 '0027,1040' => { VR => 'SH', Name => 'RASLetterOfImageLocation' },
1350 '0027,1041' => { VR => 'FL', Name => 'ImageLocation' },
1351 '0027,1042' => { VR => 'FL', Name => 'CenterRCoordOfPlaneImage' },
1352 '0027,1043' => { VR => 'FL', Name => 'CenterACoordOfPlaneImage' },
1353 '0027,1044' => { VR => 'FL', Name => 'CenterSCoordOfPlaneImage' },
1354 '0027,1045' => { VR => 'FL', Name => 'NormalRCoord' },
1355 '0027,1046' => { VR => 'FL', Name => 'NormalACoord' },
1356 '0027,1047' => { VR => 'FL', Name => 'NormalSCoord' },
1357 '0027,1048' => { VR => 'FL', Name => 'RCoordOfTopRightCorner' },
1358 '0027,1049' => { VR => 'FL', Name => 'ACoordOfTopRightCorner' },
1359 '0027,104A' => { VR => 'FL', Name => 'SCoordOfTopRightCorner' },
1360 '0027,104B' => { VR => 'FL', Name => 'RCoordOfBottomRightCorner' },
1361 '0027,104C' => { VR => 'FL', Name => 'ACoordOfBottomRightCorner' },
1362 '0027,104D' => { VR => 'FL', Name => 'SCoordOfBottomRightCorner' },
1363 '0027,1050' => { VR => 'FL', Name => 'TableStartLocation' },
1364 '0027,1051' => { VR => 'FL', Name => 'TableEndLocation' },
1365 '0027,1052' => { VR => 'SH', Name => 'RASLetterForSideOfImage' },
1366 '0027,1053' => { VR => 'SH', Name => 'RASLetterForAnteriorPosterior' },
1367 '0027,1054' => { VR => 'SH', Name => 'RASLetterForScoutStartLoc' },
1368 '0027,1055' => { VR => 'SH', Name => 'RASLetterForScoutEndLoc' },
1369 '0027,1060' => { VR => 'FL', Name => 'ImageDimensionX' },
1370 '0027,1061' => { VR => 'FL', Name => 'ImageDimensionY' },
1371 '0027,1062' => { VR => 'FL', Name => 'NumberOfExcitations' },
1372 # image presentation group
1373 '0028,0000' => { VR => 'UL', Name => 'ImagePresentationGroupLength' },
1374 '0028,0002' => { VR => 'US', Name => 'SamplesPerPixel' },
1375 '0028,0003' => { VR => 'US', Name => 'SamplesPerPixelUsed' },
1376 '0028,0004' => { VR => 'CS', Name => 'PhotometricInterpretation' },
1377 '0028,0005' => { VR => 'US', Name => 'ImageDimensions' },
1378 '0028,0006' => { VR => 'US', Name => 'PlanarConfiguration' },
1379 '0028,0008' => { VR => 'IS', Name => 'NumberOfFrames' },
1380 '0028,0009' => { VR => 'AT', Name => 'FrameIncrementPointer' },
1381 '0028,000A' => { VR => 'AT', Name => 'FrameDimensionPointer' },
1382 '0028,0010' => { VR => 'US', Name => 'Rows' },
1383 '0028,0011' => { VR => 'US', Name => 'Columns' },
1384 '0028,0012' => { VR => 'US', Name => 'Planes' },
1385 '0028,0014' => { VR => 'US', Name => 'UltrasoundColorDataPresent' },
1386 '0028,0030' => { VR => 'DS', Name => 'PixelSpacing' },
1387 '0028,0031' => { VR => 'DS', Name => 'ZoomFactor' },
1388 '0028,0032' => { VR => 'DS', Name => 'ZoomCenter' },
1389 '0028,0034' => { VR => 'IS', Name => 'PixelAspectRatio' },
1390 '0028,0040' => { VR => 'CS', Name => 'ImageFormat' },
1391 '0028,0050' => { VR => 'LO', Name => 'ManipulatedImage' },
1392 '0028,0051' => { VR => 'CS', Name => 'CorrectedImage' },
1393 '0028,005F' => { VR => 'LO', Name => 'CompressionRecognitionCode' },
1394 '0028,0060' => { VR => 'CS', Name => 'CompressionCode' },
1395 '0028,0061' => { VR => 'SH', Name => 'CompressionOriginator' },
1396 '0028,0062' => { VR => 'LO', Name => 'CompressionLabel' },
1397 '0028,0063' => { VR => 'SH', Name => 'CompressionDescription' },
1398 '0028,0065' => { VR => 'CS', Name => 'CompressionSequence' },
1399 '0028,0066' => { VR => 'AT', Name => 'CompressionStepPointers' },
1400 '0028,0068' => { VR => 'US', Name => 'RepeatInterval' },
1401 '0028,0069' => { VR => 'US', Name => 'BitsGrouped' },
1402 '0028,0070' => { VR => 'US', Name => 'PerimeterTable' },
1403 '0028,0071' => { VR => 'US', Name => 'PerimeterValue' },
1404 '0028,0080' => { VR => 'US', Name => 'PredictorRows' },
1405 '0028,0081' => { VR => 'US', Name => 'PredictorColumns' },
1406 '0028,0082' => { VR => 'US', Name => 'PredictorConstants' },
1407 '0028,0090' => { VR => 'CS', Name => 'BlockedPixels' },
1408 '0028,0091' => { VR => 'US', Name => 'BlockRows' },
1409 '0028,0092' => { VR => 'US', Name => 'BlockColumns' },
1410 '0028,0093' => { VR => 'US', Name => 'RowOverlap' },
1411 '0028,0094' => { VR => 'US', Name => 'ColumnOverlap' },
1412 '0028,0100' => { VR => 'US', Name => 'BitsAllocated' },
1413 '0028,0101' => { VR => 'US', Name => 'BitsStored' },
1414 '0028,0102' => { VR => 'US', Name => 'HighBit' },
1415 '0028,0103' => { VR => 'US', Name => 'PixelRepresentation', PrintConv => { 0 => 'Unsigned', 1 => 'Signed' } },
1416 '0028,0104' => { VR => 'US', Name => 'SmallestValidPixelValue' },
1417 '0028,0105' => { VR => 'US', Name => 'LargestValidPixelValue' },
1418 '0028,0106' => { VR => 'US', Name => 'SmallestImagePixelValue' },
1419 '0028,0107' => { VR => 'US', Name => 'LargestImagePixelValue' },
1420 '0028,0108' => { VR => 'US', Name => 'SmallestPixelValueInSeries' },
1421 '0028,0109' => { VR => 'US', Name => 'LargestPixelValueInSeries' },
1422 '0028,0110' => { VR => 'US', Name => 'SmallestImagePixelValueInPlane' },
1423 '0028,0111' => { VR => 'US', Name => 'LargestImagePixelValueInPlane' },
1424 '0028,0120' => { VR => 'US', Name => 'PixelPaddingValue' },
1425 '0028,0121' => { VR => 'US', Name => 'PixelPaddingRangeLimit' },
1426 '0028,0200' => { VR => 'US', Name => 'ImageLocation' },
1427 '0028,0300' => { VR => 'CS', Name => 'QualityControlImage' },
1428 '0028,0301' => { VR => 'CS', Name => 'BurnedInAnnotation' },
1429 '0028,0400' => { VR => 'LO', Name => 'TransformLabel' },
1430 '0028,0401' => { VR => 'LO', Name => 'TransformVersionNumber' },
1431 '0028,0402' => { VR => 'US', Name => 'NumberOfTransformSteps' },
1432 '0028,0403' => { VR => 'LO', Name => 'SequenceOfCompressedData' },
1433 '0028,0404' => { VR => 'AT', Name => 'DetailsOfCoefficients' },
1434 '0028,04x2' => { VR => 'LO', Name => 'CoefficientCoding' },
1435 '0028,04x3' => { VR => 'AT', Name => 'CoefficientCodingPointers' },
1436 '0028,0700' => { VR => 'LO', Name => 'DCTLabel' },
1437 '0028,0701' => { VR => 'CS', Name => 'DataBlockDescription' },
1438 '0028,0702' => { VR => 'AT', Name => 'DataBlock' },
1439 '0028,0710' => { VR => 'US', Name => 'NormalizationFactorFormat' },
1440 '0028,0720' => { VR => 'US', Name => 'ZonalMapNumberFormat' },
1441 '0028,0721' => { VR => 'AT', Name => 'ZonalMapLocation' },
1442 '0028,0722' => { VR => 'US', Name => 'ZonalMapFormat' },
1443 '0028,0730' => { VR => 'US', Name => 'AdaptiveMapFormat' },
1444 '0028,0740' => { VR => 'US', Name => 'CodeNumberFormat' },
1445 '0028,08x0' => { VR => 'CS', Name => 'CodeLabel' },
1446 '0028,08x2' => { VR => 'US', Name => 'NumberOfTables' },
1447 '0028,08x3' => { VR => 'AT', Name => 'CodeTableLocation' },
1448 '0028,08x4' => { VR => 'US', Name => 'BitsForCodeWord' },
1449 '0028,08x8' => { VR => 'AT', Name => 'ImageDataLocation' },
1450 '0028,1040' => { VR => 'CS', Name => 'PixelIntensityRelationship' },
1451 '0028,0A02' => { VR => 'CS', Name => 'PixelSpacingCalibrationType' },
1452 '0028,0A04' => { VR => 'LO', Name => 'PixelSpacingCalibrationDescription' },
1453 '0028,1040' => { VR => 'CS', Name => 'PixelIntensityRelationship' },
1454 '0028,1041' => { VR => 'SS', Name => 'PixelIntensityRelationshipSign' },
1455 '0028,1050' => { VR => 'DS', Name => 'WindowCenter' },
1456 '0028,1051' => { VR => 'DS', Name => 'WindowWidth' },
1457 '0028,1052' => { VR => 'DS', Name => 'RescaleIntercept' },
1458 '0028,1053' => { VR => 'DS', Name => 'RescaleSlope' },
1459 '0028,1054' => { VR => 'LO', Name => 'RescaleType' },
1460 '0028,1055' => { VR => 'LO', Name => 'WindowCenterAndWidthExplanation' },
1461 '0028,1056' => { VR => 'CS', Name => 'VOI_LUTFunction' },
1462 '0028,1080' => { VR => 'CS', Name => 'GrayScale' },
1463 '0028,1090' => { VR => 'CS', Name => 'RecommendedViewingMode' },
1464 '0028,1100' => { VR => 'SS', Name => 'GrayLookupTableDescriptor' },
1465 '0028,1101' => { VR => 'SS', Name => 'RedPaletteColorTableDescriptor' },
1466 '0028,1102' => { VR => 'SS', Name => 'GreenPaletteColorTableDescriptor' },
1467 '0028,1103' => { VR => 'SS', Name => 'BluePaletteColorTableDescriptor' },
1468 '0028,1111' => { VR => 'SS', Name => 'LargeRedPaletteColorTableDescr' },
1469 '0028,1112' => { VR => 'SS', Name => 'LargeGreenPaletteColorTableDescr' },
1470 '0028,1113' => { VR => 'SS', Name => 'LargeBluePaletteColorTableDescr' },
1471 '0028,1199' => { VR => 'UI', Name => 'PaletteColorTableUID' },
1472 '0028,1200' => { VR => 'US', Name => 'GrayLookupTableData' },
1473 '0028,1201' => { VR => 'OW', Name => 'RedPaletteColorTableData' },
1474 '0028,1202' => { VR => 'OW', Name => 'GreenPaletteColorTableData' },
1475 '0028,1203' => { VR => 'OW', Name => 'BluePaletteColorTableData' },
1476 '0028,1211' => { VR => 'OW', Name => 'LargeRedPaletteColorTableData', Binary => 1 },
1477 '0028,1212' => { VR => 'OW', Name => 'LargeGreenPaletteColorTableData', Binary => 1 },
1478 '0028,1213' => { VR => 'OW', Name => 'LargeBluePaletteColorTableData', Binary => 1 },
1479 '0028,1214' => { VR => 'UI', Name => 'LargePaletteColorLookupTableUID' },
1480 '0028,1221' => { VR => 'OW', Name => 'SegmentedRedColorTableData' },
1481 '0028,1222' => { VR => 'OW', Name => 'SegmentedGreenColorTableData' },
1482 '0028,1223' => { VR => 'OW', Name => 'SegmentedBlueColorTableData' },
1483 '0028,1300' => { VR => 'CS', Name => 'BreastImplantPresent' },
1484 '0028,1350' => { VR => 'CS', Name => 'PartialView' },
1485 '0028,1351' => { VR => 'ST', Name => 'PartialViewDescription' },
1486 '0028,1352' => { VR => 'SQ', Name => 'PartialViewCodeSequence' },
1487 '0028,135A' => { VR => 'CS', Name => 'SpatialLocationsPreserved' },
1488 '0028,1402' => { VR => 'CS', Name => 'DataPathAssignment' },
1489 '0028,1404' => { VR => 'SQ', Name => 'BlendingLUT1Sequence' },
1490 '0028,1406' => { VR => 'FD', Name => 'BlendingWeightConstant' },
1491 '0028,1408' => { VR => 'OW', Name => 'BlendingLookupTableData' },
1492 '0028,140C' => { VR => 'SQ', Name => 'BlendingLUT2Sequence' },
1493 '0028,140E' => { VR => 'CS', Name => 'DataPathID' },
1494 '0028,140F' => { VR => 'CS', Name => 'RGBLUTTransferFunction' },
1495 '0028,1410' => { VR => 'CS', Name => 'AlphaLUTTransferFunction' },
1496 '0028,2000' => { VR => 'OB', Name => 'ICCProfile' },
1497 '0028,2110' => { VR => 'CS', Name => 'LossyImageCompression' },
1498 '0028,2112' => { VR => 'DS', Name => 'LossyImageCompressionRatio' },
1499 '0028,2114' => { VR => 'CS', Name => 'LossyImageCompressionMethod' },
1500 '0028,3000' => { VR => 'SQ', Name => 'ModalityLUTSequence' },
1501 '0028,3002' => { VR => 'US', Name => 'LUTDescriptor' },
1502 '0028,3003' => { VR => 'LO', Name => 'LUTExplanation' },
1503 '0028,3004' => { VR => 'LO', Name => 'ModalityLUTType' },
1504 '0028,3006' => { VR => 'SS', Name => 'LUTData' },
1505 '0028,3010' => { VR => 'SQ', Name => 'VOILUTSequence' },
1506 '0028,3110' => { VR => 'SQ', Name => 'SoftcopyVOILUTSequence' },
1507 '0028,4000' => { VR => 'LT', Name => 'ImagePresentationComments' },
1508 '0028,5000' => { VR => 'SQ', Name => 'BiPlaneAcquisitionSequence' },
1509 '0028,6010' => { VR => 'US', Name => 'RepresentativeFrameNumber' },
1510 '0028,6020' => { VR => 'US', Name => 'FrameNumbersOfInterest' },
1511 '0028,6022' => { VR => 'LO', Name => 'FrameOfInterestDescription' },
1512 '0028,6023' => { VR => 'CS', Name => 'FrameOfInterestType' },
1513 '0028,6030' => { VR => 'US', Name => 'MaskPointers' },
1514 '0028,6040' => { VR => 'US', Name => 'RWavePointer' },
1515 '0028,6100' => { VR => 'SQ', Name => 'MaskSubtractionSequence' },
1516 '0028,6101' => { VR => 'CS', Name => 'MaskOperation' },
1517 '0028,6102' => { VR => 'US', Name => 'ApplicableFrameRange' },
1518 '0028,6110' => { VR => 'US', Name => 'MaskFrameNumbers' },
1519 '0028,6112' => { VR => 'US', Name => 'ContrastFrameAveraging' },
1520 '0028,6114' => { VR => 'FL', Name => 'MaskSubPixelShift' },
1521 '0028,6120' => { VR => 'SS', Name => 'TIDOffset' },
1522 '0028,6190' => { VR => 'ST', Name => 'MaskOperationExplanation' },
1523 '0028,7FE0' => { VR => 'UT', Name => 'PixelDataProviderURL' },
1524 '0028,9001' => { VR => 'UL', Name => 'DataPointRows' },
1525 '0028,9002' => { VR => 'UL', Name => 'DataPointColumns' },
1526 '0028,9003' => { VR => 'CS', Name => 'SignalDomainColumns' },
1527 '0028,9099' => { VR => 'US', Name => 'LargestMonochromePixelValue' },
1528 '0028,9108' => { VR => 'CS', Name => 'DataRepresentation' },
1529 '0028,9110' => { VR => 'SQ', Name => 'PixelMeasuresSequence' },
1530 '0028,9132' => { VR => 'SQ', Name => 'FrameVOILUTSequence' },
1531 '0028,9145' => { VR => 'SQ', Name => 'PixelValueTransformationSequence' },
1532 '0028,9235' => { VR => 'CS', Name => 'SignalDomainRows' },
1533 '0028,9411' => { VR => 'FL', Name => 'DisplayFilterPercentage' },
1534 '0028,9415' => { VR => 'SQ', Name => 'FramePixelShiftSequence' },
1535 '0028,9416' => { VR => 'US', Name => 'SubtractionItemID' },
1536 '0028,9422' => { VR => 'SQ', Name => 'PixelIntensityRelationshipLUTSeq' },
1537 '0028,9443' => { VR => 'SQ', Name => 'FramePixelDataPropertiesSequence' },
1538 '0028,9444' => { VR => 'CS', Name => 'GeometricalProperties' },
1539 '0028,9445' => { VR => 'FL', Name => 'GeometricMaximumDistortion' },
1540 '0028,9446' => { VR => 'CS', Name => 'ImageProcessingApplied' },
1541 '0028,9454' => { VR => 'CS', Name => 'MaskSelectionMode' },
1542 '0028,9474' => { VR => 'CS', Name => 'LUTFunction' },
1543 '0028,9478' => { VR => 'FL', Name => 'MaskVisibilityPercentage' },
1544 '0028,9501' => { VR => 'SQ', Name => 'PixelShiftSequence' },
1545 '0028,9502' => { VR => 'SQ', Name => 'RegionPixelShiftSequence' },
1546 '0028,9503' => { VR => 'SS', Name => 'VerticesOfTheRegion' },
1547 '0028,9506' => { VR => 'US', Name => 'PixelShiftFrameRange' },
1548 '0028,9507' => { VR => 'US', Name => 'LUTFrameRange' },
1549 '0028,9520' => { VR => 'DS', Name => 'ImageToEquipmentMappingMatrix' },
1550 '0028,9537' => { VR => 'CS', Name => 'EquipmentCoordinateSystemID' },
1551 # GEMS_IMPS_01 (ref 4)
1552 '0029,1004' => { VR => 'SL', Name => 'LowerRangeOfPixels1a' },
1553 '0029,1005' => { VR => 'DS', Name => 'LowerRangeOfPixels1b' },
1554 '0029,1006' => { VR => 'DS', Name => 'LowerRangeOfPixels1c' },
1555 '0029,1007' => { VR => 'SL', Name => 'LowerRangeOfPixels1d' },
1556 '0029,1008' => { VR => 'SH', Name => 'LowerRangeOfPixels1e' },
1557 '0029,1009' => { VR => 'SH', Name => 'LowerRangeOfPixels1f' },
1558 '0029,100A' => { VR => 'SS', Name => 'LowerRangeOfPixels1g' },
1559 '0029,1015' => { VR => 'SL', Name => 'LowerRangeOfPixels1h' },
1560 '0029,1016' => { VR => 'SL', Name => 'LowerRangeOfPixels1i' },
1561 '0029,1017' => { VR => 'SL', Name => 'LowerRangeOfPixels2' },
1562 '0029,1018' => { VR => 'SL', Name => 'UpperRangeOfPixels2' },
1563 '0029,101A' => { VR => 'SL', Name => 'LenOfTotHdrInBytes' },
1564 '0029,1026' => { VR => 'SS', Name => 'VersionOfTheHdrStruct' },
1565 '0029,1034' => { VR => 'SL', Name => 'AdvantageCompOverflow' },
1566 '0029,1035' => { VR => 'SL', Name => 'AdvantageCompUnderflow' },
1567 # study group
1568 '0032,0000' => { VR => 'UL', Name => 'StudyGroupLength' },
1569 '0032,000A' => { VR => 'CS', Name => 'StudyStatusID' },
1570 '0032,000C' => { VR => 'CS', Name => 'StudyPriorityID' },
1571 '0032,0012' => { VR => 'LO', Name => 'StudyIDIssuer' },
1572 '0032,0032' => { VR => 'DA', Name => 'StudyVerifiedDate' },
1573 '0032,0033' => { VR => 'TM', Name => 'StudyVerifiedTime' },
1574 '0032,0034' => { VR => 'DA', Name => 'StudyReadDate' },
1575 '0032,0035' => { VR => 'TM', Name => 'StudyReadTime' },
1576 '0032,1000' => { VR => 'DA', Name => 'ScheduledStudyStartDate' },
1577 '0032,1001' => { VR => 'TM', Name => 'ScheduledStudyStartTime' },
1578 '0032,1010' => { VR => 'DA', Name => 'ScheduledStudyStopDate' },
1579 '0032,1011' => { VR => 'TM', Name => 'ScheduledStudyStopTime' },
1580 '0032,1020' => { VR => 'LO', Name => 'ScheduledStudyLocation' },
1581 '0032,1021' => { VR => 'AE', Name => 'ScheduledStudyLocationAETitle' },
1582 '0032,1030' => { VR => 'LO', Name => 'ReasonForStudy' },
1583 '0032,1031' => { VR => 'SQ', Name => 'RequestingPhysicianIDSequence' },
1584 '0032,1032' => { VR => 'PN', Name => 'RequestingPhysician' },
1585 '0032,1033' => { VR => 'LO', Name => 'RequestingService' },
1586 '0032,1040' => { VR => 'DA', Name => 'StudyArrivalDate' },
1587 '0032,1041' => { VR => 'TM', Name => 'StudyArrivalTime' },
1588 '0032,1050' => { VR => 'DA', Name => 'StudyCompletionDate' },
1589 '0032,1051' => { VR => 'TM', Name => 'StudyCompletionTime' },
1590 '0032,1055' => { VR => 'CS', Name => 'StudyComponentStatusID' },
1591 '0032,1060' => { VR => 'LO', Name => 'RequestedProcedureDescription' },
1592 '0032,1064' => { VR => 'SQ', Name => 'RequestedProcedureCodeSequence' },
1593 '0032,1070' => { VR => 'LO', Name => 'RequestedContrastAgent' },
1594 '0032,4000' => { VR => 'LT', Name => 'StudyComments' },
1595 # visit group
1596 '0038,0004' => { VR => 'SQ', Name => 'ReferencedPatientAliasSequence' },
1597 '0038,0008' => { VR => 'CS', Name => 'VisitStatusID' },
1598 '0038,0010' => { VR => 'LO', Name => 'AdmissionID' },
1599 '0038,0011' => { VR => 'LO', Name => 'IssuerOfAdmissionID' },
1600 '0038,0016' => { VR => 'LO', Name => 'RouteOfAdmissions' },
1601 '0038,001A' => { VR => 'DA', Name => 'ScheduledAdmissionDate' },
1602 '0038,001B' => { VR => 'TM', Name => 'ScheduledAdmissionTime' },
1603 '0038,001C' => { VR => 'DA', Name => 'ScheduledDischargeDate' },
1604 '0038,001D' => { VR => 'TM', Name => 'ScheduledDischargeTime' },
1605 '0038,001E' => { VR => 'LO', Name => 'ScheduledPatientInstitResidence' },
1606 '0038,0020' => { VR => 'DA', Name => 'AdmittingDate' },
1607 '0038,0021' => { VR => 'TM', Name => 'AdmittingTime' },
1608 '0038,0030' => { VR => 'DA', Name => 'DischargeDate' },
1609 '0038,0032' => { VR => 'TM', Name => 'DischargeTime' },
1610 '0038,0040' => { VR => 'LO', Name => 'DischargeDiagnosisDescription' },
1611 '0038,0044' => { VR => 'SQ', Name => 'DischargeDiagnosisCodeSequence' },
1612 '0038,0050' => { VR => 'LO', Name => 'SpecialNeeds' },
1613 '0038,0060' => { VR => 'LO', Name => 'ServiceEpisodeID' },
1614 '0038,0061' => { VR => 'LO', Name => 'IssuerOfServiceEpisodeID' },
1615 '0038,0062' => { VR => 'LO', Name => 'ServiceEpisodeDescription' },
1616 '0038,0100' => { VR => 'SQ', Name => 'PertinentDocumentsSequence' },
1617 '0038,0300' => { VR => 'LO', Name => 'CurrentPatientLocation' },
1618 '0038,0400' => { VR => 'LO', Name => 'PatientInstitutionResidence' },
1619 '0038,0500' => { VR => 'LO', Name => 'PatientState' },
1620 '0038,0502' => { VR => 'SQ', Name => 'PatientClinicalTrialParticipSeq' },
1621 '0038,4000' => { VR => 'LT', Name => 'VisitComments' },
1622 '003A,0004' => { VR => 'CS', Name => 'WaveformOriginality' },
1623 '003A,0005' => { VR => 'US', Name => 'NumberOfWaveformChannels' },
1624 '003A,0010' => { VR => 'UL', Name => 'NumberOfWaveformSamples' },
1625 '003A,001A' => { VR => 'DS', Name => 'SamplingFrequency' },
1626 '003A,0020' => { VR => 'SH', Name => 'MultiplexGroupLabel' },
1627 '003A,0200' => { VR => 'SQ', Name => 'ChannelDefinitionSequence' },
1628 '003A,0202' => { VR => 'IS', Name => 'WaveformChannelNumber' },
1629 '003A,0203' => { VR => 'SH', Name => 'ChannelLabel' },
1630 '003A,0205' => { VR => 'CS', Name => 'ChannelStatus' },
1631 '003A,0208' => { VR => 'SQ', Name => 'ChannelSourceSequence' },
1632 '003A,0209' => { VR => 'SQ', Name => 'ChannelSourceModifiersSequence' },
1633 '003A,020A' => { VR => 'SQ', Name => 'SourceWaveformSequence' },
1634 '003A,020C' => { VR => 'LO', Name => 'ChannelDerivationDescription' },
1635 '003A,0210' => { VR => 'DS', Name => 'ChannelSensitivity' },
1636 '003A,0211' => { VR => 'SQ', Name => 'ChannelSensitivityUnitsSequence' },
1637 '003A,0212' => { VR => 'DS', Name => 'ChannelSensitivityCorrectionFactor' },
1638 '003A,0213' => { VR => 'DS', Name => 'ChannelBaseline' },
1639 '003A,0214' => { VR => 'DS', Name => 'ChannelTimeSkew' },
1640 '003A,0215' => { VR => 'DS', Name => 'ChannelSampleSkew' },
1641 '003A,0218' => { VR => 'DS', Name => 'ChannelOffset' },
1642 '003A,021A' => { VR => 'US', Name => 'WaveformBitsStored' },
1643 '003A,0220' => { VR => 'DS', Name => 'FilterLowFrequency' },
1644 '003A,0221' => { VR => 'DS', Name => 'FilterHighFrequency' },
1645 '003A,0222' => { VR => 'DS', Name => 'NotchFilterFrequency' },
1646 '003A,0223' => { VR => 'DS', Name => 'NotchFilterBandwidth' },
1647 '003A,0230' => { VR => 'FL', Name => 'WaveformDataDisplayScale' },
1648 '003A,0231' => { VR => 'US', Name => 'WaveformDisplayBkgCIELabValue' },
1649 '003A,0240' => { VR => 'SQ', Name => 'WaveformPresentationGroupSequence' },
1650 '003A,0241' => { VR => 'US', Name => 'PresentationGroupNumber' },
1651 '003A,0242' => { VR => 'SQ', Name => 'ChannelDisplaySequence' },
1652 '003A,0244' => { VR => 'US', Name => 'ChannelRecommendDisplayCIELabValue' },
1653 '003A,0245' => { VR => 'FL', Name => 'ChannelPosition' },
1654 '003A,0246' => { VR => 'CS', Name => 'DisplayShadingFlag' },
1655 '003A,0247' => { VR => 'FL', Name => 'FractionalChannelDisplayScale' },
1656 '003A,0248' => { VR => 'FL', Name => 'AbsoluteChannelDisplayScale' },
1657 '003A,0300' => { VR => 'SQ', Name => 'MultiplexAudioChannelsDescrCodeSeq' },
1658 '003A,0301' => { VR => 'IS', Name => 'ChannelIdentificationCode' },
1659 '003A,0302' => { VR => 'CS', Name => 'ChannelMode' },
1660 '0040,0001' => { VR => 'AE', Name => 'ScheduledStationAETitle' },
1661 '0040,0002' => { VR => 'DA', Name => 'ScheduledProcedureStepStartDate' },
1662 '0040,0003' => { VR => 'TM', Name => 'ScheduledProcedureStepStartTime' },
1663 '0040,0004' => { VR => 'DA', Name => 'ScheduledProcedureStepEndDate' },
1664 '0040,0005' => { VR => 'TM', Name => 'ScheduledProcedureStepEndTime' },
1665 '0040,0006' => { VR => 'PN', Name => 'ScheduledPerformingPhysiciansName' },
1666 '0040,0007' => { VR => 'LO', Name => 'ScheduledProcedureStepDescription' },
1667 '0040,0008' => { VR => 'SQ', Name => 'ScheduledProtocolCodeSequence' },
1668 '0040,0009' => { VR => 'SH', Name => 'ScheduledProcedureStepID' },
1669 '0040,000A' => { VR => 'SQ', Name => 'StageCodeSequence' },
1670 '0040,000B' => { VR => 'SQ', Name => 'ScheduledPerformingPhysicianIDSeq' },
1671 '0040,0010' => { VR => 'SH', Name => 'ScheduledStationName' },
1672 '0040,0011' => { VR => 'SH', Name => 'ScheduledProcedureStepLocation' },
1673 '0040,0012' => { VR => 'LO', Name => 'PreMedication' },
1674 '0040,0020' => { VR => 'CS', Name => 'ScheduledProcedureStepStatus' },
1675 '0040,0031' => { VR => 'UT', Name => 'LocalNamespaceEntityID' },
1676 '0040,0032' => { VR => 'UT', Name => 'UniversalEntityID' },
1677 '0040,0033' => { VR => 'CS', Name => 'UniversalEntityIDType' },
1678 '0040,0035' => { VR => 'CS', Name => 'IdentifierTypeCode' },
1679 '0040,0036' => { VR => 'SQ', Name => 'AssigningFacilitySequence' },
1680 '0040,0100' => { VR => 'SQ', Name => 'ScheduledProcedureStepSequence' },
1681 '0040,0220' => { VR => 'SQ', Name => 'ReferencedNonImageCompositeSOPSeq' },
1682 '0040,0241' => { VR => 'AE', Name => 'PerformedStationAETitle' },
1683 '0040,0242' => { VR => 'SH', Name => 'PerformedStationName' },
1684 '0040,0243' => { VR => 'SH', Name => 'PerformedLocation' },
1685 '0040,0244' => { VR => 'DA', Name => 'PerformedProcedureStepStartDate' },
1686 '0040,0245' => { VR => 'TM', Name => 'PerformedProcedureStepStartTime' },
1687 '0040,0250' => { VR => 'DA', Name => 'PerformedProcedureStepEndDate' },
1688 '0040,0251' => { VR => 'TM', Name => 'PerformedProcedureStepEndTime' },
1689 '0040,0252' => { VR => 'CS', Name => 'PerformedProcedureStepStatus' },
1690 '0040,0253' => { VR => 'SH', Name => 'PerformedProcedureStepID' },
1691 '0040,0254' => { VR => 'LO', Name => 'PerformedProcedureStepDescription' },
1692 '0040,0255' => { VR => 'LO', Name => 'PerformedProcedureTypeDescription' },
1693 '0040,0260' => { VR => 'SQ', Name => 'PerformedProtocolCodeSequence' },
1694 '0040,0261' => { VR => 'CS', Name => 'PerformedProtocolType' },
1695 '0040,0270' => { VR => 'SQ', Name => 'ScheduledStepAttributesSequence' },
1696 '0040,0275' => { VR => 'SQ', Name => 'RequestAttributesSequence' },
1697 '0040,0280' => { VR => 'ST', Name => 'CommentsOnPerformedProcedureStep' },
1698 '0040,0281' => { VR => 'SQ', Name => 'ProcStepDiscontinueReasonCodeSeq' },
1699 '0040,0293' => { VR => 'SQ', Name => 'QuantitySequence' },
1700 '0040,0294' => { VR => 'DS', Name => 'Quantity' },
1701 '0040,0295' => { VR => 'SQ', Name => 'MeasuringUnitsSequence' },
1702 '0040,0296' => { VR => 'SQ', Name => 'BillingItemSequence' },
1703 '0040,0300' => { VR => 'US', Name => 'TotalTimeOfFluoroscopy' },
1704 '0040,0301' => { VR => 'US', Name => 'TotalNumberOfExposures' },
1705 '0040,0302' => { VR => 'US', Name => 'EntranceDose' },
1706 '0040,0303' => { VR => 'US', Name => 'ExposedArea' },
1707 '0040,0306' => { VR => 'DS', Name => 'DistanceSourceToEntrance' },
1708 '0040,0307' => { VR => 'DS', Name => 'DistanceSourceToSupport' },
1709 '0040,030E' => { VR => 'SQ', Name => 'ExposureDoseSequence' },
1710 '0040,0310' => { VR => 'ST', Name => 'CommentsOnRadiationDose' },
1711 '0040,0312' => { VR => 'DS', Name => 'XRayOutput' },
1712 '0040,0314' => { VR => 'DS', Name => 'HalfValueLayer' },
1713 '0040,0316' => { VR => 'DS', Name => 'OrganDose' },
1714 '0040,0318' => { VR => 'CS', Name => 'OrganExposed' },
1715 '0040,0320' => { VR => 'SQ', Name => 'BillingProcedureStepSequence' },
1716 '0040,0321' => { VR => 'SQ', Name => 'FilmConsumptionSequence' },
1717 '0040,0324' => { VR => 'SQ', Name => 'BillingSuppliesAndDevicesSequence' },
1718 '0040,0330' => { VR => 'SQ', Name => 'ReferencedProcedureStepSequence' },
1719 '0040,0340' => { VR => 'SQ', Name => 'PerformedSeriesSequence' },
1720 '0040,0400' => { VR => 'LT', Name => 'CommentsOnScheduledProcedureStep' },
1721 '0040,0440' => { VR => 'SQ', Name => 'ProtocolContextSequence' },
1722 '0040,0441' => { VR => 'SQ', Name => 'ContentItemModifierSequence' },
1723 '0040,050A' => { VR => 'LO', Name => 'SpecimenAccessionNumber' },
1724 '0040,0512' => { VR => 'LO', Name => 'ContainerIdentifier' },
1725 '0040,051A' => { VR => 'LO', Name => 'ContainerDescription' },
1726 '0040,0550' => { VR => 'SQ', Name => 'SpecimenSequence' },
1727 '0040,0551' => { VR => 'LO', Name => 'SpecimenIdentifier' },
1728 '0040,0552' => { VR => 'SQ', Name => 'SpecimenDescriptionSequenceTrial' },
1729 '0040,0553' => { VR => 'ST', Name => 'SpecimenDescriptionTrial' },
1730 '0040,0554' => { VR => 'UI', Name => 'SpecimenUID' },
1731 '0040,0555' => { VR => 'SQ', Name => 'AcquisitionContextSequence' },
1732 '0040,0556' => { VR => 'ST', Name => 'AcquisitionContextDescription' },
1733 '0040,059A' => { VR => 'SQ', Name => 'SpecimenTypeCodeSequence' },
1734 '0040,0600' => { VR => 'LO', Name => 'SpecimenShortDescription' },
1735 '0040,06FA' => { VR => 'LO', Name => 'SlideIdentifier' },
1736 '0040,071A' => { VR => 'SQ', Name => 'ImageCenterPointCoordinatesSeq' },
1737 '0040,072A' => { VR => 'DS', Name => 'XOffsetInSlideCoordinateSystem' },
1738 '0040,073A' => { VR => 'DS', Name => 'YOffsetInSlideCoordinateSystem' },
1739 '0040,074A' => { VR => 'DS', Name => 'ZOffsetInSlideCoordinateSystem' },
1740 '0040,08D8' => { VR => 'SQ', Name => 'PixelSpacingSequence' },
1741 '0040,08DA' => { VR => 'SQ', Name => 'CoordinateSystemAxisCodeSequence' },
1742 '0040,08EA' => { VR => 'SQ', Name => 'MeasurementUnitsCodeSequence' },
1743 '0040,09F8' => { VR => 'SQ', Name => 'VitalStainCodeSequenceTrial' },
1744 '0040,1001' => { VR => 'SH', Name => 'RequestedProcedureID' },
1745 '0040,1002' => { VR => 'LO', Name => 'ReasonForRequestedProcedure' },
1746 '0040,1003' => { VR => 'SH', Name => 'RequestedProcedurePriority' },
1747 '0040,1004' => { VR => 'LO', Name => 'PatientTransportArrangements' },
1748 '0040,1005' => { VR => 'LO', Name => 'RequestedProcedureLocation' },
1749 '0040,1006' => { VR => 'SH', Name => 'PlacerOrderNumber-Procedure' },
1750 '0040,1007' => { VR => 'SH', Name => 'FillerOrderNumber-Procedure' },
1751 '0040,1008' => { VR => 'LO', Name => 'ConfidentialityCode' },
1752 '0040,1009' => { VR => 'SH', Name => 'ReportingPriority' },
1753 '0040,100A' => { VR => 'SQ', Name => 'ReasonForRequestedProcedureCodeSeq' },
1754 '0040,1010' => { VR => 'PN', Name => 'NamesOfIntendedRecipientsOfResults' },
1755 '0040,1011' => { VR => 'SQ', Name => 'IntendedRecipientsOfResultsIDSeq' },
1756 '0040,1101' => { VR => 'SQ', Name => 'PersonIdentificationCodeSequence' },
1757 '0040,1102' => { VR => 'ST', Name => 'PersonAddress' },
1758 '0040,1103' => { VR => 'LO', Name => 'PersonTelephoneNumbers' },
1759 '0040,1400' => { VR => 'LT', Name => 'RequestedProcedureComments' },
1760 '0040,2001' => { VR => 'LO', Name => 'ReasonForImagingServiceRequest' },
1761 '0040,2004' => { VR => 'DA', Name => 'IssueDateOfImagingServiceRequest' },
1762 '0040,2005' => { VR => 'TM', Name => 'IssueTimeOfImagingServiceRequest' },
1763 '0040,2006' => { VR => 'SH', Name => 'PlacerOrderNum-ImagingServiceReq' },
1764 '0040,2007' => { VR => 'SH', Name => 'FillerOrderNum-ImagingServiceReq' },
1765 '0040,2008' => { VR => 'PN', Name => 'OrderEnteredBy' },
1766 '0040,2009' => { VR => 'SH', Name => 'OrderEntererLocation' },
1767 '0040,2010' => { VR => 'SH', Name => 'OrderCallbackPhoneNumber' },
1768 '0040,2016' => { VR => 'LO', Name => 'PlacerOrderNum-ImagingServiceReq' },
1769 '0040,2017' => { VR => 'LO', Name => 'FillerOrderNum-ImagingServiceReq' },
1770 '0040,2400' => { VR => 'LT', Name => 'ImagingServiceRequestComments' },
1771 '0040,3001' => { VR => 'LO', Name => 'ConfidentialityOnPatientDataDescr' },
1772 '0040,4001' => { VR => 'CS', Name => 'GenPurposeScheduledProcStepStatus' },
1773 '0040,4002' => { VR => 'CS', Name => 'GenPurposePerformedProcStepStatus' },
1774 '0040,4003' => { VR => 'CS', Name => 'GenPurposeSchedProcStepPriority' },
1775 '0040,4004' => { VR => 'SQ', Name => 'SchedProcessingApplicationsCodeSeq' },
1776 '0040,4005' => { VR => 'DT', Name => 'SchedProcedureStepStartDateAndTime' },
1777 '0040,4006' => { VR => 'CS', Name => 'MultipleCopiesFlag' },
1778 '0040,4007' => { VR => 'SQ', Name => 'PerformedProcessingAppsCodeSeq' },
1779 '0040,4009' => { VR => 'SQ', Name => 'HumanPerformerCodeSequence' },
1780 '0040,4010' => { VR => 'DT', Name => 'SchedProcStepModificationDateTime' },
1781 '0040,4011' => { VR => 'DT', Name => 'ExpectedCompletionDateAndTime' },
1782 '0040,4015' => { VR => 'SQ', Name => 'ResultingGenPurposePerfProcStepSeq' },
1783 '0040,4016' => { VR => 'SQ', Name => 'RefGenPurposeSchedProcStepSeq' },
1784 '0040,4018' => { VR => 'SQ', Name => 'ScheduledWorkitemCodeSequence' },
1785 '0040,4019' => { VR => 'SQ', Name => 'PerformedWorkitemCodeSequence' },
1786 '0040,4020' => { VR => 'CS', Name => 'InputAvailabilityFlag' },
1787 '0040,4021' => { VR => 'SQ', Name => 'InputInformationSequence' },
1788 '0040,4022' => { VR => 'SQ', Name => 'RelevantInformationSequence' },
1789 '0040,4023' => { VR => 'UI', Name => 'RefGenPurSchedProcStepTransUID' },
1790 '0040,4025' => { VR => 'SQ', Name => 'ScheduledStationNameCodeSequence' },
1791 '0040,4026' => { VR => 'SQ', Name => 'ScheduledStationClassCodeSequence' },
1792 '0040,4027' => { VR => 'SQ', Name => 'SchedStationGeographicLocCodeSeq' },
1793 '0040,4028' => { VR => 'SQ', Name => 'PerformedStationNameCodeSequence' },
1794 '0040,4029' => { VR => 'SQ', Name => 'PerformedStationClassCodeSequence' },
1795 '0040,4030' => { VR => 'SQ', Name => 'PerformedStationGeogLocCodeSeq' },
1796 '0040,4031' => { VR => 'SQ', Name => 'RequestedSubsequentWorkItemCodeSeq' },
1797 '0040,4032' => { VR => 'SQ', Name => 'NonDICOMOutputCodeSequence' },
1798 '0040,4033' => { VR => 'SQ', Name => 'OutputInformationSequence' },
1799 '0040,4034' => { VR => 'SQ', Name => 'ScheduledHumanPerformersSequence' },
1800 '0040,4035' => { VR => 'SQ', Name => 'ActualHumanPerformersSequence' },
1801 '0040,4036' => { VR => 'LO', Name => 'HumanPerformersOrganization' },
1802 '0040,4037' => { VR => 'PN', Name => 'HumanPerformerName' },
1803 '0040,4040' => { VR => 'CS', Name => 'RawDataHandling' },
1804 '0040,8302' => { VR => 'DS', Name => 'EntranceDoseInMilliGy' },
1805 '0040,9094' => { VR => 'SQ', Name => 'RefImageRealWorldValueMappingSeq' },
1806 '0040,9096' => { VR => 'SQ', Name => 'RealWorldValueMappingSequence' },
1807 '0040,9098' => { VR => 'SQ', Name => 'PixelValueMappingCodeSequence' },
1808 '0040,9210' => { VR => 'SH', Name => 'LUTLabel' },
1809 '0040,9211' => { VR => 'SS', Name => 'RealWorldValueLastValueMapped' },
1810 '0040,9212' => { VR => 'FD', Name => 'RealWorldValueLUTData' },
1811 '0040,9216' => { VR => 'SS', Name => 'RealWorldValueFirstValueMapped' },
1812 '0040,9224' => { VR => 'FD', Name => 'RealWorldValueIntercept' },
1813 '0040,9225' => { VR => 'FD', Name => 'RealWorldValueSlope' },
1814 '0040,A010' => { VR => 'CS', Name => 'RelationshipType' },
1815 '0040,A027' => { VR => 'LO', Name => 'VerifyingOrganization' },
1816 '0040,A030' => { VR => 'DT', Name => 'VerificationDateTime' },
1817 '0040,A032' => { VR => 'DT', Name => 'ObservationDateTime' },
1818 '0040,A040' => { VR => 'CS', Name => 'ValueType' },
1819 '0040,A043' => { VR => 'SQ', Name => 'ConceptNameCodeSequence' },
1820 '0040,A050' => { VR => 'CS', Name => 'ContinuityOfContent' },
1821 '0040,A073' => { VR => 'SQ', Name => 'VerifyingObserverSequence' },
1822 '0040,A075' => { VR => 'PN', Name => 'VerifyingObserverName' },
1823 '0040,A078' => { VR => 'SQ', Name => 'AuthorObserverSequence' },
1824 '0040,A07A' => { VR => 'SQ', Name => 'ParticipantSequence' },
1825 '0040,A07C' => { VR => 'SQ', Name => 'CustodialOrganizationSequence' },
1826 '0040,A080' => { VR => 'CS', Name => 'ParticipationType' },
1827 '0040,A082' => { VR => 'DT', Name => 'ParticipationDateTime' },
1828 '0040,A084' => { VR => 'CS', Name => 'ObserverType' },
1829 '0040,A088' => { VR => 'SQ', Name => 'VerifyingObserverIdentCodeSequence' },
1830 '0040,A090' => { VR => 'SQ', Name => 'EquivalentCDADocumentSequence' },
1831 '0040,A0B0' => { VR => 'US', Name => 'ReferencedWaveformChannels' },
1832 '0040,A120' => { VR => 'DT', Name => 'DateTime' },
1833 '0040,A121' => { VR => 'DA', Name => 'Date' },
1834 '0040,A122' => { VR => 'TM', Name => 'Time' },
1835 '0040,A123' => { VR => 'PN', Name => 'PersonName' },
1836 '0040,A124' => { VR => 'UI', Name => 'UID' },
1837 '0040,A130' => { VR => 'CS', Name => 'TemporalRangeType' },
1838 '0040,A132' => { VR => 'UL', Name => 'ReferencedSamplePositions' },
1839 '0040,A136' => { VR => 'US', Name => 'ReferencedFrameNumbers' },
1840 '0040,A138' => { VR => 'DS', Name => 'ReferencedTimeOffsets' },
1841 '0040,A13A' => { VR => 'DT', Name => 'ReferencedDateTime' },
1842 '0040,A160' => { VR => 'UT', Name => 'TextValue' },
1843 '0040,A168' => { VR => 'SQ', Name => 'ConceptCodeSequence' },
1844 '0040,A170' => { VR => 'SQ', Name => 'PurposeOfReferenceCodeSequence' },
1845 '0040,A180' => { VR => 'US', Name => 'AnnotationGroupNumber' },
1846 '0040,A195' => { VR => 'SQ', Name => 'ModifierCodeSequence' },
1847 '0040,A300' => { VR => 'SQ', Name => 'MeasuredValueSequence' },
1848 '0040,A301' => { VR => 'SQ', Name => 'NumericValueQualifierCodeSequence' },
1849 '0040,A30A' => { VR => 'DS', Name => 'NumericValue' },
1850 '0040,A353' => { VR => 'ST', Name => 'AddressTrial' },
1851 '0040,A354' => { VR => 'LO', Name => 'TelephoneNumberTrial' },
1852 '0040,A360' => { VR => 'SQ', Name => 'PredecessorDocumentsSequence' },
1853 '0040,A370' => { VR => 'SQ', Name => 'ReferencedRequestSequence' },
1854 '0040,A372' => { VR => 'SQ', Name => 'PerformedProcedureCodeSequence' },
1855 '0040,A375' => { VR => 'SQ', Name => 'CurrentRequestedProcEvidenceSeq' },
1856 '0040,A385' => { VR => 'SQ', Name => 'PertinentOtherEvidenceSequence' },
1857 '0040,A390' => { VR => 'SQ', Name => 'HL7StructuredDocumentRefSeq' },
1858 '0040,A491' => { VR => 'CS', Name => 'CompletionFlag' },
1859 '0040,A492' => { VR => 'LO', Name => 'CompletionFlagDescription' },
1860 '0040,A493' => { VR => 'CS', Name => 'VerificationFlag' },
1861 '0040,A494' => { VR => 'CS', Name => 'ArchiveRequested' },
1862 '0040,A496' => { VR => 'CS', Name => 'PreliminaryFlag' },
1863 '0040,A504' => { VR => 'SQ', Name => 'ContentTemplateSequence' },
1864 '0040,A525' => { VR => 'SQ', Name => 'IdenticalDocumentsSequence' },
1865 '0040,A730' => { VR => 'SQ', Name => 'ContentSequence' },
1866 '0040,B020' => { VR => 'SQ', Name => 'AnnotationSequence' },
1867 '0040,DB00' => { VR => 'CS', Name => 'TemplateIdentifier' },
1868 '0040,DB06' => { VR => 'DT', Name => 'TemplateVersion' },
1869 '0040,DB07' => { VR => 'DT', Name => 'TemplateLocalVersion' },
1870 '0040,DB0B' => { VR => 'CS', Name => 'TemplateExtensionFlag' },
1871 '0040,DB0C' => { VR => 'UI', Name => 'TemplateExtensionOrganizationUID' },
1872 '0040,DB0D' => { VR => 'UI', Name => 'TemplateExtensionCreatorUID' },
1873 '0040,DB73' => { VR => 'UL', Name => 'ReferencedContentItemIdentifier' },
1874 '0040,E001' => { VR => 'ST', Name => 'HL7InstanceIdentifier' },
1875 '0040,E004' => { VR => 'DT', Name => 'HL7DocumentEffectiveTime' },
1876 '0040,E006' => { VR => 'SQ', Name => 'HL7DocumentTypeCodeSequence' },
1877 '0040,E010' => { VR => 'UT', Name => 'RetrieveURI' },
1878 '0040,E011' => { VR => 'UI', Name => 'RetrieveLocationUID' },
1879 '0042,0010' => { VR => 'ST', Name => 'DocumentTitle' },
1880 '0042,0011' => { VR => 'OB', Name => 'EncapsulatedDocument' },
1881 '0042,0012' => { VR => 'LO', Name => 'MIMETypeOfEncapsulatedDocument' },
1882 '0042,0013' => { VR => 'SQ', Name => 'SourceInstanceSequence' },
1883 '0042,0014' => { VR => 'LO', Name => 'ListOfMIMETypes' },
1884 # GEMS_PARM_01 (ref 4)
1885 '0043,1001' => { VR => 'SS', Name => 'BitmapOfPrescanOptions' },
1886 '0043,1002' => { VR => 'SS', Name => 'GradientOffsetInX' },
1887 '0043,1003' => { VR => 'SS', Name => 'GradientOffsetInY' },
1888 '0043,1004' => { VR => 'SS', Name => 'GradientOffsetInZ' },
1889 '0043,1005' => { VR => 'SS', Name => 'ImgIsOriginalOrUnoriginal' },
1890 '0043,1006' => { VR => 'SS', Name => 'NumberOfEPIShots' },
1891 '0043,1007' => { VR => 'SS', Name => 'ViewsPerSegment' },
1892 '0043,1008' => { VR => 'SS', Name => 'RespiratoryRateBpm' },
1893 '0043,1009' => { VR => 'SS', Name => 'RespiratoryTriggerPoint' },
1894 '0043,100A' => { VR => 'SS', Name => 'TypeOfReceiverUsed' },
1895 '0043,100B' => { VR => 'DS', Name => 'PeakRateOfChangeOfGradientField' },
1896 '0043,100C' => { VR => 'DS', Name => 'LimitsInUnitsOfPercent' },
1897 '0043,100D' => { VR => 'DS', Name => 'PSDEstimatedLimit' },
1898 '0043,100E' => { VR => 'DS', Name => 'PSDEstimatedLimitInTeslaPerSecond' },
1899 '0043,100F' => { VR => 'DS', Name => 'Saravghead' },
1900 '0043,1010' => { VR => 'US', Name => 'WindowValue' },
1901 '0043,1011' => { VR => 'US', Name => 'TotalInputViews' },
1902 '0043,1012' => { VR => 'SS', Name => 'X-RayChain' },
1903 '0043,1013' => { VR => 'SS', Name => 'DeconKernelParameters' },
1904 '0043,1014' => { VR => 'SS', Name => 'CalibrationParameters' },
1905 '0043,1015' => { VR => 'SS', Name => 'TotalOutputViews' },
1906 '0043,1016' => { VR => 'SS', Name => 'NumberOfOverranges' },
1907 '0043,1017' => { VR => 'DS', Name => 'IBHImageScaleFactors' },
1908 '0043,1018' => { VR => 'DS', Name => 'BBHCoefficients' },
1909 '0043,1019' => { VR => 'SS', Name => 'NumberOfBBHChainsToBlend' },
1910 '0043,101A' => { VR => 'SL', Name => 'StartingChannelNumber' },
1911 '0043,101B' => { VR => 'SS', Name => 'PpscanParameters' },
1912 '0043,101C' => { VR => 'SS', Name => 'GEImageIntegrity' },
1913 '0043,101D' => { VR => 'SS', Name => 'LevelValue' },
1914 '0043,101E' => { VR => 'DS', Name => 'DeltaStartTime' },
1915 '0043,101F' => { VR => 'SL', Name => 'MaxOverrangesInAView' },
1916 '0043,1020' => { VR => 'DS', Name => 'AvgOverrangesAllViews' },
1917 '0043,1021' => { VR => 'SS', Name => 'CorrectedAfterGlowTerms' },
1918 '0043,1025' => { VR => 'SS', Name => 'ReferenceChannels' },
1919 '0043,1026' => { VR => 'US', Name => 'NoViewsRefChansBlocked' },
1920 '0043,1027' => { VR => 'SH', Name => 'ScanPitchRatio' },
1921 '0043,1028' => { VR => 'OB', Name => 'UniqueImageIden' },
1922 '0043,1029' => { VR => 'OB', Name => 'HistogramTables' },
1923 '0043,102A' => { VR => 'OB', Name => 'UserDefinedData' },
1924 '0043,102B' => { VR => 'SS', Name => 'PrivateScanOptions' },
1925 '0043,102C' => { VR => 'SS', Name => 'EffectiveEchoSpacing' },
1926 '0043,102D' => { VR => 'SH', Name => 'StringSlopField1' },
1927 '0043,102E' => { VR => 'SH', Name => 'StringSlopField2' },
1928 '0043,102F' => { VR => 'SS', Name => 'RawDataType' },
1929 '0043,1030' => { VR => 'SS', Name => 'RawDataType' },
1930 '0043,1031' => { VR => 'DS', Name => 'RACordOfTargetReconCenter' },
1931 '0043,1032' => { VR => 'SS', Name => 'RawDataType' },
1932 '0043,1033' => { VR => 'FL', Name => 'NegScanspacing' },
1933 '0043,1034' => { VR => 'IS', Name => 'OffsetFrequency' },
1934 '0043,1035' => { VR => 'UL', Name => 'UserUsageTag' },
1935 '0043,1036' => { VR => 'UL', Name => 'UserFillMapMSW' },
1936 '0043,1037' => { VR => 'UL', Name => 'UserFillMapLSW' },
1937 '0043,1038' => { VR => 'FL', Name => 'User25-48' },
1938 '0043,1039' => { VR => 'IS', Name => 'SlopInt6-9' },
1939 '0043,1040' => { VR => 'FL', Name => 'TriggerOnPosition' },
1940 '0043,1041' => { VR => 'FL', Name => 'DegreeOfRotation' },
1941 '0043,1042' => { VR => 'SL', Name => 'DASTriggerSource' },
1942 '0043,1043' => { VR => 'SL', Name => 'DASFpaGain' },
1943 '0043,1044' => { VR => 'SL', Name => 'DASOutputSource' },
1944 '0043,1045' => { VR => 'SL', Name => 'DASAdInput' },
1945 '0043,1046' => { VR => 'SL', Name => 'DASCalMode' },
1946 '0043,1047' => { VR => 'SL', Name => 'DASCalFrequency' },
1947 '0043,1048' => { VR => 'SL', Name => 'DASRegXm' },
1948 '0043,1049' => { VR => 'SL', Name => 'DASAutoZero' },
1949 '0043,104A' => { VR => 'SS', Name => 'StartingChannelOfView' },
1950 '0043,104B' => { VR => 'SL', Name => 'DASXmPattern' },
1951 '0043,104C' => { VR => 'SS', Name => 'TGGCTriggerMode' },
1952 '0043,104D' => { VR => 'FL', Name => 'StartScanToXrayOnDelay' },
1953 '0043,104E' => { VR => 'FL', Name => 'DurationOfXrayOn' },
1954 '0043,1060' => { VR => 'IS', Name => 'SlopInt10-17' },
1955 '0043,1061' => { VR => 'UI', Name => 'ScannerStudyEntityUID' },
1956 '0043,1062' => { VR => 'SH', Name => 'ScannerStudyID' },
1957 '0043,106f' => { VR => 'DS', Name => 'ScannerTableEntry' },
1958 # ?
1959 '0044,0001' => { VR => 'ST', Name => 'ProductPackageIdentifier' },
1960 '0044,0002' => { VR => 'CS', Name => 'SubstanceAdministrationApproval' },
1961 '0044,0003' => { VR => 'LT', Name => 'ApprovalStatusFurtherDescription' },
1962 '0044,0004' => { VR => 'DT', Name => 'ApprovalStatusDateTime' },
1963 '0044,0007' => { VR => 'SQ', Name => 'ProductTypeCodeSequence' },
1964 '0044,0008' => { VR => 'LO', Name => 'ProductName' },
1965 '0044,0009' => { VR => 'LT', Name => 'ProductDescription' },
1966 '0044,000A' => { VR => 'LO', Name => 'ProductLotIdentifier' },
1967 '0044,000B' => { VR => 'DT', Name => 'ProductExpirationDateTime' },
1968 '0044,0010' => { VR => 'DT', Name => 'SubstanceAdministrationDateTime' },
1969 '0044,0011' => { VR => 'LO', Name => 'SubstanceAdministrationNotes' },
1970 '0044,0012' => { VR => 'LO', Name => 'SubstanceAdministrationDeviceID' },
1971 '0044,0013' => { VR => 'SQ', Name => 'ProductParameterSequence' },
1972 '0044,0019' => { VR => 'SQ', Name => 'SubstanceAdminParameterSeq' },
1973 # GEMS_HELIOS_01 (ref 4)
1974 '0045,1001' => { VR => 'LO', Name => 'NumberOfMacroRowsInDetector' },
1975 '0045,1002' => { VR => 'FL', Name => 'MacroWidthAtISOCenter' },
1976 '0045,1003' => { VR => 'SS', Name => 'DASType' },
1977 '0045,1004' => { VR => 'SS', Name => 'DASGain' },
1978 '0045,1005' => { VR => 'SS', Name => 'DASTemperature' },
1979 '0045,1006' => { VR => 'CS', Name => 'TableDirectionInOrOut' },
1980 '0045,1007' => { VR => 'FL', Name => 'ZSmoothingFactor' },
1981 '0045,1008' => { VR => 'SS', Name => 'ViewWeightingMode' },
1982 '0045,1009' => { VR => 'SS', Name => 'SigmaRowNumberWhichRowsWereUsed' },
1983 '0045,100A' => { VR => 'FL', Name => 'MinimumDasValueFoundInTheScanData' },
1984 '0045,100B' => { VR => 'FL', Name => 'MaximumOffsetShiftValueUsed' },
1985 '0045,100C' => { VR => 'SS', Name => 'NumberOfViewsShifted' },
1986 '0045,100D' => { VR => 'SS', Name => 'ZTrackingFlag' },
1987 '0045,100E' => { VR => 'FL', Name => 'MeanZError' },
1988 '0045,100F' => { VR => 'FL', Name => 'ZTrackingMaximumError' },
1989 '0045,1010' => { VR => 'SS', Name => 'StartingViewForRow2a' },
1990 '0045,1011' => { VR => 'SS', Name => 'NumberOfViewsInRow2a' },
1991 '0045,1012' => { VR => 'SS', Name => 'StartingViewForRow1a' },
1992 '0045,1013' => { VR => 'SS', Name => 'SigmaMode' },
1993 '0045,1014' => { VR => 'SS', Name => 'NumberOfViewsInRow1a' },
1994 '0045,1015' => { VR => 'SS', Name => 'StartingViewForRow2b' },
1995 '0045,1016' => { VR => 'SS', Name => 'NumberOfViewsInRow2b' },
1996 '0045,1017' => { VR => 'SS', Name => 'StartingViewForRow1b' },
1997 '0045,1018' => { VR => 'SS', Name => 'NumberOfViewsInRow1b' },
1998 '0045,1019' => { VR => 'SS', Name => 'AirFilterCalibrationDate' },
1999 '0045,101A' => { VR => 'SS', Name => 'AirFilterCalibrationTime' },
2000 '0045,101B' => { VR => 'SS', Name => 'PhantomCalibrationDate' },
2001 '0045,101C' => { VR => 'SS', Name => 'PhantomCalibrationTime' },
2002 '0045,101D' => { VR => 'SS', Name => 'ZSlopeCalibrationDate' },
2003 '0045,101E' => { VR => 'SS', Name => 'ZSlopeCalibrationTime' },
2004 '0045,101F' => { VR => 'SS', Name => 'CrosstalkCalibrationDate' },
2005 '0045,1020' => { VR => 'SS', Name => 'CrosstalkCalibrationTime' },
2006 '0045,1021' => { VR => 'SS', Name => 'IterboneOptionFlag' },
2007 '0045,1022' => { VR => 'SS', Name => 'PeristalticFlagOption' },
2008 '0046,0012' => { VR => 'LO', Name => 'LensDescription' },
2009 '0046,0014' => { VR => 'SQ', Name => 'RightLensSequence' },
2010 '0046,0015' => { VR => 'SQ', Name => 'LeftLensSequence' },
2011 '0046,0018' => { VR => 'SQ', Name => 'CylinderSequence' },
2012 '0046,0028' => { VR => 'SQ', Name => 'PrismSequence' },
2013 '0046,0030' => { VR => 'FD', Name => 'HorizontalPrismPower' },
2014 '0046,0032' => { VR => 'CS', Name => 'HorizontalPrismBase' },
2015 '0046,0034' => { VR => 'FD', Name => 'VerticalPrismPower' },
2016 '0046,0036' => { VR => 'CS', Name => 'VerticalPrismBase' },
2017 '0046,0038' => { VR => 'CS', Name => 'LensSegmentType' },
2018 '0046,0040' => { VR => 'FD', Name => 'OpticalTransmittance' },
2019 '0046,0042' => { VR => 'FD', Name => 'ChannelWidth' },
2020 '0046,0044' => { VR => 'FD', Name => 'PupilSize' },
2021 '0046,0046' => { VR => 'FD', Name => 'CornealSize' },
2022 '0046,0060' => { VR => 'FD', Name => 'DistancePupillaryDistance' },
2023 '0046,0062' => { VR => 'FD', Name => 'NearPupillaryDistance' },
2024 '0046,0064' => { VR => 'FD', Name => 'OtherPupillaryDistance' },
2025 '0046,0075' => { VR => 'FD', Name => 'RadiusOfCurvature' },
2026 '0046,0076' => { VR => 'FD', Name => 'KeratometricPower' },
2027 '0046,0077' => { VR => 'FD', Name => 'KeratometricAxis' },
2028 '0046,0092' => { VR => 'CS', Name => 'BackgroundColor' },
2029 '0046,0094' => { VR => 'CS', Name => 'Optotype' },
2030 '0046,0095' => { VR => 'CS', Name => 'OptotypePresentation' },
2031 '0046,0100' => { VR => 'SQ', Name => 'AddNearSequence' },
2032 '0046,0101' => { VR => 'SQ', Name => 'AddIntermediateSequence' },
2033 '0046,0102' => { VR => 'SQ', Name => 'AddOtherSequence' },
2034 '0046,0104' => { VR => 'FD', Name => 'AddPower' },
2035 '0046,0106' => { VR => 'FD', Name => 'ViewingDistance' },
2036 '0046,0125' => { VR => 'CS', Name => 'ViewingDistanceType' },
2037 '0046,0135' => { VR => 'SS', Name => 'VisualAcuityModifiers' },
2038 '0046,0137' => { VR => 'FD', Name => 'DecimalVisualAcuity' },
2039 '0046,0139' => { VR => 'LO', Name => 'OptotypeDetailedDefinition' },
2040 '0046,0146' => { VR => 'FD', Name => 'SpherePower' },
2041 '0046,0147' => { VR => 'FD', Name => 'CylinderPower' },
2042 # calibration group
2043 '0050,0004' => { VR => 'CS', Name => 'CalibrationImage' },
2044 '0050,0010' => { VR => 'SQ', Name => 'DeviceSequence' },
2045 '0050,0014' => { VR => 'DS', Name => 'DeviceLength' },
2046 '0050,0015' => { VR => 'FD', Name => 'ContainerComponentWidth' },
2047 '0050,0016' => { VR => 'DS', Name => 'DeviceDiameter' },
2048 '0050,0017' => { VR => 'CS', Name => 'DeviceDiameterUnits' },
2049 '0050,0018' => { VR => 'DS', Name => 'DeviceVolume' },
2050 '0050,0019' => { VR => 'DS', Name => 'InterMarkerDistance' },
2051 '0050,001B' => { VR => 'LO', Name => 'ContainerComponentID' },
2052 '0050,0020' => { VR => 'LO', Name => 'DeviceDescription' },
2053 # nuclear acquisition group
2054 '0054,0010' => { VR => 'US', Name => 'EnergyWindowVector' },
2055 '0054,0011' => { VR => 'US', Name => 'NumberOfEnergyWindows' },
2056 '0054,0012' => { VR => 'SQ', Name => 'EnergyWindowInformationSequence' },
2057 '0054,0013' => { VR => 'SQ', Name => 'EnergyWindowRangeSequence' },
2058 '0054,0014' => { VR => 'DS', Name => 'EnergyWindowLowerLimit' },
2059 '0054,0015' => { VR => 'DS', Name => 'EnergyWindowUpperLimit' },
2060 '0054,0016' => { VR => 'SQ', Name => 'RadiopharmaceuticalInformationSeq' },
2061 '0054,0017' => { VR => 'IS', Name => 'ResidualSyringeCounts' },
2062 '0054,0018' => { VR => 'SH', Name => 'EnergyWindowName' },
2063 '0054,0020' => { VR => 'US', Name => 'DetectorVector' },
2064 '0054,0021' => { VR => 'US', Name => 'NumberOfDetectors' },
2065 '0054,0022' => { VR => 'SQ', Name => 'DetectorInformationSequence' },
2066 '0054,0030' => { VR => 'US', Name => 'PhaseVector' },
2067 '0054,0031' => { VR => 'US', Name => 'NumberOfPhases' },
2068 '0054,0032' => { VR => 'SQ', Name => 'PhaseInformationSequence' },
2069 '0054,0033' => { VR => 'US', Name => 'NumberOfFramesInPhase' },
2070 '0054,0036' => { VR => 'IS', Name => 'PhaseDelay' },
2071 '0054,0038' => { VR => 'IS', Name => 'PauseBetweenFrames' },
2072 '0054,0039' => { VR => 'CS', Name => 'PhaseDescription' },
2073 '0054,0050' => { VR => 'US', Name => 'RotationVector' },
2074 '0054,0051' => { VR => 'US', Name => 'NumberOfRotations' },
2075 '0054,0052' => { VR => 'SQ', Name => 'RotationInformationSequence' },
2076 '0054,0053' => { VR => 'US', Name => 'NumberOfFramesInRotation' },
2077 '0054,0060' => { VR => 'US', Name => 'RRIntervalVector' },
2078 '0054,0061' => { VR => 'US', Name => 'NumberOfRRIntervals' },
2079 '0054,0062' => { VR => 'SQ', Name => 'GatedInformationSequence' },
2080 '0054,0063' => { VR => 'SQ', Name => 'DataInformationSequence' },
2081 '0054,0070' => { VR => 'US', Name => 'TimeSlotVector' },
2082 '0054,0071' => { VR => 'US', Name => 'NumberOfTimeSlots' },
2083 '0054,0072' => { VR => 'SQ', Name => 'TimeSlotInformationSequence' },
2084 '0054,0073' => { VR => 'DS', Name => 'TimeSlotTime' },
2085 '0054,0080' => { VR => 'US', Name => 'SliceVector' },
2086 '0054,0081' => { VR => 'US', Name => 'NumberOfSlices' },
2087 '0054,0090' => { VR => 'US', Name => 'AngularViewVector' },
2088 '0054,0100' => { VR => 'US', Name => 'TimeSliceVector' },
2089 '0054,0101' => { VR => 'US', Name => 'NumberOfTimeSlices' },
2090 '0054,0200' => { VR => 'DS', Name => 'StartAngle' },
2091 '0054,0202' => { VR => 'CS', Name => 'TypeOfDetectorMotion' },
2092 '0054,0210' => { VR => 'IS', Name => 'TriggerVector' },
2093 '0054,0211' => { VR => 'US', Name => 'NumberOfTriggersInPhase' },
2094 '0054,0220' => { VR => 'SQ', Name => 'ViewCodeSequence' },
2095 '0054,0222' => { VR => 'SQ', Name => 'ViewModifierCodeSequence' },
2096 '0054,0300' => { VR => 'SQ', Name => 'RadionuclideCodeSequence' },
2097 '0054,0302' => { VR => 'SQ', Name => 'AdministrationRouteCodeSequence' },
2098 '0054,0304' => { VR => 'SQ', Name => 'RadiopharmaceuticalCodeSequence' },
2099 '0054,0306' => { VR => 'SQ', Name => 'CalibrationDataSequence' },
2100 '0054,0308' => { VR => 'US', Name => 'EnergyWindowNumber' },
2101 '0054,0400' => { VR => 'SH', Name => 'ImageID' },
2102 '0054,0410' => { VR => 'SQ', Name => 'PatientOrientationCodeSequence' },
2103 '0054,0412' => { VR => 'SQ', Name => 'PatientOrientationModifierCodeSeq' },
2104 '0054,0414' => { VR => 'SQ', Name => 'PatientGantryRelationshipCodeSeq' },
2105 '0054,0500' => { VR => 'CS', Name => 'SliceProgressionDirection' },
2106 '0054,1000' => { VR => 'CS', Name => 'SeriesType' },
2107 '0054,1001' => { VR => 'CS', Name => 'Units' },
2108 '0054,1002' => { VR => 'CS', Name => 'CountsSource' },
2109 '0054,1004' => { VR => 'CS', Name => 'ReprojectionMethod' },
2110 '0054,1100' => { VR => 'CS', Name => 'RandomsCorrectionMethod' },
2111 '0054,1101' => { VR => 'LO', Name => 'AttenuationCorrectionMethod' },
2112 '0054,1102' => { VR => 'CS', Name => 'DecayCorrection' },
2113 '0054,1103' => { VR => 'LO', Name => 'ReconstructionMethod' },
2114 '0054,1104' => { VR => 'LO', Name => 'DetectorLinesOfResponseUsed' },
2115 '0054,1105' => { VR => 'LO', Name => 'ScatterCorrectionMethod' },
2116 '0054,1200' => { VR => 'DS', Name => 'AxialAcceptance' },
2117 '0054,1201' => { VR => 'IS', Name => 'AxialMash' },
2118 '0054,1202' => { VR => 'IS', Name => 'TransverseMash' },
2119 '0054,1203' => { VR => 'DS', Name => 'DetectorElementSize' },
2120 '0054,1210' => { VR => 'DS', Name => 'CoincidenceWindowWidth' },
2121 '0054,1220' => { VR => 'CS', Name => 'SecondaryCountsType' },
2122 '0054,1300' => { VR => 'DS', Name => 'FrameReferenceTime' },
2123 '0054,1310' => { VR => 'IS', Name => 'PrimaryCountsAccumulated' },
2124 '0054,1311' => { VR => 'IS', Name => 'SecondaryCountsAccumulated' },
2125 '0054,1320' => { VR => 'DS', Name => 'SliceSensitivityFactor' },
2126 '0054,1321' => { VR => 'DS', Name => 'DecayFactor' },
2127 '0054,1322' => { VR => 'DS', Name => 'DoseCalibrationFactor' },
2128 '0054,1323' => { VR => 'DS', Name => 'ScatterFractionFactor' },
2129 '0054,1324' => { VR => 'DS', Name => 'DeadTimeFactor' },
2130 '0054,1330' => { VR => 'US', Name => 'ImageIndex' },
2131 '0054,1400' => { VR => 'CS', Name => 'CountsIncluded' },
2132 '0054,1401' => { VR => 'CS', Name => 'DeadTimeCorrectionFlag' },
2133 '0060,3000' => { VR => 'SQ', Name => 'HistogramSequence' },
2134 '0060,3002' => { VR => 'US', Name => 'HistogramNumberOfBins' },
2135 '0060,3004' => { VR => 'US', Name => 'HistogramFirstBinValue' },
2136 '0060,3006' => { VR => 'US', Name => 'HistogramLastBinValue' },
2137 '0060,3008' => { VR => 'US', Name => 'HistogramBinWidth' },
2138 '0060,3010' => { VR => 'LO', Name => 'HistogramExplanation' },
2139 '0060,3020' => { VR => 'UL', Name => 'HistogramData' },
2140 '0062,0001' => { VR => 'CS', Name => 'SegmentationType' },
2141 '0062,0002' => { VR => 'SQ', Name => 'SegmentSequence' },
2142 '0062,0003' => { VR => 'SQ', Name => 'SegmentedPropertyCategoryCodeSeq' },
2143 '0062,0004' => { VR => 'US', Name => 'SegmentNumber' },
2144 '0062,0005' => { VR => 'LO', Name => 'SegmentLabel' },
2145 '0062,0006' => { VR => 'ST', Name => 'SegmentDescription' },
2146 '0062,0008' => { VR => 'CS', Name => 'SegmentAlgorithmType' },
2147 '0062,0009' => { VR => 'LO', Name => 'SegmentAlgorithmName' },
2148 '0062,000A' => { VR => 'SQ', Name => 'SegmentIdentificationSequence' },
2149 '0062,000B' => { VR => 'US', Name => 'ReferencedSegmentNumber' },
2150 '0062,000C' => { VR => 'US', Name => 'RecommendedDisplayGrayscaleValue' },
2151 '0062,000D' => { VR => 'US', Name => 'RecommendedDisplayCIELabValue' },
2152 '0062,000E' => { VR => 'US', Name => 'MaximumFractionalValue' },
2153 '0062,000F' => { VR => 'SQ', Name => 'SegmentedPropertyTypeCodeSequence' },
2154 '0062,0010' => { VR => 'CS', Name => 'SegmentationFractionalType' },
2155 '0064,0002' => { VR => 'SQ', Name => 'DeformableRegistrationSequence' },
2156 '0064,0003' => { VR => 'UI', Name => 'SourceFrameOfReferenceUID' },
2157 '0064,0005' => { VR => 'SQ', Name => 'DeformableRegistrationGridSequence' },
2158 '0064,0007' => { VR => 'UL', Name => 'GridDimensions' },
2159 '0064,0008' => { VR => 'FD', Name => 'GridResolution' },
2160 '0064,0009' => { VR => 'OF', Name => 'VectorGridData' },
2161 '0064,000F' => { VR => 'SQ', Name => 'PreDeformationMatrixRegistSeq' },
2162 '0064,0010' => { VR => 'SQ', Name => 'PostDeformationMatrixRegistSeq' },
2163 '0066,0001' => { VR => 'UL', Name => 'NumberOfSurfaces' },
2164 '0066,0002' => { VR => 'SQ', Name => 'SurfaceSequence' },
2165 '0066,0003' => { VR => 'UL', Name => 'SurfaceNumber' },
2166 '0066,0004' => { VR => 'LT', Name => 'SurfaceComments' },
2167 '0066,0009' => { VR => 'CS', Name => 'SurfaceProcessing' },
2168 '0066,000A' => { VR => 'FL', Name => 'SurfaceProcessingRatio' },
2169 '0066,000E' => { VR => 'CS', Name => 'FiniteVolume' },
2170 '0066,0010' => { VR => 'CS', Name => 'Manifold' },
2171 '0066,0011' => { VR => 'SQ', Name => 'SurfacePointsSequence' },
2172 '0066,0015' => { VR => 'UL', Name => 'NumberOfSurfacePoints' },
2173 '0066,0016' => { VR => 'OF', Name => 'PointCoordinatesData' },
2174 '0066,0017' => { VR => 'FL', Name => 'PointPositionAccuracy' },
2175 '0066,0018' => { VR => 'FL', Name => 'MeanPointDistance' },
2176 '0066,0019' => { VR => 'FL', Name => 'MaximumPointDistance' },
2177 '0066,001B' => { VR => 'FL', Name => 'AxisOfRotation' },
2178 '0066,001C' => { VR => 'FL', Name => 'CenterOfRotation' },
2179 '0066,001E' => { VR => 'UL', Name => 'NumberOfVectors' },
2180 '0066,001F' => { VR => 'US', Name => 'VectorDimensionality' },
2181 '0066,0020' => { VR => 'FL', Name => 'VectorAccuracy' },
2182 '0066,0021' => { VR => 'OF', Name => 'VectorCoordinateData' },
2183 '0066,0023' => { VR => 'OW', Name => 'TrianglePointIndexList' },
2184 '0066,0024' => { VR => 'OW', Name => 'EdgePointIndexList' },
2185 '0066,0025' => { VR => 'OW', Name => 'VertexPointIndexList' },
2186 '0066,0026' => { VR => 'SQ', Name => 'TriangleStripSequence' },
2187 '0066,0027' => { VR => 'SQ', Name => 'TriangleFanSequence' },
2188 '0066,0028' => { VR => 'SQ', Name => 'LineSequence' },
2189 '0066,0029' => { VR => 'OW', Name => 'PrimitivePointIndexList' },
2190 '0066,002A' => { VR => 'UL', Name => 'SurfaceCount' },
2191 '0066,002F' => { VR => 'SQ', Name => 'AlgorithmFamilyCodeSequ' },
2192 '0066,0031' => { VR => 'LO', Name => 'AlgorithmVersion' },
2193 '0066,0032' => { VR => 'LT', Name => 'AlgorithmParameters' },
2194 '0066,0034' => { VR => 'SQ', Name => 'FacetSequence' },
2195 '0066,0036' => { VR => 'LO', Name => 'AlgorithmName' },
2196 '0070,0001' => { VR => 'SQ', Name => 'GraphicAnnotationSequence' },
2197 '0070,0002' => { VR => 'CS', Name => 'GraphicLayer' },
2198 '0070,0003' => { VR => 'CS', Name => 'BoundingBoxAnnotationUnits' },
2199 '0070,0004' => { VR => 'CS', Name => 'AnchorPointAnnotationUnits' },
2200 '0070,0005' => { VR => 'CS', Name => 'GraphicAnnotationUnits' },
2201 '0070,0006' => { VR => 'ST', Name => 'UnformattedTextValue' },
2202 '0070,0008' => { VR => 'SQ', Name => 'TextObjectSequence' },
2203 '0070,0009' => { VR => 'SQ', Name => 'GraphicObjectSequence' },
2204 '0070,0010' => { VR => 'FL', Name => 'BoundingBoxTopLeftHandCorner' },
2205 '0070,0011' => { VR => 'FL', Name => 'BoundingBoxBottomRightHandCorner' },
2206 '0070,0012' => { VR => 'CS', Name => 'BoundingBoxTextHorizJustification' },
2207 '0070,0014' => { VR => 'FL', Name => 'AnchorPoint' },
2208 '0070,0015' => { VR => 'CS', Name => 'AnchorPointVisibility' },
2209 '0070,0020' => { VR => 'US', Name => 'GraphicDimensions' },
2210 '0070,0021' => { VR => 'US', Name => 'NumberOfGraphicPoints' },
2211 '0070,0022' => { VR => 'FL', Name => 'GraphicData' },
2212 '0070,0023' => { VR => 'CS', Name => 'GraphicType' },
2213 '0070,0024' => { VR => 'CS', Name => 'GraphicFilled' },
2214 '0070,0040' => { VR => 'IS', Name => 'ImageRotationRetired' },
2215 '0070,0041' => { VR => 'CS', Name => 'ImageHorizontalFlip' },
2216 '0070,0042' => { VR => 'US', Name => 'ImageRotation' },
2217 '0070,0050' => { VR => 'US', Name => 'DisplayedAreaTopLeftTrial' },
2218 '0070,0051' => { VR => 'US', Name => 'DisplayedAreaBottomRightTrial' },
2219 '0070,0052' => { VR => 'SL', Name => 'DisplayedAreaTopLeft' },
2220 '0070,0053' => { VR => 'SL', Name => 'DisplayedAreaBottomRight' },
2221 '0070,005A' => { VR => 'SQ', Name => 'DisplayedAreaSelectionSequence' },
2222 '0070,0060' => { VR => 'SQ', Name => 'GraphicLayerSequence' },
2223 '0070,0062' => { VR => 'IS', Name => 'GraphicLayerOrder' },
2224 '0070,0066' => { VR => 'US', Name => 'GraphicLayerRecDisplayGraysclValue' },
2225 '0070,0067' => { VR => 'US', Name => 'GraphicLayerRecDisplayRGBValue' },
2226 '0070,0068' => { VR => 'LO', Name => 'GraphicLayerDescription' },
2227 '0070,0080' => { VR => 'CS', Name => 'ContentLabel' },
2228 '0070,0081' => { VR => 'LO', Name => 'ContentDescription' },
2229 '0070,0082' => { VR => 'DA', Name => 'PresentationCreationDate' },
2230 '0070,0083' => { VR => 'TM', Name => 'PresentationCreationTime' },
2231 '0070,0084' => { VR => 'PN', Name => 'ContentCreatorName' },
2232 '0070,0086' => { VR => 'SQ', Name => 'ContentCreatorIDCodeSequence' },
2233 '0070,0100' => { VR => 'CS', Name => 'PresentationSizeMode' },
2234 '0070,0101' => { VR => 'DS', Name => 'PresentationPixelSpacing' },
2235 '0070,0102' => { VR => 'IS', Name => 'PresentationPixelAspectRatio' },
2236 '0070,0103' => { VR => 'FL', Name => 'PresentationPixelMagRatio' },
2237 '0070,0306' => { VR => 'CS', Name => 'ShapeType' },
2238 '0070,0308' => { VR => 'SQ', Name => 'RegistrationSequence' },
2239 '0070,0309' => { VR => 'SQ', Name => 'MatrixRegistrationSequence' },
2240 '0070,030A' => { VR => 'SQ', Name => 'MatrixSequence' },
2241 '0070,030C' => { VR => 'CS', Name => 'FrameOfRefTransformationMatrixType' },
2242 '0070,030D' => { VR => 'SQ', Name => 'RegistrationTypeCodeSequence' },
2243 '0070,030F' => { VR => 'ST', Name => 'FiducialDescription' },
2244 '0070,0310' => { VR => 'SH', Name => 'FiducialIdentifier' },
2245 '0070,0311' => { VR => 'SQ', Name => 'FiducialIdentifierCodeSequence' },
2246 '0070,0312' => { VR => 'FD', Name => 'ContourUncertaintyRadius' },
2247 '0070,0314' => { VR => 'SQ', Name => 'UsedFiducialsSequence' },
2248 '0070,0318' => { VR => 'SQ', Name => 'GraphicCoordinatesDataSequence' },
2249 '0070,031A' => { VR => 'UI', Name => 'FiducialUID' },
2250 '0070,031C' => { VR => 'SQ', Name => 'FiducialSetSequence' },
2251 '0070,031E' => { VR => 'SQ', Name => 'FiducialSequence' },
2252 '0070,0401' => { VR => 'US', Name => 'GraphicLayerRecomDisplayCIELabVal' },
2253 '0070,0402' => { VR => 'SQ', Name => 'BlendingSequence' },
2254 '0070,0403' => { VR => 'FL', Name => 'RelativeOpacity' },
2255 '0070,0404' => { VR => 'SQ', Name => 'ReferencedSpatialRegistrationSeq' },
2256 '0070,0405' => { VR => 'CS', Name => 'BlendingPosition' },
2257 '0072,0002' => { VR => 'SH', Name => 'HangingProtocolName' },
2258 '0072,0004' => { VR => 'LO', Name => 'HangingProtocolDescription' },
2259 '0072,0006' => { VR => 'CS', Name => 'HangingProtocolLevel' },
2260 '0072,0008' => { VR => 'LO', Name => 'HangingProtocolCreator' },
2261 '0072,000A' => { VR => 'DT', Name => 'HangingProtocolCreationDateTime' },
2262 '0072,000C' => { VR => 'SQ', Name => 'HangingProtocolDefinitionSequence' },
2263 '0072,000E' => { VR => 'SQ', Name => 'HangingProtocolUserIDCodeSequence' },
2264 '0072,0010' => { VR => 'LO', Name => 'HangingProtocolUserGroupName' },
2265 '0072,0012' => { VR => 'SQ', Name => 'SourceHangingProtocolSequence' },
2266 '0072,0014' => { VR => 'US', Name => 'NumberOfPriorsReferenced' },
2267 '0072,0020' => { VR => 'SQ', Name => 'ImageSetsSequence' },
2268 '0072,0022' => { VR => 'SQ', Name => 'ImageSetSelectorSequence' },
2269 '0072,0024' => { VR => 'CS', Name => 'ImageSetSelectorUsageFlag' },
2270 '0072,0026' => { VR => 'AT', Name => 'SelectorAttribute' },
2271 '0072,0028' => { VR => 'US', Name => 'SelectorValueNumber' },
2272 '0072,0030' => { VR => 'SQ', Name => 'TimeBasedImageSetsSequence' },
2273 '0072,0032' => { VR => 'US', Name => 'ImageSetNumber' },
2274 '0072,0034' => { VR => 'CS', Name => 'ImageSetSelectorCategory' },
2275 '0072,0038' => { VR => 'US', Name => 'RelativeTime' },
2276 '0072,003A' => { VR => 'CS', Name => 'RelativeTimeUnits' },
2277 '0072,003C' => { VR => 'SS', Name => 'AbstractPriorValue' },
2278 '0072,003E' => { VR => 'SQ', Name => 'AbstractPriorCodeSequence' },
2279 '0072,0040' => { VR => 'LO', Name => 'ImageSetLabel' },
2280 '0072,0050' => { VR => 'CS', Name => 'SelectorAttributeVR' },
2281 '0072,0052' => { VR => 'AT', Name => 'SelectorSequencePointer' },
2282 '0072,0054' => { VR => 'LO', Name => 'SelectorSeqPointerPrivateCreator' },
2283 '0072,0056' => { VR => 'LO', Name => 'SelectorAttributePrivateCreator' },
2284 '0072,0060' => { VR => 'AT', Name => 'SelectorATValue' },
2285 '0072,0062' => { VR => 'CS', Name => 'SelectorCSValue' },
2286 '0072,0064' => { VR => 'IS', Name => 'SelectorISValue' },
2287 '0072,0066' => { VR => 'LO', Name => 'SelectorLOValue' },
2288 '0072,0068' => { VR => 'LT', Name => 'SelectorLTValue' },
2289 '0072,006A' => { VR => 'PN', Name => 'SelectorPNValue' },
2290 '0072,006C' => { VR => 'SH', Name => 'SelectorSHValue' },
2291 '0072,006E' => { VR => 'ST', Name => 'SelectorSTValue' },
2292 '0072,0070' => { VR => 'UT', Name => 'SelectorUTValue' },
2293 '0072,0072' => { VR => 'DS', Name => 'SelectorDSValue' },
2294 '0072,0074' => { VR => 'FD', Name => 'SelectorFDValue' },
2295 '0072,0076' => { VR => 'FL', Name => 'SelectorFLValue' },
2296 '0072,0078' => { VR => 'UL', Name => 'SelectorULValue' },
2297 '0072,007A' => { VR => 'US', Name => 'SelectorUSValue' },
2298 '0072,007C' => { VR => 'SL', Name => 'SelectorSLValue' },
2299 '0072,007E' => { VR => 'SS', Name => 'SelectorSSValue' },
2300 '0072,0080' => { VR => 'SQ', Name => 'SelectorCodeSequenceValue' },
2301 '0072,0100' => { VR => 'US', Name => 'NumberOfScreens' },
2302 '0072,0102' => { VR => 'SQ', Name => 'NominalScreenDefinitionSequence' },
2303 '0072,0104' => { VR => 'US', Name => 'NumberOfVerticalPixels' },
2304 '0072,0106' => { VR => 'US', Name => 'NumberOfHorizontalPixels' },
2305 '0072,0108' => { VR => 'FD', Name => 'DisplayEnvironmentSpatialPosition' },
2306 '0072,010A' => { VR => 'US', Name => 'ScreenMinimumGrayscaleBitDepth' },
2307 '0072,010C' => { VR => 'US', Name => 'ScreenMinimumColorBitDepth' },
2308 '0072,010E' => { VR => 'US', Name => 'ApplicationMaximumRepaintTime' },
2309 '0072,0200' => { VR => 'SQ', Name => 'DisplaySetsSequence' },
2310 '0072,0202' => { VR => 'US', Name => 'DisplaySetNumber' },
2311 '0072,0203' => { VR => 'LO', Name => 'DisplaySetLabel' },
2312 '0072,0204' => { VR => 'US', Name => 'DisplaySetPresentationGroup' },
2313 '0072,0206' => { VR => 'LO', Name => 'DisplaySetPresentationGroupDescr' },
2314 '0072,0208' => { VR => 'CS', Name => 'PartialDataDisplayHandling' },
2315 '0072,0210' => { VR => 'SQ', Name => 'SynchronizedScrollingSequence' },
2316 '0072,0212' => { VR => 'US', Name => 'DisplaySetScrollingGroup' },
2317 '0072,0214' => { VR => 'SQ', Name => 'NavigationIndicatorSequence' },
2318 '0072,0216' => { VR => 'US', Name => 'NavigationDisplaySet' },
2319 '0072,0218' => { VR => 'US', Name => 'ReferenceDisplaySets' },
2320 '0072,0300' => { VR => 'SQ', Name => 'ImageBoxesSequence' },
2321 '0072,0302' => { VR => 'US', Name => 'ImageBoxNumber' },
2322 '0072,0304' => { VR => 'CS', Name => 'ImageBoxLayoutType' },
2323 '0072,0306' => { VR => 'US', Name => 'ImageBoxTileHorizontalDimension' },
2324 '0072,0308' => { VR => 'US', Name => 'ImageBoxTileVerticalDimension' },
2325 '0072,0310' => { VR => 'CS', Name => 'ImageBoxScrollDirection' },
2326 '0072,0312' => { VR => 'CS', Name => 'ImageBoxSmallScrollType' },
2327 '0072,0314' => { VR => 'US', Name => 'ImageBoxSmallScrollAmount' },
2328 '0072,0316' => { VR => 'CS', Name => 'ImageBoxLargeScrollType' },
2329 '0072,0318' => { VR => 'US', Name => 'ImageBoxLargeScrollAmount' },
2330 '0072,0320' => { VR => 'US', Name => 'ImageBoxOverlapPriority' },
2331 '0072,0330' => { VR => 'FD', Name => 'CineRelativeToRealTime' },
2332 '0072,0400' => { VR => 'SQ', Name => 'FilterOperationsSequence' },
2333 '0072,0402' => { VR => 'CS', Name => 'FilterByCategory' },
2334 '0072,0404' => { VR => 'CS', Name => 'FilterByAttributePresence' },
2335 '0072,0406' => { VR => 'CS', Name => 'FilterByOperator' },
2336 '0072,0432' => { VR => 'US', Name => 'SynchronizedImageBoxList' },
2337 '0072,0434' => { VR => 'CS', Name => 'TypeOfSynchronization' },
2338 '0072,0500' => { VR => 'CS', Name => 'BlendingOperationType' },
2339 '0072,0510' => { VR => 'CS', Name => 'ReformattingOperationType' },
2340 '0072,0512' => { VR => 'FD', Name => 'ReformattingThickness' },
2341 '0072,0514' => { VR => 'FD', Name => 'ReformattingInterval' },
2342 '0072,0516' => { VR => 'CS', Name => 'ReformattingOpInitialViewDir' },
2343 '0072,0520' => { VR => 'CS', Name => '3DRenderingType' },
2344 '0072,0600' => { VR => 'SQ', Name => 'SortingOperationsSequence' },
2345 '0072,0602' => { VR => 'CS', Name => 'SortByCategory' },
2346 '0072,0604' => { VR => 'CS', Name => 'SortingDirection' },
2347 '0072,0700' => { VR => 'CS', Name => 'DisplaySetPatientOrientation' },
2348 '0072,0702' => { VR => 'CS', Name => 'VOIType' },
2349 '0072,0704' => { VR => 'CS', Name => 'PseudoColorType' },
2350 '0072,0706' => { VR => 'CS', Name => 'ShowGrayscaleInverted' },
2351 '0072,0710' => { VR => 'CS', Name => 'ShowImageTrueSizeFlag' },
2352 '0072,0712' => { VR => 'CS', Name => 'ShowGraphicAnnotationFlag' },
2353 '0072,0714' => { VR => 'CS', Name => 'ShowPatientDemographicsFlag' },
2354 '0072,0716' => { VR => 'CS', Name => 'ShowAcquisitionTechniquesFlag' },
2355 '0072,0717' => { VR => 'CS', Name => 'DisplaySetHorizontalJustification' },
2356 '0072,0718' => { VR => 'CS', Name => 'DisplaySetVerticalJustification' },
2357 '0074,1000' => { VR => 'CS', Name => 'UnifiedProcedureStepState' },
2358 '0074,1002' => { VR => 'SQ', Name => 'UPSProgressInformationSequence' },
2359 '0074,1004' => { VR => 'DS', Name => 'UnifiedProcedureStepProgress' },
2360 '0074,1006' => { VR => 'ST', Name => 'UnifiedProcedureStepProgressDescr' },
2361 '0074,1008' => { VR => 'SQ', Name => 'UnifiedProcedureStepComURISeq' },
2362 '0074,100a' => { VR => 'ST', Name => 'ContactURI' },
2363 '0074,100c' => { VR => 'LO', Name => 'ContactDisplayName' },
2364 '0074,1020' => { VR => 'SQ', Name => 'BeamTaskSequence' },
2365 '0074,1022' => { VR => 'CS', Name => 'BeamTaskType' },
2366 '0074,1024' => { VR => 'IS', Name => 'BeamOrderIndex' },
2367 '0074,1030' => { VR => 'SQ', Name => 'DeliveryVerificationImageSequence' },
2368 '0074,1032' => { VR => 'CS', Name => 'VerificationImageTiming' },
2369 '0074,1034' => { VR => 'CS', Name => 'DoubleExposureFlag' },
2370 '0074,1036' => { VR => 'CS', Name => 'DoubleExposureOrdering' },
2371 '0074,1038' => { VR => 'DS', Name => 'DoubleExposureMeterset' },
2372 '0074,103A' => { VR => 'DS', Name => 'DoubleExposureFieldDelta' },
2373 '0074,1040' => { VR => 'SQ', Name => 'RelatedReferenceRTImageSequence' },
2374 '0074,1042' => { VR => 'SQ', Name => 'GeneralMachineVerificationSequence' },
2375 '0074,1044' => { VR => 'SQ', Name => 'ConventionalMachineVerificationSeq' },
2376 '0074,1046' => { VR => 'SQ', Name => 'IonMachineVerificationSequence' },
2377 '0074,1048' => { VR => 'SQ', Name => 'FailedAttributesSequence' },
2378 '0074,104A' => { VR => 'SQ', Name => 'OverriddenAttributesSequence' },
2379 '0074,104C' => { VR => 'SQ', Name => 'ConventionalControlPointVerifySeq' },
2380 '0074,104E' => { VR => 'SQ', Name => 'IonControlPointVerificationSeq' },
2381 '0074,1050' => { VR => 'SQ', Name => 'AttributeOccurrenceSequence' },
2382 '0074,1052' => { VR => 'AT', Name => 'AttributeOccurrencePointer' },
2383 '0074,1054' => { VR => 'UL', Name => 'AttributeItemSelector' },
2384 '0074,1056' => { VR => 'LO', Name => 'AttributeOccurrencePrivateCreator' },
2385 '0074,1200' => { VR => 'CS', Name => 'ScheduledProcedureStepPriority' },
2386 '0074,1202' => { VR => 'LO', Name => 'WorklistLabel' },
2387 '0074,1204' => { VR => 'LO', Name => 'ProcedureStepLabel' },
2388 '0074,1210' => { VR => 'SQ', Name => 'ScheduledProcessingParametersSeq' },
2389 '0074,1212' => { VR => 'SQ', Name => 'PerformedProcessingParametersSeq' },
2390 '0074,1216' => { VR => 'SQ', Name => 'UPSPerformedProcedureSequence' },
2391 '0074,1220' => { VR => 'SQ', Name => 'RelatedProcedureStepSequence' },
2392 '0074,1222' => { VR => 'LO', Name => 'ProcedureStepRelationshipType' },
2393 '0074,1230' => { VR => 'LO', Name => 'DeletionLock' },
2394 '0074,1234' => { VR => 'AE', Name => 'ReceivingAE' },
2395 '0074,1236' => { VR => 'AE', Name => 'RequestingAE' },
2396 '0074,1238' => { VR => 'LT', Name => 'ReasonForCancellation' },
2397 '0074,1242' => { VR => 'CS', Name => 'SCPStatus' },
2398 '0074,1244' => { VR => 'CS', Name => 'SubscriptionListStatus' },
2399 '0074,1246' => { VR => 'CS', Name => 'UPSListStatus' },
2400 # storage group
2401 '0088,0130' => { VR => 'SH', Name => 'StorageMediaFileSetID' },
2402 '0088,0140' => { VR => 'UI', Name => 'StorageMediaFileSetUID' },
2403 '0088,0200' => { VR => 'SQ', Name => 'IconImageSequence' },
2404 '0088,0904' => { VR => 'LO', Name => 'TopicTitle' },
2405 '0088,0906' => { VR => 'ST', Name => 'TopicSubject' },
2406 '0088,0910' => { VR => 'LO', Name => 'TopicAuthor' },
2407 '0088,0912' => { VR => 'LO', Name => 'TopicKeywords' },
2408 '0100,0410' => { VR => 'CS', Name => 'SOPInstanceStatus' },
2409 '0100,0420' => { VR => 'DT', Name => 'SOPAuthorizationDateAndTime' },
2410 '0100,0424' => { VR => 'LT', Name => 'SOPAuthorizationComment' },
2411 '0100,0426' => { VR => 'LO', Name => 'AuthorizationEquipmentCertNumber' },
2412 '0400,0005' => { VR => 'US', Name => 'MACIDNumber' },
2413 '0400,0010' => { VR => 'UI', Name => 'MACCalculationTransferSyntaxUID' },
2414 '0400,0015' => { VR => 'CS', Name => 'MACAlgorithm' },
2415 '0400,0020' => { VR => 'AT', Name => 'DataElementsSigned' },
2416 '0400,0100' => { VR => 'UI', Name => 'DigitalSignatureUID' },
2417 '0400,0105' => { VR => 'DT', Name => 'DigitalSignatureDateTime' },
2418 '0400,0110' => { VR => 'CS', Name => 'CertificateType' },
2419 '0400,0115' => { VR => 'OB', Name => 'CertificateOfSigner' },
2420 '0400,0120' => { VR => 'OB', Name => 'Signature' },
2421 '0400,0305' => { VR => 'CS', Name => 'CertifiedTimestampType' },
2422 '0400,0310' => { VR => 'OB', Name => 'CertifiedTimestamp' },
2423 '0400,0401' => { VR => 'SQ', Name => 'DigitalSignaturePurposeCodeSeq' },
2424 '0400,0402' => { VR => 'SQ', Name => 'ReferencedDigitalSignatureSeq' },
2425 '0400,0403' => { VR => 'SQ', Name => 'ReferencedSOPInstanceMACSeq' },
2426 '0400,0404' => { VR => 'OB', Name => 'MAC' },
2427 '0400,0500' => { VR => 'SQ', Name => 'EncryptedAttributesSequence' },
2428 '0400,0510' => { VR => 'UI', Name => 'EncryptedContentTransferSyntaxUID' },
2429 '0400,0520' => { VR => 'OB', Name => 'EncryptedContent' },
2430 '0400,0550' => { VR => 'SQ', Name => 'ModifiedAttributesSequence' },
2431 '0400,0561' => { VR => 'SQ', Name => 'OriginalAttributesSequence' },
2432 '0400,0562' => { VR => 'DT', Name => 'AttributeModificationDateTime' },
2433 '0400,0563' => { VR => 'LO', Name => 'ModifyingSystem' },
2434 '0400,0564' => { VR => 'LO', Name => 'SourceOfPreviousValues' },
2435 '0400,0565' => { VR => 'CS', Name => 'ReasonForTheAttributeModification' },
2436 '1000,xxx0' => { VR => 'US', Name => 'EscapeTriplet' },
2437 '1000,xxx1' => { VR => 'US', Name => 'RunLengthTriplet' },
2438 '1000,xxx2' => { VR => 'US', Name => 'HuffmanTableSize' },
2439 '1000,xxx3' => { VR => 'US', Name => 'HuffmanTableTriplet' },
2440 '1000,xxx4' => { VR => 'US', Name => 'ShiftTableSize' },
2441 '1000,xxx5' => { VR => 'US', Name => 'ShiftTableTriplet' },
2442 '1010,xxxx' => { VR => 'US', Name => 'ZonalMap' },
2443 '2000,0010' => { VR => 'IS', Name => 'NumberOfCopies' },
2444 '2000,001E' => { VR => 'SQ', Name => 'PrinterConfigurationSequence' },
2445 '2000,0020' => { VR => 'CS', Name => 'PrintPriority' },
2446 '2000,0030' => { VR => 'CS', Name => 'MediumType' },
2447 '2000,0040' => { VR => 'CS', Name => 'FilmDestination' },
2448 '2000,0050' => { VR => 'LO', Name => 'FilmSessionLabel' },
2449 '2000,0060' => { VR => 'IS', Name => 'MemoryAllocation' },
2450 '2000,0061' => { VR => 'IS', Name => 'MaximumMemoryAllocation' },
2451 '2000,0062' => { VR => 'CS', Name => 'ColorImagePrintingFlag' },
2452 '2000,0063' => { VR => 'CS', Name => 'CollationFlag' },
2453 '2000,0065' => { VR => 'CS', Name => 'AnnotationFlag' },
2454 '2000,0067' => { VR => 'CS', Name => 'ImageOverlayFlag' },
2455 '2000,0069' => { VR => 'CS', Name => 'PresentationLUTFlag' },
2456 '2000,006A' => { VR => 'CS', Name => 'ImageBoxPresentationLUTFlag' },
2457 '2000,00A0' => { VR => 'US', Name => 'MemoryBitDepth' },
2458 '2000,00A1' => { VR => 'US', Name => 'PrintingBitDepth' },
2459 '2000,00A2' => { VR => 'SQ', Name => 'MediaInstalledSequence' },
2460 '2000,00A4' => { VR => 'SQ', Name => 'OtherMediaAvailableSequence' },
2461 '2000,00A8' => { VR => 'SQ', Name => 'SupportedImageDisplayFormatSeq' },
2462 '2000,0500' => { VR => 'SQ', Name => 'ReferencedFilmBoxSequence' },
2463 '2000,0510' => { VR => 'SQ', Name => 'ReferencedStoredPrintSequence' },
2464 # film box group
2465 '2010,0010' => { VR => 'ST', Name => 'ImageDisplayFormat' },
2466 '2010,0030' => { VR => 'CS', Name => 'AnnotationDisplayFormatID' },
2467 '2010,0040' => { VR => 'CS', Name => 'FilmOrientation' },
2468 '2010,0050' => { VR => 'CS', Name => 'FilmSizeID' },
2469 '2010,0052' => { VR => 'CS', Name => 'PrinterResolutionID' },
2470 '2010,0054' => { VR => 'CS', Name => 'DefaultPrinterResolutionID' },
2471 '2010,0060' => { VR => 'CS', Name => 'MagnificationType' },
2472 '2010,0080' => { VR => 'CS', Name => 'SmoothingType' },
2473 '2010,00A6' => { VR => 'CS', Name => 'DefaultMagnificationType' },
2474 '2010,00A7' => { VR => 'CS', Name => 'OtherMagnificationTypesAvailable' },
2475 '2010,00A8' => { VR => 'CS', Name => 'DefaultSmoothingType' },
2476 '2010,00A9' => { VR => 'CS', Name => 'OtherSmoothingTypesAvailable' },
2477 '2010,0100' => { VR => 'CS', Name => 'BorderDensity' },
2478 '2010,0110' => { VR => 'CS', Name => 'EmptyImageDensity' },
2479 '2010,0120' => { VR => 'US', Name => 'MinDensity' },
2480 '2010,0130' => { VR => 'US', Name => 'MaxDensity' },
2481 '2010,0140' => { VR => 'CS', Name => 'Trim' },
2482 '2010,0150' => { VR => 'ST', Name => 'ConfigurationInformation' },
2483 '2010,0152' => { VR => 'LT', Name => 'ConfigurationInformationDescr' },
2484 '2010,0154' => { VR => 'IS', Name => 'MaximumCollatedFilms' },
2485 '2010,015E' => { VR => 'US', Name => 'Illumination' },
2486 '2010,0160' => { VR => 'US', Name => 'ReflectedAmbientLight' },
2487 '2010,0376' => { VR => 'DS', Name => 'PrinterPixelSpacing' },
2488 '2010,0500' => { VR => 'SQ', Name => 'ReferencedFilmSessionSequence' },
2489 '2010,0510' => { VR => 'SQ', Name => 'ReferencedImageBoxSequence' },
2490 '2010,0520' => { VR => 'SQ', Name => 'ReferencedBasicAnnotationBoxSeq' },
2491 # image box group
2492 '2020,0010' => { VR => 'US', Name => 'ImageBoxPosition' },
2493 '2020,0020' => { VR => 'CS', Name => 'Polarity' },
2494 '2020,0030' => { VR => 'DS', Name => 'RequestedImageSize' },
2495 '2020,0040' => { VR => 'CS', Name => 'RequestedDecimate-CropBehavior' },
2496 '2020,0050' => { VR => 'CS', Name => 'RequestedResolutionID' },
2497 '2020,00A0' => { VR => 'CS', Name => 'RequestedImageSizeFlag' },
2498 '2020,00A2' => { VR => 'CS', Name => 'DecimateCropResult' },
2499 '2020,0110' => { VR => 'SQ', Name => 'BasicGrayscaleImageSequence' },
2500 '2020,0111' => { VR => 'SQ', Name => 'BasicColorImageSequence' },
2501 '2020,0130' => { VR => 'SQ', Name => 'ReferencedImageOverlayBoxSequence' },
2502 '2020,0140' => { VR => 'SQ', Name => 'ReferencedVOILUTBoxSequence' },
2503 # annotation group
2504 '2030,0010' => { VR => 'US', Name => 'AnnotationPosition' },
2505 '2030,0020' => { VR => 'LO', Name => 'TextString' },
2506 # overlay box group
2507 '2040,0010' => { VR => 'SQ', Name => 'ReferencedOverlayPlaneSequence' },
2508 '2040,0011' => { VR => 'US', Name => 'ReferencedOverlayPlaneGroups' },
2509 '2040,0020' => { VR => 'SQ', Name => 'OverlayPixelDataSequence' },
2510 '2040,0060' => { VR => 'CS', Name => 'OverlayMagnificationType' },
2511 '2040,0070' => { VR => 'CS', Name => 'OverlaySmoothingType' },
2512 '2040,0072' => { VR => 'CS', Name => 'OverlayOrImageMagnification' },
2513 '2040,0074' => { VR => 'US', Name => 'MagnifyToNumberOfColumns' },
2514 '2040,0080' => { VR => 'CS', Name => 'OverlayForegroundDensity' },
2515 '2040,0082' => { VR => 'CS', Name => 'OverlayBackgroundDensity' },
2516 '2040,0090' => { VR => 'CS', Name => 'OverlayMode' },
2517 '2040,0100' => { VR => 'CS', Name => 'ThresholdDensity' },
2518 '2040,0500' => { VR => 'SQ', Name => 'ReferencedImageBoxSequence' },
2519 '2050,0010' => { VR => 'SQ', Name => 'PresentationLUTSequence' },
2520 '2050,0020' => { VR => 'CS', Name => 'PresentationLUTShape' },
2521 '2050,0500' => { VR => 'SQ', Name => 'ReferencedPresentationLUTSequence' },
2522 '2100,0010' => { VR => 'SH', Name => 'PrintJobID' },
2523 '2100,0020' => { VR => 'CS', Name => 'ExecutionStatus' },
2524 '2100,0030' => { VR => 'CS', Name => 'ExecutionStatusInfo' },
2525 '2100,0040' => { VR => 'DA', Name => 'CreationDate' },
2526 '2100,0050' => { VR => 'TM', Name => 'CreationTime' },
2527 '2100,0070' => { VR => 'AE', Name => 'Originator' },
2528 '2100,0140' => { VR => 'AE', Name => 'DestinationAE' },
2529 '2100,0160' => { VR => 'SH', Name => 'OwnerID' },
2530 '2100,0170' => { VR => 'IS', Name => 'NumberOfFilms' },
2531 '2100,0500' => { VR => 'SQ', Name => 'ReferencedPrintJobSequence' },
2532 # printer group
2533 '2110,0010' => { VR => 'CS', Name => 'PrinterStatus' },
2534 '2110,0020' => { VR => 'CS', Name => 'PrinterStatusInfo' },
2535 '2110,0030' => { VR => 'LO', Name => 'PrinterName' },
2536 '2110,0099' => { VR => 'SH', Name => 'PrintQueueID' },
2537 '2120,0010' => { VR => 'CS', Name => 'QueueStatus' },
2538 # print job group
2539 '2120,0050' => { VR => 'SQ', Name => 'PrintJobDescriptionSequence' },
2540 '2120,0070' => { VR => 'SQ', Name => 'ReferencedPrintJobSequence' },
2541 '2130,0010' => { VR => 'SQ', Name => 'PrintManagementCapabilitiesSeq' },
2542 '2130,0015' => { VR => 'SQ', Name => 'PrinterCharacteristicsSequence' },
2543 '2130,0030' => { VR => 'SQ', Name => 'FilmBoxContentSequence' },
2544 '2130,0040' => { VR => 'SQ', Name => 'ImageBoxContentSequence' },
2545 '2130,0050' => { VR => 'SQ', Name => 'AnnotationContentSequence' },
2546 '2130,0060' => { VR => 'SQ', Name => 'ImageOverlayBoxContentSequence' },
2547 '2130,0080' => { VR => 'SQ', Name => 'PresentationLUTContentSequence' },
2548 '2130,00A0' => { VR => 'SQ', Name => 'ProposedStudySequence' },
2549 '2130,00C0' => { VR => 'SQ', Name => 'OriginalImageSequence' },
2550 '2200,0001' => { VR => 'CS', Name => 'LabelFromInfoExtractedFromInstance' },
2551 '2200,0002' => { VR => 'UT', Name => 'LabelText' },
2552 '2200,0003' => { VR => 'CS', Name => 'LabelStyleSelection' },
2553 '2200,0004' => { VR => 'LT', Name => 'MediaDisposition' },
2554 '2200,0005' => { VR => 'LT', Name => 'BarcodeValue' },
2555 '2200,0006' => { VR => 'CS', Name => 'BarcodeSymbology' },
2556 '2200,0007' => { VR => 'CS', Name => 'AllowMediaSplitting' },
2557 '2200,0008' => { VR => 'CS', Name => 'IncludeNonDICOMObjects' },
2558 '2200,0009' => { VR => 'CS', Name => 'IncludeDisplayApplication' },
2559 '2200,000A' => { VR => 'CS', Name => 'SaveCompInstancesAfterMediaCreate' },
2560 '2200,000B' => { VR => 'US', Name => 'TotalNumberMediaPiecesCreated' },
2561 '2200,000C' => { VR => 'LO', Name => 'RequestedMediaApplicationProfile' },
2562 '2200,000D' => { VR => 'SQ', Name => 'ReferencedStorageMediaSequence' },
2563 '2200,000E' => { VR => 'AT', Name => 'FailureAttributes' },
2564 '2200,000F' => { VR => 'CS', Name => 'AllowLossyCompression' },
2565 '2200,0020' => { VR => 'CS', Name => 'RequestPriority' },
2566 '3002,0002' => { VR => 'SH', Name => 'RTImageLabel' },
2567 '3002,0003' => { VR => 'LO', Name => 'RTImageName' },
2568 '3002,0004' => { VR => 'ST', Name => 'RTImageDescription' },
2569 '3002,000A' => { VR => 'CS', Name => 'ReportedValuesOrigin' },
2570 '3002,000C' => { VR => 'CS', Name => 'RTImagePlane' },
2571 '3002,000D' => { VR => 'DS', Name => 'XRayImageReceptorTranslation' },
2572 '3002,000E' => { VR => 'DS', Name => 'XRayImageReceptorAngle' },
2573 '3002,0010' => { VR => 'DS', Name => 'RTImageOrientation' },
2574 '3002,0011' => { VR => 'DS', Name => 'ImagePlanePixelSpacing' },
2575 '3002,0012' => { VR => 'DS', Name => 'RTImagePosition' },
2576 '3002,0020' => { VR => 'SH', Name => 'RadiationMachineName' },
2577 '3002,0022' => { VR => 'DS', Name => 'RadiationMachineSAD' },
2578 '3002,0024' => { VR => 'DS', Name => 'RadiationMachineSSD' },
2579 '3002,0026' => { VR => 'DS', Name => 'RTImageSID' },
2580 '3002,0028' => { VR => 'DS', Name => 'SourceToReferenceObjectDistance' },
2581 '3002,0029' => { VR => 'IS', Name => 'FractionNumber' },
2582 '3002,0030' => { VR => 'SQ', Name => 'ExposureSequence' },
2583 '3002,0032' => { VR => 'DS', Name => 'MetersetExposure' },
2584 '3002,0034' => { VR => 'DS', Name => 'DiaphragmPosition' },
2585 '3002,0040' => { VR => 'SQ', Name => 'FluenceMapSequence' },
2586 '3002,0041' => { VR => 'CS', Name => 'FluenceDataSource' },
2587 '3002,0042' => { VR => 'DS', Name => 'FluenceDataScale' },
2588 '3002,0051' => { VR => 'CS', Name => 'FluenceMode' },
2589 '3002,0052' => { VR => 'SH', Name => 'FluenceModeID' },
2590 '3004,0001' => { VR => 'CS', Name => 'DVHType' },
2591 '3004,0002' => { VR => 'CS', Name => 'DoseUnits' },
2592 '3004,0004' => { VR => 'CS', Name => 'DoseType' },
2593 '3004,0006' => { VR => 'LO', Name => 'DoseComment' },
2594 '3004,0008' => { VR => 'DS', Name => 'NormalizationPoint' },
2595 '3004,000A' => { VR => 'CS', Name => 'DoseSummationType' },
2596 '3004,000C' => { VR => 'DS', Name => 'GridFrameOffsetVector' },
2597 '3004,000E' => { VR => 'DS', Name => 'DoseGridScaling' },
2598 '3004,0010' => { VR => 'SQ', Name => 'RTDoseROISequence' },
2599 '3004,0012' => { VR => 'DS', Name => 'DoseValue' },
2600 '3004,0014' => { VR => 'CS', Name => 'TissueHeterogeneityCorrection' },
2601 '3004,0040' => { VR => 'DS', Name => 'DVHNormalizationPoint' },
2602 '3004,0042' => { VR => 'DS', Name => 'DVHNormalizationDoseValue' },
2603 '3004,0050' => { VR => 'SQ', Name => 'DVHSequence' },
2604 '3004,0052' => { VR => 'DS', Name => 'DVHDoseScaling' },
2605 '3004,0054' => { VR => 'CS', Name => 'DVHVolumeUnits' },
2606 '3004,0056' => { VR => 'IS', Name => 'DVHNumberOfBins' },
2607 '3004,0058' => { VR => 'DS', Name => 'DVHData' },
2608 '3004,0060' => { VR => 'SQ', Name => 'DVHReferencedROISequence' },
2609 '3004,0062' => { VR => 'CS', Name => 'DVHROIContributionType' },
2610 '3004,0070' => { VR => 'DS', Name => 'DVHMinimumDose' },
2611 '3004,0072' => { VR => 'DS', Name => 'DVHMaximumDose' },
2612 '3004,0074' => { VR => 'DS', Name => 'DVHMeanDose' },
2613 '3006,0002' => { VR => 'SH', Name => 'StructureSetLabel' },
2614 '3006,0004' => { VR => 'LO', Name => 'StructureSetName' },
2615 '3006,0006' => { VR => 'ST', Name => 'StructureSetDescription' },
2616 '3006,0008' => { VR => 'DA', Name => 'StructureSetDate' },
2617 '3006,0009' => { VR => 'TM', Name => 'StructureSetTime' },
2618 '3006,0010' => { VR => 'SQ', Name => 'ReferencedFrameOfReferenceSequence' },
2619 '3006,0012' => { VR => 'SQ', Name => 'RTReferencedStudySequence' },
2620 '3006,0014' => { VR => 'SQ', Name => 'RTReferencedSeriesSequence' },
2621 '3006,0016' => { VR => 'SQ', Name => 'ContourImageSequence' },
2622 '3006,0020' => { VR => 'SQ', Name => 'StructureSetROISequence' },
2623 '3006,0022' => { VR => 'IS', Name => 'ROINumber' },
2624 '3006,0024' => { VR => 'UI', Name => 'ReferencedFrameOfReferenceUID' },
2625 '3006,0026' => { VR => 'LO', Name => 'ROIName' },
2626 '3006,0028' => { VR => 'ST', Name => 'ROIDescription' },
2627 '3006,002A' => { VR => 'IS', Name => 'ROIDisplayColor' },
2628 '3006,002C' => { VR => 'DS', Name => 'ROIVolume' },
2629 '3006,0030' => { VR => 'SQ', Name => 'RTRelatedROISequence' },
2630 '3006,0033' => { VR => 'CS', Name => 'RTROIRelationship' },
2631 '3006,0036' => { VR => 'CS', Name => 'ROIGenerationAlgorithm' },
2632 '3006,0038' => { VR => 'LO', Name => 'ROIGenerationDescription' },
2633 '3006,0039' => { VR => 'SQ', Name => 'ROIContourSequence' },
2634 '3006,0040' => { VR => 'SQ', Name => 'ContourSequence' },
2635 '3006,0042' => { VR => 'CS', Name => 'ContourGeometricType' },
2636 '3006,0044' => { VR => 'DS', Name => 'ContourSlabThickness' },
2637 '3006,0045' => { VR => 'DS', Name => 'ContourOffsetVector' },
2638 '3006,0046' => { VR => 'IS', Name => 'NumberOfContourPoints' },
2639 '3006,0048' => { VR => 'IS', Name => 'ContourNumber' },
2640 '3006,0049' => { VR => 'IS', Name => 'AttachedContours' },
2641 '3006,0050' => { VR => 'DS', Name => 'ContourData' },
2642 '3006,0080' => { VR => 'SQ', Name => 'RTROIObservationsSequence' },
2643 '3006,0082' => { VR => 'IS', Name => 'ObservationNumber' },
2644 '3006,0084' => { VR => 'IS', Name => 'ReferencedROINumber' },
2645 '3006,0085' => { VR => 'SH', Name => 'ROIObservationLabel' },
2646 '3006,0086' => { VR => 'SQ', Name => 'RTROIIdentificationCodeSequence' },
2647 '3006,0088' => { VR => 'ST', Name => 'ROIObservationDescription' },
2648 '3006,00A0' => { VR => 'SQ', Name => 'RelatedRTROIObservationsSequence' },
2649 '3006,00A4' => { VR => 'CS', Name => 'RTROIInterpretedType' },
2650 '3006,00A6' => { VR => 'PN', Name => 'ROIInterpreter' },
2651 '3006,00B0' => { VR => 'SQ', Name => 'ROIPhysicalPropertiesSequence' },
2652 '3006,00B2' => { VR => 'CS', Name => 'ROIPhysicalProperty' },
2653 '3006,00B4' => { VR => 'DS', Name => 'ROIPhysicalPropertyValue' },
2654 '3006,00B6' => { VR => 'SQ', Name => 'ROIElementalCompositionSequence' },
2655 '3006,00B7' => { VR => 'US', Name => 'ROIElementalCompAtomicNumber' },
2656 '3006,00B8' => { VR => 'FL', Name => 'ROIElementalCompAtomicMassFraction' },
2657 '3006,00C0' => { VR => 'SQ', Name => 'FrameOfReferenceRelationshipSeq' },
2658 '3006,00C2' => { VR => 'UI', Name => 'RelatedFrameOfReferenceUID' },
2659 '3006,00C4' => { VR => 'CS', Name => 'FrameOfReferenceTransformType' },
2660 '3006,00C6' => { VR => 'DS', Name => 'FrameOfReferenceTransformMatrix' },
2661 '3006,00C8' => { VR => 'LO', Name => 'FrameOfReferenceTransformComment' },
2662 '3008,0010' => { VR => 'SQ', Name => 'MeasuredDoseReferenceSequence' },
2663 '3008,0012' => { VR => 'ST', Name => 'MeasuredDoseDescription' },
2664 '3008,0014' => { VR => 'CS', Name => 'MeasuredDoseType' },
2665 '3008,0016' => { VR => 'DS', Name => 'MeasuredDoseValue' },
2666 '3008,0020' => { VR => 'SQ', Name => 'TreatmentSessionBeamSequence' },
2667 '3008,0021' => { VR => 'SQ', Name => 'TreatmentSessionIonBeamSequence' },
2668 '3008,0022' => { VR => 'IS', Name => 'CurrentFractionNumber' },
2669 '3008,0024' => { VR => 'DA', Name => 'TreatmentControlPointDate' },
2670 '3008,0025' => { VR => 'TM', Name => 'TreatmentControlPointTime' },
2671 '3008,002A' => { VR => 'CS', Name => 'TreatmentTerminationStatus' },
2672 '3008,002B' => { VR => 'SH', Name => 'TreatmentTerminationCode' },
2673 '3008,002C' => { VR => 'CS', Name => 'TreatmentVerificationStatus' },
2674 '3008,0030' => { VR => 'SQ', Name => 'ReferencedTreatmentRecordSequence' },
2675 '3008,0032' => { VR => 'DS', Name => 'SpecifiedPrimaryMeterset' },
2676 '3008,0033' => { VR => 'DS', Name => 'SpecifiedSecondaryMeterset' },
2677 '3008,0036' => { VR => 'DS', Name => 'DeliveredPrimaryMeterset' },
2678 '3008,0037' => { VR => 'DS', Name => 'DeliveredSecondaryMeterset' },
2679 '3008,003A' => { VR => 'DS', Name => 'SpecifiedTreatmentTime' },
2680 '3008,003B' => { VR => 'DS', Name => 'DeliveredTreatmentTime' },
2681 '3008,0040' => { VR => 'SQ', Name => 'ControlPointDeliverySequence' },
2682 '3008,0041' => { VR => 'SQ', Name => 'IonControlPointDeliverySequence' },
2683 '3008,0042' => { VR => 'DS', Name => 'SpecifiedMeterset' },
2684 '3008,0044' => { VR => 'DS', Name => 'DeliveredMeterset' },
2685 '3008,0045' => { VR => 'FL', Name => 'MetersetRateSet' },
2686 '3008,0046' => { VR => 'FL', Name => 'MetersetRateDelivered' },
2687 '3008,0047' => { VR => 'FL', Name => 'ScanSpotMetersetsDelivered' },
2688 '3008,0048' => { VR => 'DS', Name => 'DoseRateDelivered' },
2689 '3008,0050' => { VR => 'SQ', Name => 'TreatmentSummaryCalcDoseRefSeq' },
2690 '3008,0052' => { VR => 'DS', Name => 'CumulativeDoseToDoseReference' },
2691 '3008,0054' => { VR => 'DA', Name => 'FirstTreatmentDate' },
2692 '3008,0056' => { VR => 'DA', Name => 'MostRecentTreatmentDate' },
2693 '3008,005A' => { VR => 'IS', Name => 'NumberOfFractionsDelivered' },
2694 '3008,0060' => { VR => 'SQ', Name => 'OverrideSequence' },
2695 '3008,0061' => { VR => 'AT', Name => 'ParameterSequencePointer' },
2696 '3008,0062' => { VR => 'AT', Name => 'OverrideParameterPointer' },
2697 '3008,0063' => { VR => 'IS', Name => 'ParameterItemIndex' },
2698 '3008,0064' => { VR => 'IS', Name => 'MeasuredDoseReferenceNumber' },
2699 '3008,0065' => { VR => 'AT', Name => 'ParameterPointer' },
2700 '3008,0066' => { VR => 'ST', Name => 'OverrideReason' },
2701 '3008,0068' => { VR => 'SQ', Name => 'CorrectedParameterSequence' },
2702 '3008,006A' => { VR => 'FL', Name => 'CorrectionValue' },
2703 '3008,0070' => { VR => 'SQ', Name => 'CalculatedDoseReferenceSequence' },
2704 '3008,0072' => { VR => 'IS', Name => 'CalculatedDoseReferenceNumber' },
2705 '3008,0074' => { VR => 'ST', Name => 'CalculatedDoseReferenceDescription' },
2706 '3008,0076' => { VR => 'DS', Name => 'CalculatedDoseReferenceDoseValue' },
2707 '3008,0078' => { VR => 'DS', Name => 'StartMeterset' },
2708 '3008,007A' => { VR => 'DS', Name => 'EndMeterset' },
2709 '3008,0080' => { VR => 'SQ', Name => 'ReferencedMeasuredDoseReferenceSeq' },
2710 '3008,0082' => { VR => 'IS', Name => 'ReferencedMeasuredDoseReferenceNum' },
2711 '3008,0090' => { VR => 'SQ', Name => 'ReferencedCalculatedDoseRefSeq' },
2712 '3008,0092' => { VR => 'IS', Name => 'ReferencedCalculatedDoseRefNumber' },
2713 '3008,00A0' => { VR => 'SQ', Name => 'BeamLimitingDeviceLeafPairsSeq' },
2714 '3008,00B0' => { VR => 'SQ', Name => 'RecordedWedgeSequence' },
2715 '3008,00C0' => { VR => 'SQ', Name => 'RecordedCompensatorSequence' },
2716 '3008,00D0' => { VR => 'SQ', Name => 'RecordedBlockSequence' },
2717 '3008,00E0' => { VR => 'SQ', Name => 'TreatmentSummaryMeasuredDoseRefSeq' },
2718 '3008,00F0' => { VR => 'SQ', Name => 'RecordedSnoutSequence' },
2719 '3008,00F2' => { VR => 'SQ', Name => 'RecordedRangeShifterSequence' },
2720 '3008,00F4' => { VR => 'SQ', Name => 'RecordedLateralSpreadingDeviceSeq' },
2721 '3008,00F6' => { VR => 'SQ', Name => 'RecordedRangeModulatorSequence' },
2722 '3008,0100' => { VR => 'SQ', Name => 'RecordedSourceSequence' },
2723 '3008,0105' => { VR => 'LO', Name => 'SourceSerialNumber' },
2724 '3008,0110' => { VR => 'SQ', Name => 'TreatmentSessionAppSetupSeq' },
2725 '3008,0116' => { VR => 'CS', Name => 'ApplicationSetupCheck' },
2726 '3008,0120' => { VR => 'SQ', Name => 'RecordedBrachyAccessoryDeviceSeq' },
2727 '3008,0122' => { VR => 'IS', Name => 'ReferencedBrachyAccessoryDeviceNum' },
2728 '3008,0130' => { VR => 'SQ', Name => 'RecordedChannelSequence' },
2729 '3008,0132' => { VR => 'DS', Name => 'SpecifiedChannelTotalTime' },
2730 '3008,0134' => { VR => 'DS', Name => 'DeliveredChannelTotalTime' },
2731 '3008,0136' => { VR => 'IS', Name => 'SpecifiedNumberOfPulses' },
2732 '3008,0138' => { VR => 'IS', Name => 'DeliveredNumberOfPulses' },
2733 '3008,013A' => { VR => 'DS', Name => 'SpecifiedPulseRepetitionInterval' },
2734 '3008,013C' => { VR => 'DS', Name => 'DeliveredPulseRepetitionInterval' },
2735 '3008,0140' => { VR => 'SQ', Name => 'RecordedSourceApplicatorSequence' },
2736 '3008,0142' => { VR => 'IS', Name => 'ReferencedSourceApplicatorNumber' },
2737 '3008,0150' => { VR => 'SQ', Name => 'RecordedChannelShieldSequence' },
2738 '3008,0152' => { VR => 'IS', Name => 'ReferencedChannelShieldNumber' },
2739 '3008,0160' => { VR => 'SQ', Name => 'BrachyControlPointDeliveredSeq' },
2740 '3008,0162' => { VR => 'DA', Name => 'SafePositionExitDate' },
2741 '3008,0164' => { VR => 'TM', Name => 'SafePositionExitTime' },
2742 '3008,0166' => { VR => 'DA', Name => 'SafePositionReturnDate' },
2743 '3008,0168' => { VR => 'TM', Name => 'SafePositionReturnTime' },
2744 '3008,0200' => { VR => 'CS', Name => 'CurrentTreatmentStatus' },
2745 '3008,0202' => { VR => 'ST', Name => 'TreatmentStatusComment' },
2746 '3008,0220' => { VR => 'SQ', Name => 'FractionGroupSummarySequence' },
2747 '3008,0223' => { VR => 'IS', Name => 'ReferencedFractionNumber' },
2748 '3008,0224' => { VR => 'CS', Name => 'FractionGroupType' },
2749 '3008,0230' => { VR => 'CS', Name => 'BeamStopperPosition' },
2750 '3008,0240' => { VR => 'SQ', Name => 'FractionStatusSummarySequence' },
2751 '3008,0250' => { VR => 'DA', Name => 'TreatmentDate' },
2752 '3008,0251' => { VR => 'TM', Name => 'TreatmentTime' },
2753 '300A,0002' => { VR => 'SH', Name => 'RTPlanLabel' },
2754 '300A,0003' => { VR => 'LO', Name => 'RTPlanName' },
2755 '300A,0004' => { VR => 'ST', Name => 'RTPlanDescription' },
2756 '300A,0006' => { VR => 'DA', Name => 'RTPlanDate' },
2757 '300A,0007' => { VR => 'TM', Name => 'RTPlanTime' },
2758 '300A,0009' => { VR => 'LO', Name => 'TreatmentProtocols' },
2759 '300A,000A' => { VR => 'CS', Name => 'PlanIntent' },
2760 '300A,000B' => { VR => 'LO', Name => 'TreatmentSites' },
2761 '300A,000C' => { VR => 'CS', Name => 'RTPlanGeometry' },
2762 '300A,000E' => { VR => 'ST', Name => 'PrescriptionDescription' },
2763 '300A,0010' => { VR => 'SQ', Name => 'DoseReferenceSequence' },
2764 '300A,0012' => { VR => 'IS', Name => 'DoseReferenceNumber' },
2765 '300A,0013' => { VR => 'UI', Name => 'DoseReferenceUID' },
2766 '300A,0014' => { VR => 'CS', Name => 'DoseReferenceStructureType' },
2767 '300A,0015' => { VR => 'CS', Name => 'NominalBeamEnergyUnit' },
2768 '300A,0016' => { VR => 'LO', Name => 'DoseReferenceDescription' },
2769 '300A,0018' => { VR => 'DS', Name => 'DoseReferencePointCoordinates' },
2770 '300A,001A' => { VR => 'DS', Name => 'NominalPriorDose' },
2771 '300A,0020' => { VR => 'CS', Name => 'DoseReferenceType' },
2772 '300A,0021' => { VR => 'DS', Name => 'ConstraintWeight' },
2773 '300A,0022' => { VR => 'DS', Name => 'DeliveryWarningDose' },
2774 '300A,0023' => { VR => 'DS', Name => 'DeliveryMaximumDose' },
2775 '300A,0025' => { VR => 'DS', Name => 'TargetMinimumDose' },
2776 '300A,0026' => { VR => 'DS', Name => 'TargetPrescriptionDose' },
2777 '300A,0027' => { VR => 'DS', Name => 'TargetMaximumDose' },
2778 '300A,0028' => { VR => 'DS', Name => 'TargetUnderdoseVolumeFraction' },
2779 '300A,002A' => { VR => 'DS', Name => 'OrganAtRiskFullVolumeDose' },
2780 '300A,002B' => { VR => 'DS', Name => 'OrganAtRiskLimitDose' },
2781 '300A,002C' => { VR => 'DS', Name => 'OrganAtRiskMaximumDose' },
2782 '300A,002D' => { VR => 'DS', Name => 'OrganAtRiskOverdoseVolumeFraction' },
2783 '300A,0040' => { VR => 'SQ', Name => 'ToleranceTableSequence' },
2784 '300A,0042' => { VR => 'IS', Name => 'ToleranceTableNumber' },
2785 '300A,0043' => { VR => 'SH', Name => 'ToleranceTableLabel' },
2786 '300A,0044' => { VR => 'DS', Name => 'GantryAngleTolerance' },
2787 '300A,0046' => { VR => 'DS', Name => 'BeamLimitingDeviceAngleTolerance' },
2788 '300A,0048' => { VR => 'SQ', Name => 'BeamLimitingDeviceToleranceSeq' },
2789 '300A,004A' => { VR => 'DS', Name => 'BeamLimitingDevicePositionTol' },
2790 '300A,004B' => { VR => 'FL', Name => 'SnoutPositionTolerance' },
2791 '300A,004C' => { VR => 'DS', Name => 'PatientSupportAngleTolerance' },
2792 '300A,004E' => { VR => 'DS', Name => 'TableTopEccentricAngleTolerance' },
2793 '300A,004F' => { VR => 'FL', Name => 'TableTopPitchAngleTolerance' },
2794 '300A,0050' => { VR => 'FL', Name => 'TableTopRollAngleTolerance' },
2795 '300A,0051' => { VR => 'DS', Name => 'TableTopVerticalPositionTolerance' },
2796 '300A,0052' => { VR => 'DS', Name => 'TableTopLongitudinalPositionTol' },
2797 '300A,0053' => { VR => 'DS', Name => 'TableTopLateralPositionTolerance' },
2798 '300A,0055' => { VR => 'CS', Name => 'RTPlanRelationship' },
2799 '300A,0070' => { VR => 'SQ', Name => 'FractionGroupSequence' },
2800 '300A,0071' => { VR => 'IS', Name => 'FractionGroupNumber' },
2801 '300A,0072' => { VR => 'LO', Name => 'FractionGroupDescription' },
2802 '300A,0078' => { VR => 'IS', Name => 'NumberOfFractionsPlanned' },
2803 '300A,0079' => { VR => 'IS', Name => 'NumberFractionPatternDigitsPerDay' },
2804 '300A,007A' => { VR => 'IS', Name => 'RepeatFractionCycleLength' },
2805 '300A,007B' => { VR => 'LT', Name => 'FractionPattern' },
2806 '300A,0080' => { VR => 'IS', Name => 'NumberOfBeams' },
2807 '300A,0082' => { VR => 'DS', Name => 'BeamDoseSpecificationPoint' },
2808 '300A,0084' => { VR => 'DS', Name => 'BeamDose' },
2809 '300A,0086' => { VR => 'DS', Name => 'BeamMeterset' },
2810 '300A,0088' => { VR => 'FL', Name => 'BeamDosePointDepth' },
2811 '300A,0089' => { VR => 'FL', Name => 'BeamDosePointEquivalentDepth' },
2812 '300A,008A' => { VR => 'FL', Name => 'BeamDosePointSSD' },
2813 '300A,00A0' => { VR => 'IS', Name => 'NumberOfBrachyApplicationSetups' },
2814 '300A,00A2' => { VR => 'DS', Name => 'BrachyAppSetupDoseSpecPoint' },
2815 '300A,00A4' => { VR => 'DS', Name => 'BrachyApplicationSetupDose' },
2816 '300A,00B0' => { VR => 'SQ', Name => 'BeamSequence' },
2817 '300A,00B2' => { VR => 'SH', Name => 'TreatmentMachineName' },
2818 '300A,00B3' => { VR => 'CS', Name => 'PrimaryDosimeterUnit' },
2819 '300A,00B4' => { VR => 'DS', Name => 'SourceAxisDistance' },
2820 '300A,00B6' => { VR => 'SQ', Name => 'BeamLimitingDeviceSequence' },
2821 '300A,00B8' => { VR => 'CS', Name => 'RTBeamLimitingDeviceType' },
2822 '300A,00BA' => { VR => 'DS', Name => 'SourceToBeamLimitingDeviceDistance' },
2823 '300A,00BB' => { VR => 'FL', Name => 'IsocenterToBeamLimitingDeviceDist' },
2824 '300A,00BC' => { VR => 'IS', Name => 'NumberOfLeafJawPairs' },
2825 '300A,00BE' => { VR => 'DS', Name => 'LeafPositionBoundaries' },
2826 '300A,00C0' => { VR => 'IS', Name => 'BeamNumber' },
2827 '300A,00C2' => { VR => 'LO', Name => 'BeamName' },
2828 '300A,00C3' => { VR => 'ST', Name => 'BeamDescription' },
2829 '300A,00C4' => { VR => 'CS', Name => 'BeamType' },
2830 '300A,00C6' => { VR => 'CS', Name => 'RadiationType' },
2831 '300A,00C7' => { VR => 'CS', Name => 'HighDoseTechniqueType' },
2832 '300A,00C8' => { VR => 'IS', Name => 'ReferenceImageNumber' },
2833 '300A,00CA' => { VR => 'SQ', Name => 'PlannedVerificationImageSequence' },
2834 '300A,00CC' => { VR => 'LO', Name => 'ImagingDeviceSpecificAcqParams' },
2835 '300A,00CE' => { VR => 'CS', Name => 'TreatmentDeliveryType' },
2836 '300A,00D0' => { VR => 'IS', Name => 'NumberOfWedges' },
2837 '300A,00D1' => { VR => 'SQ', Name => 'WedgeSequence' },
2838 '300A,00D2' => { VR => 'IS', Name => 'WedgeNumber' },
2839 '300A,00D3' => { VR => 'CS', Name => 'WedgeType' },
2840 '300A,00D4' => { VR => 'SH', Name => 'WedgeID' },
2841 '300A,00D5' => { VR => 'IS', Name => 'WedgeAngle' },
2842 '300A,00D6' => { VR => 'DS', Name => 'WedgeFactor' },
2843 '300A,00D7' => { VR => 'FL', Name => 'TotalWedgeTrayWaterEquivThickness' },
2844 '300A,00D8' => { VR => 'DS', Name => 'WedgeOrientation' },
2845 '300A,00D9' => { VR => 'FL', Name => 'IsocenterToWedgeTrayDistance' },
2846 '300A,00DA' => { VR => 'DS', Name => 'SourceToWedgeTrayDistance' },
2847 '300A,00DB' => { VR => 'FL', Name => 'WedgeThinEdgePosition' },
2848 '300A,00DC' => { VR => 'SH', Name => 'BolusID' },
2849 '300A,00DD' => { VR => 'ST', Name => 'BolusDescription' },
2850 '300A,00E0' => { VR => 'IS', Name => 'NumberOfCompensators' },
2851 '300A,00E1' => { VR => 'SH', Name => 'MaterialID' },
2852 '300A,00E2' => { VR => 'DS', Name => 'TotalCompensatorTrayFactor' },
2853 '300A,00E3' => { VR => 'SQ', Name => 'CompensatorSequence' },
2854 '300A,00E4' => { VR => 'IS', Name => 'CompensatorNumber' },
2855 '300A,00E5' => { VR => 'SH', Name => 'CompensatorID' },
2856 '300A,00E6' => { VR => 'DS', Name => 'SourceToCompensatorTrayDistance' },
2857 '300A,00E7' => { VR => 'IS', Name => 'CompensatorRows' },
2858 '300A,00E8' => { VR => 'IS', Name => 'CompensatorColumns' },
2859 '300A,00E9' => { VR => 'DS', Name => 'CompensatorPixelSpacing' },
2860 '300A,00EA' => { VR => 'DS', Name => 'CompensatorPosition' },
2861 '300A,00EB' => { VR => 'DS', Name => 'CompensatorTransmissionData' },
2862 '300A,00EC' => { VR => 'DS', Name => 'CompensatorThicknessData' },
2863 '300A,00ED' => { VR => 'IS', Name => 'NumberOfBoli' },
2864 '300A,00EE' => { VR => 'CS', Name => 'CompensatorType' },
2865 '300A,00F0' => { VR => 'IS', Name => 'NumberOfBlocks' },
2866 '300A,00F2' => { VR => 'DS', Name => 'TotalBlockTrayFactor' },
2867 '300A,00F3' => { VR => 'FL', Name => 'TotalBlockTrayWaterEquivThickness' },
2868 '300A,00F4' => { VR => 'SQ', Name => 'BlockSequence' },
2869 '300A,00F5' => { VR => 'SH', Name => 'BlockTrayID' },
2870 '300A,00F6' => { VR => 'DS', Name => 'SourceToBlockTrayDistance' },
2871 '300A,00F7' => { VR => 'FL', Name => 'IsocenterToBlockTrayDistance' },
2872 '300A,00F8' => { VR => 'CS', Name => 'BlockType' },
2873 '300A,00F9' => { VR => 'LO', Name => 'AccessoryCode' },
2874 '300A,00FA' => { VR => 'CS', Name => 'BlockDivergence' },
2875 '300A,00FB' => { VR => 'CS', Name => 'BlockMountingPosition' },
2876 '300A,00FC' => { VR => 'IS', Name => 'BlockNumber' },
2877 '300A,00FE' => { VR => 'LO', Name => 'BlockName' },
2878 '300A,0100' => { VR => 'DS', Name => 'BlockThickness' },
2879 '300A,0102' => { VR => 'DS', Name => 'BlockTransmission' },
2880 '300A,0104' => { VR => 'IS', Name => 'BlockNumberOfPoints' },
2881 '300A,0106' => { VR => 'DS', Name => 'BlockData' },
2882 '300A,0107' => { VR => 'SQ', Name => 'ApplicatorSequence' },
2883 '300A,0108' => { VR => 'SH', Name => 'ApplicatorID' },
2884 '300A,0109' => { VR => 'CS', Name => 'ApplicatorType' },
2885 '300A,010A' => { VR => 'LO', Name => 'ApplicatorDescription' },
2886 '300A,010C' => { VR => 'DS', Name => 'CumulativeDoseReferenceCoefficient' },
2887 '300A,010E' => { VR => 'DS', Name => 'FinalCumulativeMetersetWeight' },
2888 '300A,0110' => { VR => 'IS', Name => 'NumberOfControlPoints' },
2889 '300A,0111' => { VR => 'SQ', Name => 'ControlPointSequence' },
2890 '300A,0112' => { VR => 'IS', Name => 'ControlPointIndex' },
2891 '300A,0114' => { VR => 'DS', Name => 'NominalBeamEnergy' },
2892 '300A,0115' => { VR => 'DS', Name => 'DoseRateSet' },
2893 '300A,0116' => { VR => 'SQ', Name => 'WedgePositionSequence' },
2894 '300A,0118' => { VR => 'CS', Name => 'WedgePosition' },
2895 '300A,011A' => { VR => 'SQ', Name => 'BeamLimitingDevicePositionSequence' },
2896 '300A,011C' => { VR => 'DS', Name => 'LeafJawPositions' },
2897 '300A,011E' => { VR => 'DS', Name => 'GantryAngle' },
2898 '300A,011F' => { VR => 'CS', Name => 'GantryRotationDirection' },
2899 '300A,0120' => { VR => 'DS', Name => 'BeamLimitingDeviceAngle' },
2900 '300A,0121' => { VR => 'CS', Name => 'BeamLimitingDeviceRotateDirection' },
2901 '300A,0122' => { VR => 'DS', Name => 'PatientSupportAngle' },
2902 '300A,0123' => { VR => 'CS', Name => 'PatientSupportRotationDirection' },
2903 '300A,0124' => { VR => 'DS', Name => 'TableTopEccentricAxisDistance' },
2904 '300A,0125' => { VR => 'DS', Name => 'TableTopEccentricAngle' },
2905 '300A,0126' => { VR => 'CS', Name => 'TableTopEccentricRotateDirection' },
2906 '300A,0128' => { VR => 'DS', Name => 'TableTopVerticalPosition' },
2907 '300A,0129' => { VR => 'DS', Name => 'TableTopLongitudinalPosition' },
2908 '300A,012A' => { VR => 'DS', Name => 'TableTopLateralPosition' },
2909 '300A,012C' => { VR => 'DS', Name => 'IsocenterPosition' },
2910 '300A,012E' => { VR => 'DS', Name => 'SurfaceEntryPoint' },
2911 '300A,0130' => { VR => 'DS', Name => 'SourceToSurfaceDistance' },
2912 '300A,0134' => { VR => 'DS', Name => 'CumulativeMetersetWeight' },
2913 '300A,0140' => { VR => 'FL', Name => 'TableTopPitchAngle' },
2914 '300A,0142' => { VR => 'CS', Name => 'TableTopPitchRotationDirection' },
2915 '300A,0144' => { VR => 'FL', Name => 'TableTopRollAngle' },
2916 '300A,0146' => { VR => 'CS', Name => 'TableTopRollRotationDirection' },
2917 '300A,0148' => { VR => 'FL', Name => 'HeadFixationAngle' },
2918 '300A,014A' => { VR => 'FL', Name => 'GantryPitchAngle' },
2919 '300A,014C' => { VR => 'CS', Name => 'GantryPitchRotationDirection' },
2920 '300A,014E' => { VR => 'FL', Name => 'GantryPitchAngleTolerance' },
2921 '300A,0180' => { VR => 'SQ', Name => 'PatientSetupSequence' },
2922 '300A,0182' => { VR => 'IS', Name => 'PatientSetupNumber' },
2923 '300A,0183' => { VR => 'LO', Name => 'PatientSetupLabel' },
2924 '300A,0184' => { VR => 'LO', Name => 'PatientAdditionalPosition' },
2925 '300A,0190' => { VR => 'SQ', Name => 'FixationDeviceSequence' },
2926 '300A,0192' => { VR => 'CS', Name => 'FixationDeviceType' },
2927 '300A,0194' => { VR => 'SH', Name => 'FixationDeviceLabel' },
2928 '300A,0196' => { VR => 'ST', Name => 'FixationDeviceDescription' },
2929 '300A,0198' => { VR => 'SH', Name => 'FixationDevicePosition' },
2930 '300A,0199' => { VR => 'FL', Name => 'FixationDevicePitchAngle' },
2931 '300A,019A' => { VR => 'FL', Name => 'FixationDeviceRollAngle' },
2932 '300A,01A0' => { VR => 'SQ', Name => 'ShieldingDeviceSequence' },
2933 '300A,01A2' => { VR => 'CS', Name => 'ShieldingDeviceType' },
2934 '300A,01A4' => { VR => 'SH', Name => 'ShieldingDeviceLabel' },
2935 '300A,01A6' => { VR => 'ST', Name => 'ShieldingDeviceDescription' },
2936 '300A,01A8' => { VR => 'SH', Name => 'ShieldingDevicePosition' },
2937 '300A,01B0' => { VR => 'CS', Name => 'SetupTechnique' },
2938 '300A,01B2' => { VR => 'ST', Name => 'SetupTechniqueDescription' },
2939 '300A,01B4' => { VR => 'SQ', Name => 'SetupDeviceSequence' },
2940 '300A,01B6' => { VR => 'CS', Name => 'SetupDeviceType' },
2941 '300A,01B8' => { VR => 'SH', Name => 'SetupDeviceLabel' },
2942 '300A,01BA' => { VR => 'ST', Name => 'SetupDeviceDescription' },
2943 '300A,01BC' => { VR => 'DS', Name => 'SetupDeviceParameter' },
2944 '300A,01D0' => { VR => 'ST', Name => 'SetupReferenceDescription' },
2945 '300A,01D2' => { VR => 'DS', Name => 'TableTopVerticalSetupDisplacement' },
2946 '300A,01D4' => { VR => 'DS', Name => 'TableTopLongitudinalSetupDisplace' },
2947 '300A,01D6' => { VR => 'DS', Name => 'TableTopLateralSetupDisplacement' },
2948 '300A,0200' => { VR => 'CS', Name => 'BrachyTreatmentTechnique' },
2949 '300A,0202' => { VR => 'CS', Name => 'BrachyTreatmentType' },
2950 '300A,0206' => { VR => 'SQ', Name => 'TreatmentMachineSequence' },
2951 '300A,0210' => { VR => 'SQ', Name => 'SourceSequence' },
2952 '300A,0212' => { VR => 'IS', Name => 'SourceNumber' },
2953 '300A,0214' => { VR => 'CS', Name => 'SourceType' },
2954 '300A,0216' => { VR => 'LO', Name => 'SourceManufacturer' },
2955 '300A,0218' => { VR => 'DS', Name => 'ActiveSourceDiameter' },
2956 '300A,021A' => { VR => 'DS', Name => 'ActiveSourceLength' },
2957 '300A,0222' => { VR => 'DS', Name => 'SourceEncapsulationNomThickness' },
2958 '300A,0224' => { VR => 'DS', Name => 'SourceEncapsulationNomTransmission' },
2959 '300A,0226' => { VR => 'LO', Name => 'SourceIsotopeName' },
2960 '300A,0228' => { VR => 'DS', Name => 'SourceIsotopeHalfLife' },
2961 '300A,0229' => { VR => 'CS', Name => 'SourceStrengthUnits' },
2962 '300A,022A' => { VR => 'DS', Name => 'ReferenceAirKermaRate' },
2963 '300A,022B' => { VR => 'DS', Name => 'SourceStrength' },
2964 '300A,022C' => { VR => 'DA', Name => 'SourceStrengthReferenceDate' },
2965 '300A,022E' => { VR => 'TM', Name => 'SourceStrengthReferenceTime' },
2966 '300A,0230' => { VR => 'SQ', Name => 'ApplicationSetupSequence' },
2967 '300A,0232' => { VR => 'CS', Name => 'ApplicationSetupType' },
2968 '300A,0234' => { VR => 'IS', Name => 'ApplicationSetupNumber' },
2969 '300A,0236' => { VR => 'LO', Name => 'ApplicationSetupName' },
2970 '300A,0238' => { VR => 'LO', Name => 'ApplicationSetupManufacturer' },
2971 '300A,0240' => { VR => 'IS', Name => 'TemplateNumber' },
2972 '300A,0242' => { VR => 'SH', Name => 'TemplateType' },
2973 '300A,0244' => { VR => 'LO', Name => 'TemplateName' },
2974 '300A,0250' => { VR => 'DS', Name => 'TotalReferenceAirKerma' },
2975 '300A,0260' => { VR => 'SQ', Name => 'BrachyAccessoryDeviceSequence' },
2976 '300A,0262' => { VR => 'IS', Name => 'BrachyAccessoryDeviceNumber' },
2977 '300A,0263' => { VR => 'SH', Name => 'BrachyAccessoryDeviceID' },
2978 '300A,0264' => { VR => 'CS', Name => 'BrachyAccessoryDeviceType' },
2979 '300A,0266' => { VR => 'LO', Name => 'BrachyAccessoryDeviceName' },
2980 '300A,026A' => { VR => 'DS', Name => 'BrachyAccessoryDeviceNomThickness' },
2981 '300A,026C' => { VR => 'DS', Name => 'BrachyAccessoryDevNomTransmission' },
2982 '300A,0280' => { VR => 'SQ', Name => 'ChannelSequence' },
2983 '300A,0282' => { VR => 'IS', Name => 'ChannelNumber' },
2984 '300A,0284' => { VR => 'DS', Name => 'ChannelLength' },
2985 '300A,0286' => { VR => 'DS', Name => 'ChannelTotalTime' },
2986 '300A,0288' => { VR => 'CS', Name => 'SourceMovementType' },
2987 '300A,028A' => { VR => 'IS', Name => 'NumberOfPulses' },
2988 '300A,028C' => { VR => 'DS', Name => 'PulseRepetitionInterval' },
2989 '300A,0290' => { VR => 'IS', Name => 'SourceApplicatorNumber' },
2990 '300A,0291' => { VR => 'SH', Name => 'SourceApplicatorID' },
2991 '300A,0292' => { VR => 'CS', Name => 'SourceApplicatorType' },
2992 '300A,0294' => { VR => 'LO', Name => 'SourceApplicatorName' },
2993 '300A,0296' => { VR => 'DS', Name => 'SourceApplicatorLength' },
2994 '300A,0298' => { VR => 'LO', Name => 'SourceApplicatorManufacturer' },
2995 '300A,029C' => { VR => 'DS', Name => 'SourceApplicatorWallNomThickness' },
2996 '300A,029E' => { VR => 'DS', Name => 'SourceApplicatorWallNomTrans' },
2997 '300A,02A0' => { VR => 'DS', Name => 'SourceApplicatorStepSize' },
2998 '300A,02A2' => { VR => 'IS', Name => 'TransferTubeNumber' },
2999 '300A,02A4' => { VR => 'DS', Name => 'TransferTubeLength' },
3000 '300A,02B0' => { VR => 'SQ', Name => 'ChannelShieldSequence' },
3001 '300A,02B2' => { VR => 'IS', Name => 'ChannelShieldNumber' },
3002 '300A,02B3' => { VR => 'SH', Name => 'ChannelShieldID' },
3003 '300A,02B4' => { VR => 'LO', Name => 'ChannelShieldName' },
3004 '300A,02B8' => { VR => 'DS', Name => 'ChannelShieldNominalThickness' },
3005 '300A,02BA' => { VR => 'DS', Name => 'ChannelShieldNominalTransmission' },
3006 '300A,02C8' => { VR => 'DS', Name => 'FinalCumulativeTimeWeight' },
3007 '300A,02D0' => { VR => 'SQ', Name => 'BrachyControlPointSequence' },
3008 '300A,02D2' => { VR => 'DS', Name => 'ControlPointRelativePosition' },
3009 '300A,02D4' => { VR => 'DS', Name => 'ControlPoint3DPosition' },
3010 '300A,02D6' => { VR => 'DS', Name => 'CumulativeTimeWeight' },
3011 '300A,02E0' => { VR => 'CS', Name => 'CompensatorDivergence' },
3012 '300A,02E1' => { VR => 'CS', Name => 'CompensatorMountingPosition' },
3013 '300A,02E2' => { VR => 'DS', Name => 'SourceToCompensatorDistance' },
3014 '300A,02E3' => { VR => 'FL', Name => 'TotalCompTrayWaterEquivThickness' },
3015 '300A,02E4' => { VR => 'FL', Name => 'IsocenterToCompensatorTrayDistance' },
3016 '300A,02E5' => { VR => 'FL', Name => 'CompensatorColumnOffset' },
3017 '300A,02E6' => { VR => 'FL', Name => 'IsocenterToCompensatorDistances' },
3018 '300A,02E7' => { VR => 'FL', Name => 'CompensatorRelStoppingPowerRatio' },
3019 '300A,02E8' => { VR => 'FL', Name => 'CompensatorMillingToolDiameter' },
3020 '300A,02EA' => { VR => 'SQ', Name => 'IonRangeCompensatorSequence' },
3021 '300A,02EB' => { VR => 'LT', Name => 'CompensatorDescription' },
3022 '300A,0302' => { VR => 'IS', Name => 'RadiationMassNumber' },
3023 '300A,0304' => { VR => 'IS', Name => 'RadiationAtomicNumber' },
3024 '300A,0306' => { VR => 'SS', Name => 'RadiationChargeState' },
3025 '300A,0308' => { VR => 'CS', Name => 'ScanMode' },
3026 '300A,030A' => { VR => 'FL', Name => 'VirtualSourceAxisDistances' },
3027 '300A,030C' => { VR => 'SQ', Name => 'SnoutSequence' },
3028 '300A,030D' => { VR => 'FL', Name => 'SnoutPosition' },
3029 '300A,030F' => { VR => 'SH', Name => 'SnoutID' },
3030 '300A,0312' => { VR => 'IS', Name => 'NumberOfRangeShifters' },
3031 '300A,0314' => { VR => 'SQ', Name => 'RangeShifterSequence' },
3032 '300A,0316' => { VR => 'IS', Name => 'RangeShifterNumber' },
3033 '300A,0318' => { VR => 'SH', Name => 'RangeShifterID' },
3034 '300A,0320' => { VR => 'CS', Name => 'RangeShifterType' },
3035 '300A,0322' => { VR => 'LO', Name => 'RangeShifterDescription' },
3036 '300A,0330' => { VR => 'IS', Name => 'NumberOfLateralSpreadingDevices' },
3037 '300A,0332' => { VR => 'SQ', Name => 'LateralSpreadingDeviceSequence' },
3038 '300A,0334' => { VR => 'IS', Name => 'LateralSpreadingDeviceNumber' },
3039 '300A,0336' => { VR => 'SH', Name => 'LateralSpreadingDeviceID' },
3040 '300A,0338' => { VR => 'CS', Name => 'LateralSpreadingDeviceType' },
3041 '300A,033A' => { VR => 'LO', Name => 'LateralSpreadingDeviceDescription' },
3042 '300A,033C' => { VR => 'FL', Name => 'LateralSpreadingDevWaterEquivThick' },
3043 '300A,0340' => { VR => 'IS', Name => 'NumberOfRangeModulators' },
3044 '300A,0342' => { VR => 'SQ', Name => 'RangeModulatorSequence' },
3045 '300A,0344' => { VR => 'IS', Name => 'RangeModulatorNumber' },
3046 '300A,0346' => { VR => 'SH', Name => 'RangeModulatorID' },
3047 '300A,0348' => { VR => 'CS', Name => 'RangeModulatorType' },
3048 '300A,034A' => { VR => 'LO', Name => 'RangeModulatorDescription' },
3049 '300A,034C' => { VR => 'SH', Name => 'BeamCurrentModulationID' },
3050 '300A,0350' => { VR => 'CS', Name => 'PatientSupportType' },
3051 '300A,0352' => { VR => 'SH', Name => 'PatientSupportID' },
3052 '300A,0354' => { VR => 'LO', Name => 'PatientSupportAccessoryCode' },
3053 '300A,0356' => { VR => 'FL', Name => 'FixationLightAzimuthalAngle' },
3054 '300A,0358' => { VR => 'FL', Name => 'FixationLightPolarAngle' },
3055 '300A,035A' => { VR => 'FL', Name => 'MetersetRate' },
3056 '300A,0360' => { VR => 'SQ', Name => 'RangeShifterSettingsSequence' },
3057 '300A,0362' => { VR => 'LO', Name => 'RangeShifterSetting' },
3058 '300A,0364' => { VR => 'FL', Name => 'IsocenterToRangeShifterDistance' },
3059 '300A,0366' => { VR => 'FL', Name => 'RangeShifterWaterEquivThickness' },
3060 '300A,0370' => { VR => 'SQ', Name => 'LateralSpreadingDeviceSettingsSeq' },
3061 '300A,0372' => { VR => 'LO', Name => 'LateralSpreadingDeviceSetting' },
3062 '300A,0374' => { VR => 'FL', Name => 'IsocenterToLateralSpreadingDevDist' },
3063 '300A,0380' => { VR => 'SQ', Name => 'RangeModulatorSettingsSequence' },
3064 '300A,0382' => { VR => 'FL', Name => 'RangeModulatorGatingStartValue' },
3065 '300A,0384' => { VR => 'FL', Name => 'RangeModulatorGatingStopValue' },
3066 '300A,038A' => { VR => 'FL', Name => 'IsocenterToRangeModulatorDistance' },
3067 '300A,0390' => { VR => 'SH', Name => 'ScanSpotTuneID' },
3068 '300A,0392' => { VR => 'IS', Name => 'NumberOfScanSpotPositions' },
3069 '300A,0394' => { VR => 'FL', Name => 'ScanSpotPositionMap' },
3070 '300A,0396' => { VR => 'FL', Name => 'ScanSpotMetersetWeights' },
3071 '300A,0398' => { VR => 'FL', Name => 'ScanningSpotSize' },
3072 '300A,039A' => { VR => 'IS', Name => 'NumberOfPaintings' },
3073 '300A,03A0' => { VR => 'SQ', Name => 'IonToleranceTableSequence' },
3074 '300A,03A2' => { VR => 'SQ', Name => 'IonBeamSequence' },
3075 '300A,03A4' => { VR => 'SQ', Name => 'IonBeamLimitingDeviceSequence' },
3076 '300A,03A6' => { VR => 'SQ', Name => 'IonBlockSequence' },
3077 '300A,03A8' => { VR => 'SQ', Name => 'IonControlPointSequence' },
3078 '300A,03AA' => { VR => 'SQ', Name => 'IonWedgeSequence' },
3079 '300A,03AC' => { VR => 'SQ', Name => 'IonWedgePositionSequence' },
3080 '300A,0401' => { VR => 'SQ', Name => 'ReferencedSetupImageSequence' },
3081 '300A,0402' => { VR => 'ST', Name => 'SetupImageComment' },
3082 '300A,0410' => { VR => 'SQ', Name => 'MotionSynchronizationSequence' },
3083 '300A,0412' => { VR => 'FL', Name => 'ControlPointOrientation' },
3084 '300A,0420' => { VR => 'SQ', Name => 'GeneralAccessorySequence' },
3085 '300A,0421' => { VR => 'SH', Name => 'GeneralAccessoryID' },
3086 '300A,0422' => { VR => 'ST', Name => 'GeneralAccessoryDescription' },
3087 '300A,0423' => { VR => 'CS', Name => 'GeneralAccessoryType' },
3088 '300A,0424' => { VR => 'IS', Name => 'GeneralAccessoryNumber' },
3089 '300C,0002' => { VR => 'SQ', Name => 'ReferencedRTPlanSequence' },
3090 '300C,0004' => { VR => 'SQ', Name => 'ReferencedBeamSequence' },
3091 '300C,0006' => { VR => 'IS', Name => 'ReferencedBeamNumber' },
3092 '300C,0007' => { VR => 'IS', Name => 'ReferencedReferenceImageNumber' },
3093 '300C,0008' => { VR => 'DS', Name => 'StartCumulativeMetersetWeight' },
3094 '300C,0009' => { VR => 'DS', Name => 'EndCumulativeMetersetWeight' },
3095 '300C,000A' => { VR => 'SQ', Name => 'ReferencedBrachyAppSetupSeq' },
3096 '300C,000C' => { VR => 'IS', Name => 'ReferencedBrachyAppSetupNumber' },
3097 '300C,000E' => { VR => 'IS', Name => 'ReferencedSourceNumber' },
3098 '300C,0020' => { VR => 'SQ', Name => 'ReferencedFractionGroupSequence' },
3099 '300C,0022' => { VR => 'IS', Name => 'ReferencedFractionGroupNumber' },
3100 '300C,0040' => { VR => 'SQ', Name => 'ReferencedVerificationImageSeq' },
3101 '300C,0042' => { VR => 'SQ', Name => 'ReferencedReferenceImageSequence' },
3102 '300C,0050' => { VR => 'SQ', Name => 'ReferencedDoseReferenceSequence' },
3103 '300C,0051' => { VR => 'IS', Name => 'ReferencedDoseReferenceNumber' },
3104 '300C,0055' => { VR => 'SQ', Name => 'BrachyReferencedDoseReferenceSeq' },
3105 '300C,0060' => { VR => 'SQ', Name => 'ReferencedStructureSetSequence' },
3106 '300C,006A' => { VR => 'IS', Name => 'ReferencedPatientSetupNumber' },
3107 '300C,0080' => { VR => 'SQ', Name => 'ReferencedDoseSequence' },
3108 '300C,00A0' => { VR => 'IS', Name => 'ReferencedToleranceTableNumber' },
3109 '300C,00B0' => { VR => 'SQ', Name => 'ReferencedBolusSequence' },
3110 '300C,00C0' => { VR => 'IS', Name => 'ReferencedWedgeNumber' },
3111 '300C,00D0' => { VR => 'IS', Name => 'ReferencedCompensatorNumber' },
3112 '300C,00E0' => { VR => 'IS', Name => 'ReferencedBlockNumber' },
3113 '300C,00F0' => { VR => 'IS', Name => 'ReferencedControlPointIndex' },
3114 '300C,00F2' => { VR => 'SQ', Name => 'ReferencedControlPointSequence' },
3115 '300C,00F4' => { VR => 'IS', Name => 'ReferencedStartControlPointIndex' },
3116 '300C,00F6' => { VR => 'IS', Name => 'ReferencedStopControlPointIndex' },
3117 '300C,0100' => { VR => 'IS', Name => 'ReferencedRangeShifterNumber' },
3118 '300C,0102' => { VR => 'IS', Name => 'ReferencedLateralSpreadingDevNum' },
3119 '300C,0104' => { VR => 'IS', Name => 'ReferencedRangeModulatorNumber' },
3120 '300E,0002' => { VR => 'CS', Name => 'ApprovalStatus' },
3121 '300E,0004' => { VR => 'DA', Name => 'ReviewDate' },
3122 '300E,0005' => { VR => 'TM', Name => 'ReviewTime' },
3123 '300E,0008' => { VR => 'PN', Name => 'ReviewerName' },
3124 # text group
3125 '4000,0000' => { VR => 'UL', Name => 'TextGroupLength' },
3126 '4000,0010' => { VR => 'LT', Name => 'Arbitrary' },
3127 '4000,4000' => { VR => 'LT', Name => 'TextComments' },
3128 # results group
3129 '4008,0040' => { VR => 'SH', Name => 'ResultsID' },
3130 '4008,0042' => { VR => 'LO', Name => 'ResultsIDIssuer' },
3131 '4008,0050' => { VR => 'SQ', Name => 'ReferencedInterpretationSequence' },
3132 '4008,0100' => { VR => 'DA', Name => 'InterpretationRecordedDate' },
3133 '4008,0101' => { VR => 'TM', Name => 'InterpretationRecordedTime' },
3134 '4008,0102' => { VR => 'PN', Name => 'InterpretationRecorder' },
3135 '4008,0103' => { VR => 'LO', Name => 'ReferenceToRecordedSound' },
3136 '4008,0108' => { VR => 'DA', Name => 'InterpretationTranscriptionDate' },
3137 '4008,0109' => { VR => 'TM', Name => 'InterpretationTranscriptionTime' },
3138 '4008,010A' => { VR => 'PN', Name => 'InterpretationTranscriber' },
3139 '4008,010B' => { VR => 'ST', Name => 'InterpretationText' },
3140 '4008,010C' => { VR => 'PN', Name => 'InterpretationAuthor' },
3141 '4008,0111' => { VR => 'SQ', Name => 'InterpretationApproverSequence' },
3142 '4008,0112' => { VR => 'DA', Name => 'InterpretationApprovalDate' },
3143 '4008,0113' => { VR => 'TM', Name => 'InterpretationApprovalTime' },
3144 '4008,0114' => { VR => 'PN', Name => 'PhysicianApprovingInterpretation' },
3145 '4008,0115' => { VR => 'LT', Name => 'InterpretationDiagnosisDescription' },
3146 '4008,0117' => { VR => 'SQ', Name => 'InterpretationDiagnosisCodeSeq' },
3147 '4008,0118' => { VR => 'SQ', Name => 'ResultsDistributionListSequence' },
3148 '4008,0119' => { VR => 'PN', Name => 'DistributionName' },
3149 '4008,011A' => { VR => 'LO', Name => 'DistributionAddress' },
3150 '4008,0200' => { VR => 'SH', Name => 'InterpretationID' },
3151 '4008,0202' => { VR => 'LO', Name => 'InterpretationIDIssuer' },
3152 '4008,0210' => { VR => 'CS', Name => 'InterpretationTypeID' },
3153 '4008,0212' => { VR => 'CS', Name => 'InterpretationStatusID' },
3154 '4008,0300' => { VR => 'ST', Name => 'Impressions' },
3155 '4008,4000' => { VR => 'ST', Name => 'ResultsComments' },
3156 '4FFE,0001' => { VR => 'SQ', Name => 'MACParametersSequence' },
3157 # curve group
3158 '50xx,0005' => { VR => 'US', Name => 'CurveDimensions' },
3159 '50xx,0010' => { VR => 'US', Name => 'NumberOfPoints' },
3160 '50xx,0020' => { VR => 'CS', Name => 'TypeOfData' },
3161 '50xx,0022' => { VR => 'LO', Name => 'CurveDescription' },
3162 '50xx,0030' => { VR => 'SH', Name => 'AxisUnits' },
3163 '50xx,0040' => { VR => 'SH', Name => 'AxisLabels' },
3164 '50xx,0103' => { VR => 'US', Name => 'DataValueRepresentation' },
3165 '50xx,0104' => { VR => 'US', Name => 'MinimumCoordinateValue' },
3166 '50xx,0105' => { VR => 'US', Name => 'MaximumCoordinateValue' },
3167 '50xx,0106' => { VR => 'SH', Name => 'CurveRange' },
3168 '50xx,0110' => { VR => 'US', Name => 'CurveDataDescriptor' },
3169 '50xx,0112' => { VR => 'US', Name => 'CoordinateStartValue' },
3170 '50xx,0114' => { VR => 'US', Name => 'CoordinateStepValue' },
3171 '50xx,1001' => { VR => 'CS', Name => 'CurveActivationLayer' },
3172 '50xx,2000' => { VR => 'US', Name => 'AudioType' },
3173 '50xx,2002' => { VR => 'US', Name => 'AudioSampleFormat' },
3174 '50xx,2004' => { VR => 'US', Name => 'NumberOfChannels' },
3175 '50xx,2006' => { VR => 'UL', Name => 'NumberOfSamples' },
3176 '50xx,2008' => { VR => 'UL', Name => 'SampleRate' },
3177 '50xx,200A' => { VR => 'UL', Name => 'TotalTime' },
3178 '50xx,200C' => { VR => 'OW', Name => 'AudioSampleData' },
3179 '50xx,200E' => { VR => 'LT', Name => 'AudioComments' },
3180 '50xx,2500' => { VR => 'LO', Name => 'CurveLabel' },
3181 '50xx,2600' => { VR => 'SQ', Name => 'ReferencedOverlaySequence' },
3182 '50xx,2610' => { VR => 'US', Name => 'ReferencedOverlayGroup' },
3183 '50xx,3000' => { VR => 'OW', Name => 'CurveData' },
3184 '5200,9229' => { VR => 'SQ', Name => 'SharedFunctionalGroupsSequence' },
3185 '5200,9230' => { VR => 'SQ', Name => 'PerFrameFunctionalGroupsSequence' },
3186 '5400,0100' => { VR => 'SQ', Name => 'WaveformSequence' },
3187 '5400,0110' => { VR => 'OB', Name => 'ChannelMinimumValue' },
3188 '5400,0112' => { VR => 'OB', Name => 'ChannelMaximumValue' },
3189 '5400,1004' => { VR => 'US', Name => 'WaveformBitsAllocated' },
3190 '5400,1006' => { VR => 'CS', Name => 'WaveformSampleInterpretation' },
3191 '5400,100A' => { VR => 'OB', Name => 'WaveformPaddingValue' },
3192 '5400,1010' => { VR => 'OB', Name => 'WaveformData' },
3193 '5600,0010' => { VR => 'OF', Name => 'FirstOrderPhaseCorrectionAngle' },
3194 '5600,0020' => { VR => 'OF', Name => 'SpectroscopyData' },
3195 # overlay group
3196 '6000,0000' => { VR => 'UL', Name => 'OverlayGroupLength' },
3197 '60xx,0010' => { VR => 'US', Name => 'OverlayRows' },
3198 '60xx,0011' => { VR => 'US', Name => 'OverlayColumns' },
3199 '60xx,0012' => { VR => 'US', Name => 'OverlayPlanes' },
3200 '60xx,0015' => { VR => 'IS', Name => 'NumberOfFramesInOverlay' },
3201 '60xx,0022' => { VR => 'LO', Name => 'OverlayDescription' },
3202 '60xx,0040' => { VR => 'CS', Name => 'OverlayType' },
3203 '60xx,0045' => { VR => 'LO', Name => 'OverlaySubtype' },
3204 '60xx,0050' => { VR => 'SS', Name => 'OverlayOrigin' },
3205 '60xx,0051' => { VR => 'US', Name => 'ImageFrameOrigin' },
3206 '60xx,0052' => { VR => 'US', Name => 'OverlayPlaneOrigin' },
3207 '60xx,0060' => { VR => 'CS', Name => 'OverlayCompressionCode' },
3208 '60xx,0061' => { VR => 'SH', Name => 'OverlayCompressionOriginator' },
3209 '60xx,0062' => { VR => 'SH', Name => 'OverlayCompressionLabel' },
3210 '60xx,0063' => { VR => 'CS', Name => 'OverlayCompressionDescription' },
3211 '60xx,0066' => { VR => 'AT', Name => 'OverlayCompressionStepPointers' },
3212 '60xx,0068' => { VR => 'US', Name => 'OverlayRepeatInterval' },
3213 '60xx,0069' => { VR => 'US', Name => 'OverlayBitsGrouped' },
3214 '60xx,0100' => { VR => 'US', Name => 'OverlayBitsAllocated' },
3215 '60xx,0102' => { VR => 'US', Name => 'OverlayBitPosition' },
3216 '60xx,0110' => { VR => 'CS', Name => 'OverlayFormat' },
3217 '60xx,0200' => { VR => 'US', Name => 'OverlayLocation' },
3218 '60xx,0800' => { VR => 'CS', Name => 'OverlayCodeLabel' },
3219 '60xx,0802' => { VR => 'US', Name => 'OverlayNumberOfTables' },
3220 '60xx,0803' => { VR => 'AT', Name => 'OverlayCodeTableLocation' },
3221 '60xx,0804' => { VR => 'US', Name => 'OverlayBitsForCodeWord' },
3222 '60xx,1001' => { VR => 'CS', Name => 'OverlayActivationLayer' },
3223 '60xx,1100' => { VR => 'US', Name => 'OverlayDescriptorGray' },
3224 '60xx,1101' => { VR => 'US', Name => 'OverlayDescriptorRed' },
3225 '60xx,1102' => { VR => 'US', Name => 'OverlayDescriptorGreen' },
3226 '60xx,1103' => { VR => 'US', Name => 'OverlayDescriptorBlue' },
3227 '60xx,1200' => { VR => 'US', Name => 'OverlaysGray' },
3228 '60xx,1201' => { VR => 'US', Name => 'OverlaysRed' },
3229 '60xx,1202' => { VR => 'US', Name => 'OverlaysGreen' },
3230 '60xx,1203' => { VR => 'US', Name => 'OverlaysBlue' },
3231 '60xx,1301' => { VR => 'IS', Name => 'ROIArea' },
3232 '60xx,1302' => { VR => 'DS', Name => 'ROIMean' },
3233 '60xx,1303' => { VR => 'DS', Name => 'ROIStandardDeviation' },
3234 '60xx,1500' => { VR => 'LO', Name => 'OverlayLabel' },
3235 '60xx,3000' => { VR => 'OB', Name => 'OverlayData' },
3236 '60xx,4000' => { VR => 'LT',Name => 'OverlayComments' },
3237 # pixel data group
3238 '7Fxx,0000' => { VR => 'UL', Name => 'PixelDataGroupLength' },
3239 '7Fxx,0010' => { VR => 'OB', Name => 'PixelData', Binary => 1 },
3240 '7Fxx,0011' => { VR => 'US', Name => 'VariableNextDataGroup' },
3241 '7Fxx,0020' => { VR => 'OW', Name => 'VariableCoefficientsSDVN' },
3242 '7Fxx,0030' => { VR => 'OW', Name => 'VariableCoefficientsSDHN' },
3243 '7Fxx,0040' => { VR => 'OW', Name => 'VariableCoefficientsSDDN' },
3244 'FFFA,FFFA' => { VR => 'SQ', Name => 'DigitalSignaturesSequence' },
3245 'FFFC,FFFC' => { VR => 'OB', Name => 'DataSetTrailingPadding', Binary => 1 },
3246 # the sequence delimiters have no VR:
3247 'FFFE,E000' => 'StartOfItem',
3248 'FFFE,E00D' => 'EndOfItems',
3249 'FFFE,E0DD' => 'EndOfSequence',
3250);
3251
3252# table to translate registered UID values to readable strings
3253# (the PrintConv is added dynamically when a 'UI' format tag is extracted)
3254%uid = (
3255 '1.2.840.10008.1.1' => 'Verification SOP Class',
3256 '1.2.840.10008.1.2' => 'Implicit VR Little Endian',
3257 '1.2.840.10008.1.2.1' => 'Explicit VR Little Endian',
3258 '1.2.840.10008.1.2.1.99' => 'Deflated Explicit VR Little Endian',
3259 '1.2.840.10008.1.2.2' => 'Explicit VR Big Endian',
3260 '1.2.840.10008.1.2.4.50' => 'JPEG Baseline (Process 1)',
3261 '1.2.840.10008.1.2.4.51' => 'JPEG Extended (Process 2 & 4)',
3262 '1.2.840.10008.1.2.4.52' => 'JPEG Extended (Process 3 & 5)',
3263 '1.2.840.10008.1.2.4.53' => 'JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)',
3264 '1.2.840.10008.1.2.4.54' => 'JPEG Spectral Selection, Non-Hierarchical (Process 7 & 9)',
3265 '1.2.840.10008.1.2.4.55' => 'JPEG Full Progression, Non-Hierarchical (Process 10 & 12)',
3266 '1.2.840.10008.1.2.4.56' => 'JPEG Full Progression, Non-Hierarchical (Process 11 & 13)',
3267 '1.2.840.10008.1.2.4.57' => 'JPEG Lossless, Non-Hierarchical (Process 14)',
3268 '1.2.840.10008.1.2.4.58' => 'JPEG Lossless, Non-Hierarchical (Process 15) ',
3269 '1.2.840.10008.1.2.4.59' => 'JPEG Extended, Hierarchical (Process 16 & 18) ',
3270 '1.2.840.10008.1.2.4.60' => 'JPEG Extended, Hierarchical (Process 17 & 19) ',
3271 '1.2.840.10008.1.2.4.61' => 'JPEG Spectral Selection, Hierarchical (Process 20 & 22)',
3272 '1.2.840.10008.1.2.4.62' => 'JPEG Spectral Selection, Hierarchical (Process 21 & 23)',
3273 '1.2.840.10008.1.2.4.63' => 'JPEG Full Progression, Hierarchical (Process 24 & 26)',
3274 '1.2.840.10008.1.2.4.64' => 'JPEG Full Progression, Hierarchical (Process 25 & 27)',
3275 '1.2.840.10008.1.2.4.65' => 'JPEG Lossless, Hierarchical (Process 28) ',
3276 '1.2.840.10008.1.2.4.66' => 'JPEG Lossless, Hierarchical (Process 29) ',
3277 '1.2.840.10008.1.2.4.70' => 'JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14-1)',
3278 '1.2.840.10008.1.2.4.80' => 'JPEG-LS Lossless Image Compression',
3279 '1.2.840.10008.1.2.4.81' => 'JPEG-LS Lossy (Near-Lossless) Image Compression',
3280 '1.2.840.10008.1.2.4.90' => 'JPEG 2000 Image Compression (Lossless Only)',
3281 '1.2.840.10008.1.2.4.91' => 'JPEG 2000 Image Compression',
3282 '1.2.840.10008.1.2.4.92' => 'JPEG 2000 Part 2 Multi-component Image Compression (Lossless Only)',
3283 '1.2.840.10008.1.2.4.93' => 'JPEG 2000 Part 2 Multi-component Image Compression',
3284 '1.2.840.10008.1.2.4.94' => 'JPIP Referenced',
3285 '1.2.840.10008.1.2.4.95' => 'JPIP Referenced Deflate',
3286 '1.2.840.10008.1.2.4.100' => 'MPEG2 Main Profile @ Main Level',
3287 '1.2.840.10008.1.2.5' => 'RLE Lossless',
3288 '1.2.840.10008.1.2.6.1' => 'RFC 2557 MIME encapsulation',
3289 '1.2.840.10008.1.2.6.2' => 'XML Encoding',
3290 '1.2.840.10008.1.3.10' => 'Media Storage Directory Storage',
3291 '1.2.840.10008.1.4.1.1' => 'Talairach Brain Atlas Frame of Reference',
3292 '1.2.840.10008.1.4.1.2' => 'SPM2 T1 Frame of Reference',
3293 '1.2.840.10008.1.4.1.3' => 'SPM2 T2 Frame of Reference',
3294 '1.2.840.10008.1.4.1.4' => 'SPM2 PD Frame of Reference',
3295 '1.2.840.10008.1.4.1.5' => 'SPM2 EPI Frame of Reference',
3296 '1.2.840.10008.1.4.1.6' => 'SPM2 FIL T1 Frame of Reference',
3297 '1.2.840.10008.1.4.1.7' => 'SPM2 PET Frame of Reference',
3298 '1.2.840.10008.1.4.1.8' => 'SPM2 TRANSM Frame of Reference',
3299 '1.2.840.10008.1.4.1.9' => 'SPM2 SPECT Frame of Reference',
3300 '1.2.840.10008.1.4.1.10' => 'SPM2 GRAY Frame of Reference',
3301 '1.2.840.10008.1.4.1.11' => 'SPM2 WHITE Frame of Reference',
3302 '1.2.840.10008.1.4.1.12' => 'SPM2 CSF Frame of Reference',
3303 '1.2.840.10008.1.4.1.13' => 'SPM2 BRAINMASK Frame of Reference',
3304 '1.2.840.10008.1.4.1.14' => 'SPM2 AVG305T1 Frame of Reference',
3305 '1.2.840.10008.1.4.1.15' => 'SPM2 AVG152T1 Frame of Reference',
3306 '1.2.840.10008.1.4.1.16' => 'SPM2 AVG152T2 Frame of Reference',
3307 '1.2.840.10008.1.4.1.17' => 'SPM2 AVG152PD Frame of Reference',
3308 '1.2.840.10008.1.4.1.18' => 'SPM2 SINGLESUBJT1 Frame of Reference',
3309 '1.2.840.10008.1.4.2.1' => 'ICBM 452 T1 Frame of Reference',
3310 '1.2.840.10008.1.4.2.2' => 'ICBM Single Subject MRI Frame of Reference',
3311 '1.2.840.10008.1.9' => 'Basic Study Content Notification SOP Class',
3312 '1.2.840.10008.1.20.1' => 'Storage Commitment Push Model SOP Class',
3313 '1.2.840.10008.1.20.1.1' => 'Storage Commitment Push Model SOP Instance',
3314 '1.2.840.10008.1.20.2' => 'Storage Commitment Pull Model SOP Class ',
3315 '1.2.840.10008.1.20.2.1' => 'Storage Commitment Pull Model SOP Instance ',
3316 '1.2.840.10008.1.40' => 'Procedural Event Logging SOP Class',
3317 '1.2.840.10008.1.40.1' => 'Procedural Event Logging SOP Instance',
3318 '1.2.840.10008.1.42' => 'Substance Administration Logging SOP Class',
3319 '1.2.840.10008.1.42.1' => 'Substance Administration Logging SOP Instance',
3320 '1.2.840.10008.2.6.1' => 'DICOM UID Registry',
3321 '1.2.840.10008.2.16.4' => 'DICOM Controlled Terminology',
3322 '1.2.840.10008.3.1.1.1' => 'DICOM Application Context Name',
3323 '1.2.840.10008.3.1.2.1.1' => 'Detached Patient Management SOP Class',
3324 '1.2.840.10008.3.1.2.1.4' => 'Detached Patient Management Meta SOP Class',
3325 '1.2.840.10008.3.1.2.2.1' => 'Detached Visit Management SOP Class',
3326 '1.2.840.10008.3.1.2.3.1' => 'Detached Study Management SOP Class',
3327 '1.2.840.10008.3.1.2.3.2' => 'Study Component Management SOP Class',
3328 '1.2.840.10008.3.1.2.3.3' => 'Modality Performed Procedure Step SOP Class',
3329 '1.2.840.10008.3.1.2.3.4' => 'Modality Performed Procedure Step Retrieve SOP Class',
3330 '1.2.840.10008.3.1.2.3.5' => 'Modality Performed Procedure Step Notification SOP Class',
3331 '1.2.840.10008.3.1.2.5.1' => 'Detached Results Management SOP Class',
3332 '1.2.840.10008.3.1.2.5.4' => 'Detached Results Management Meta SOP Class',
3333 '1.2.840.10008.3.1.2.5.5' => 'Detached Study Management Meta SOP Class',
3334 '1.2.840.10008.3.1.2.6.1' => 'Detached Interpretation Management SOP Class',
3335 '1.2.840.10008.4.2' => 'Storage Service Class Service Class PS 3.4',
3336 '1.2.840.10008.5.1.1.1' => 'Basic Film Session SOP Class',
3337 '1.2.840.10008.5.1.1.2' => 'Basic Film Box SOP Class',
3338 '1.2.840.10008.5.1.1.4' => 'Basic Grayscale Image Box SOP Class',
3339 '1.2.840.10008.5.1.1.4.1' => 'Basic Color Image Box SOP Class',
3340 '1.2.840.10008.5.1.1.4.2' => 'Referenced Image Box SOP Class',
3341 '1.2.840.10008.5.1.1.9' => 'Basic Grayscale Print ManagementMeta SOP Class',
3342 '1.2.840.10008.5.1.1.9.1' => 'Referenced Grayscale Print Management Meta SOP Class',
3343 '1.2.840.10008.5.1.1.14' => 'Print Job SOP Class',
3344 '1.2.840.10008.5.1.1.15' => 'Basic Annotation Box SOP Class',
3345 '1.2.840.10008.5.1.1.16' => 'Printer SOP Class',
3346 '1.2.840.10008.5.1.1.16.376' => 'Printer Configuration Retrieval SOP Class',
3347 '1.2.840.10008.5.1.1.17' => 'Printer SOP Instance',
3348 '1.2.840.10008.5.1.1.17.376' => 'Printer Configuration RetrievalSOP Instance',
3349 '1.2.840.10008.5.1.1.18' => 'Basic Color Print Management Meta SOP Class',
3350 '1.2.840.10008.5.1.1.18.1' => 'Referenced Color Print Management Meta SOP Class',
3351 '1.2.840.10008.5.1.1.22' => 'VOI LUT Box SOP Class',
3352 '1.2.840.10008.5.1.1.23' => 'Presentation LUT SOP Class',
3353 '1.2.840.10008.5.1.1.24' => 'Image Overlay Box SOP Class',
3354 '1.2.840.10008.5.1.1.24.1' => 'Basic Print Image Overlay Box SOP Class',
3355 '1.2.840.10008.5.1.1.25' => 'Print Queue SOP Instance',
3356 '1.2.840.10008.5.1.1.26' => 'Print Queue Management SOP Class',
3357 '1.2.840.10008.5.1.1.27' => 'Stored Print Storage SOP Class',
3358 '1.2.840.10008.5.1.1.29' => 'Hardcopy Grayscale Image',
3359 '1.2.840.10008.5.1.1.30' => 'Hardcopy Color Image Storage SOP Class',
3360 '1.2.840.10008.5.1.1.31' => 'Pull Print Request SOP Class',
3361 '1.2.840.10008.5.1.1.32' => 'Pull Stored Print Management Meta SOP Class',
3362 '1.2.840.10008.5.1.1.33' => 'Media Creation Management SOP Class',
3363 '1.2.840.10008.5.1.4.1.1.1' => 'Computed Radiography Image Storage',
3364 '1.2.840.10008.5.1.4.1.1.1.1' => 'Digital X-Ray Image Storage - For Presentation',
3365 '1.2.840.10008.5.1.4.1.1.1.1.1' => 'Digital X-Ray Image Storage - For Processing',
3366 '1.2.840.10008.5.1.4.1.1.1.2' => 'Digital Mammography X-Ray Image Storage - For Presentation',
3367 '1.2.840.10008.5.1.4.1.1.1.2.1' => 'Digital Mammography X-Ray Image Storage - For Processing',
3368 '1.2.840.10008.5.1.4.1.1.1.3' => 'Digital Intra-oral X-Ray Image Storage - For Presentation',
3369 '1.2.840.10008.5.1.4.1.1.1.3.1' => 'Digital Intra-oral X-Ray Image Storage - For Processing',
3370 '1.2.840.10008.5.1.4.1.1.2' => 'CT Image Storage',
3371 '1.2.840.10008.5.1.4.1.1.2.1' => 'Enhanced CT Image Storage',
3372 '1.2.840.10008.5.1.4.1.1.3' => 'Ultrasound Multi-frame Image Storage ',
3373 '1.2.840.10008.5.1.4.1.1.3.1' => 'Ultrasound Multi-frame Image Storage',
3374 '1.2.840.10008.5.1.4.1.1.4' => 'MR Image Storage',
3375 '1.2.840.10008.5.1.4.1.1.4.1' => 'Enhanced MR Image Storage',
3376 '1.2.840.10008.5.1.4.1.1.4.2' => 'MR Spectroscopy Storage',
3377 '1.2.840.10008.5.1.4.1.1.5' => 'Nuclear Medicine Image Storage',
3378 '1.2.840.10008.5.1.4.1.1.6' => 'Ultrasound Image Storage',
3379 '1.2.840.10008.5.1.4.1.1.6.1' => 'Ultrasound Image Storage',
3380 '1.2.840.10008.5.1.4.1.1.7' => 'Secondary Capture Image Storage',
3381 '1.2.840.10008.5.1.4.1.1.7.1' => 'Multi-frame Single Bit Secondary',
3382 '1.2.840.10008.5.1.4.1.1.7.2' => 'Multi-frame Grayscale Byte Secondary Capture Image Storage',
3383 '1.2.840.10008.5.1.4.1.1.7.3' => 'Multi-frame Grayscale Word Secondary Capture Image Storage',
3384 '1.2.840.10008.5.1.4.1.1.7.4' => 'Multi-frame True Color Secondary Capture Image Storage',
3385 '1.2.840.10008.5.1.4.1.1.8' => 'Standalone Overlay Storage',
3386 '1.2.840.10008.5.1.4.1.1.9' => 'Standalone Curve Storage',
3387 '1.2.840.10008.5.1.4.1.1.9.1' => 'Waveform Storage - Trial (Retired)',
3388 '1.2.840.10008.5.1.4.1.1.9.1.1' => '12-lead ECG Waveform Storage',
3389 '1.2.840.10008.5.1.4.1.1.9.1.2' => 'General ECG Waveform Storage',
3390 '1.2.840.10008.5.1.4.1.1.9.1.3' => 'Ambulatory ECG Waveform Storage',
3391 '1.2.840.10008.5.1.4.1.1.9.2.1' => 'Hemodynamic Waveform Storage',
3392 '1.2.840.10008.5.1.4.1.1.9.3.1' => 'Cardiac Electrophysiology Waveform Storage',
3393 '1.2.840.10008.5.1.4.1.1.9.4.1' => 'Basic Voice Audio Waveform Storage',
3394 '1.2.840.10008.5.1.4.1.1.10' => 'Standalone Modality LUT Storage',
3395 '1.2.840.10008.5.1.4.1.1.11' => 'Standalone VOI LUT Storage',
3396 '1.2.840.10008.5.1.4.1.1.11.1' => 'Grayscale Softcopy Presentation State Storage SOP Class',
3397 '1.2.840.10008.5.1.4.1.1.11.2' => 'Color Softcopy Presentation State Storage SOP Class',
3398 '1.2.840.10008.5.1.4.1.1.11.3' => 'Pseudo-Color Softcopy Presentation State Storage SOP Class',
3399 '1.2.840.10008.5.1.4.1.1.11.4' => 'Blending Softcopy Presentation State Storage SOP Class',
3400 '1.2.840.10008.5.1.4.1.1.12.1' => 'X-Ray Angiographic Image Storage',
3401 '1.2.840.10008.5.1.4.1.1.12.1.1' => 'Enhanced XA Image Storage',
3402 '1.2.840.10008.5.1.4.1.1.12.2' => 'X-Ray Radiofluoroscopic Image Storage',
3403 '1.2.840.10008.5.1.4.1.1.12.2.1' => 'Enhanced XRF Image Storage',
3404 '1.2.840.10008.5.1.4.1.1.12.3' => 'X-Ray Angiographic Bi-Plane Image Storage ',
3405 '1.2.840.10008.5.1.4.1.1.13.1.1' => 'X-Ray 3D Angiographic Image Storage',
3406 '1.2.840.10008.5.1.4.1.1.13.1.2' => 'X-Ray 3D Craniofacial Image Storage',
3407 '1.2.840.10008.5.1.4.1.1.20' => 'Nuclear Medicine Image Storage',
3408 '1.2.840.10008.5.1.4.1.1.66' => 'Raw Data Storage',
3409 '1.2.840.10008.5.1.4.1.1.66.1' => 'Spatial Registration Storage',
3410 '1.2.840.10008.5.1.4.1.1.66.2' => 'Spatial Fiducials Storage',
3411 '1.2.840.10008.5.1.4.1.1.66.3' => 'Deformable Spatial Registration Storage',
3412 '1.2.840.10008.5.1.4.1.1.66.4' => 'Segmentation Storage',
3413 '1.2.840.10008.5.1.4.1.1.67' => 'Real World Value Mapping Storage',
3414 '1.2.840.10008.5.1.4.1.1.77.1' => 'VL Image Storage ',
3415 '1.2.840.10008.5.1.4.1.1.77.2' => 'VL Multi-frame Image Storage',
3416 '1.2.840.10008.5.1.4.1.1.77.1.1' => 'VL Endoscopic Image Storage',
3417 '1.2.840.10008.5.1.4.1.1.77.1.1.1' => 'Video Endoscopic Image Storage',
3418 '1.2.840.10008.5.1.4.1.1.77.1.2' => 'VL Microscopic Image Storage',
3419 '1.2.840.10008.5.1.4.1.1.77.1.2.1' => 'Video Microscopic Image Storage',
3420 '1.2.840.10008.5.1.4.1.1.77.1.3' => 'VL Slide-Coordinates Microscopic Image Storage',
3421 '1.2.840.10008.5.1.4.1.1.77.1.4' => 'VL Photographic Image Storage',
3422 '1.2.840.10008.5.1.4.1.1.77.1.4.1' => 'Video Photographic Image Storage',
3423 '1.2.840.10008.5.1.4.1.1.77.1.5.1' => 'Ophthalmic Photography 8 Bit Image Storage',
3424 '1.2.840.10008.5.1.4.1.1.77.1.5.2' => 'Ophthalmic Photography 16 Bit Image Storage',
3425 '1.2.840.10008.5.1.4.1.1.77.1.5.3' => 'Stereometric Relationship Storage',
3426 '1.2.840.10008.5.1.4.1.1.77.1.5.4' => 'Ophthalmic Tomography Image Storage',
3427 '1.2.840.10008.5.1.4.1.1.88.1' => 'Text SR Storage - Trial (Retired)',
3428 '1.2.840.10008.5.1.4.1.1.88.2' => 'Audio SR Storage - Trial (Retired)',
3429 '1.2.840.10008.5.1.4.1.1.88.3' => 'Detail SR Storage - Trial (Retired)',
3430 '1.2.840.10008.5.1.4.1.1.88.4' => 'Comprehensive SR Storage - Trial (Retired)',
3431 '1.2.840.10008.5.1.4.1.1.88.11' => 'Basic Text SR',
3432 '1.2.840.10008.5.1.4.1.1.88.22' => 'Enhanced SR',
3433 '1.2.840.10008.5.1.4.1.1.88.33' => 'Comprehensive SR',
3434 '1.2.840.10008.5.1.4.1.1.88.40' => 'Procedure Log Storage',
3435 '1.2.840.10008.5.1.4.1.1.88.50' => 'Mammography CAD SR',
3436 '1.2.840.10008.5.1.4.1.1.88.59' => 'Key Object Selection Document',
3437 '1.2.840.10008.5.1.4.1.1.88.65' => 'Chest CAD SR',
3438 '1.2.840.10008.5.1.4.1.1.88.67' => 'X-Ray Radiation Dose SR Storage',
3439 '1.2.840.10008.5.1.4.1.1.104.1' => 'Encapsulated PDF Storage',
3440 '1.2.840.10008.5.1.4.1.1.104.2' => 'Encapsulated CDA Storage',
3441 '1.2.840.10008.5.1.4.1.1.128' => 'Positron Emission Tomography Image Storage',
3442 '1.2.840.10008.5.1.4.1.1.129' => 'Standalone PET Curve Storage',
3443 '1.2.840.10008.5.1.4.1.1.481.1' => 'RT Image Storage',
3444 '1.2.840.10008.5.1.4.1.1.481.2' => 'RT Dose Storage',
3445 '1.2.840.10008.5.1.4.1.1.481.3' => 'RT Structure Set Storage',
3446 '1.2.840.10008.5.1.4.1.1.481.4' => 'RT Beams Treatment Record Storage',
3447 '1.2.840.10008.5.1.4.1.1.481.5' => 'RT Plan Storage',
3448 '1.2.840.10008.5.1.4.1.1.481.6' => 'RT Brachy Treatment Record Storage',
3449 '1.2.840.10008.5.1.4.1.1.481.7' => 'RT Treatment Summary Record Storage',
3450 '1.2.840.10008.5.1.4.1.1.481.8' => 'RT Ion Plan Storage',
3451 '1.2.840.10008.5.1.4.1.1.481.9' => 'RT Ion Beams Treatment Record Storage',
3452 '1.2.840.10008.5.1.4.1.2.1.1' => 'Patient Root Query/Retrieve Information Model - FIND',
3453 '1.2.840.10008.5.1.4.1.2.1.2' => 'Patient Root Query/Retrieve Information Model - MOVE',
3454 '1.2.840.10008.5.1.4.1.2.1.3' => 'Patient Root Query/Retrieve Information Model - GET',
3455 '1.2.840.10008.5.1.4.1.2.2.1' => 'Study Root Query/Retrieve Information Model - FIND',
3456 '1.2.840.10008.5.1.4.1.2.2.2' => 'Study Root Query/Retrieve Information Model - MOVE',
3457 '1.2.840.10008.5.1.4.1.2.2.3' => 'Study Root Query/Retrieve Information Model - GET',
3458 '1.2.840.10008.5.1.4.1.2.3.1' => 'Patient/Study Only Query/Retrieve Information Model - FIND',
3459 '1.2.840.10008.5.1.4.1.2.3.2' => 'Patient/Study Only Query/Retrieve Information Model - MOVE',
3460 '1.2.840.10008.5.1.4.1.2.3.3' => 'Patient/Study Only Query/Retrieve Information Model - GET',
3461 '1.2.840.10008.5.1.4.31' => 'Modality Worklist Information Model - FIND',
3462 '1.2.840.10008.5.1.4.32.1' => 'General Purpose Worklist Information Model - FIND',
3463 '1.2.840.10008.5.1.4.32.2' => 'General Purpose Scheduled Procedure Step SOP Class',
3464 '1.2.840.10008.5.1.4.32.3' => 'General Purpose Performed Procedure Step SOP Class',
3465 '1.2.840.10008.5.1.4.32' => 'General Purpose Worklist Management Meta SOP Class',
3466 '1.2.840.10008.5.1.4.33' => 'Instance Availability Notification SOP Class',
3467 '1.2.840.10008.5.1.4.34.1' => 'RT Beams Delivery Instruction Storage',
3468 '1.2.840.10008.5.1.4.34.2' => 'RT Conventional Machine Verification',
3469 '1.2.840.10008.5.1.4.34.3' => 'RT Ion Machine Verification',
3470 '1.2.840.10008.5.1.4.34.4' => 'Unified Worklist and Procedure Step Service Class',
3471 '1.2.840.10008.5.1.4.34.4.1' => 'Unified Procedure Step - Push SOP Class',
3472 '1.2.840.10008.5.1.4.34.4.2' => 'Unified Procedure Step - Watch SOP Class',
3473 '1.2.840.10008.5.1.4.34.4.3' => 'Unified Procedure Step - Pull SOP Class',
3474 '1.2.840.10008.5.1.4.34.4.4' => 'Unified Procedure Step - Event SOP Class',
3475 '1.2.840.10008.5.1.4.34.5' => 'Unified Worklist and Procedure Step SOP Instance',
3476 '1.2.840.10008.5.1.4.37.1' => 'General Relevant Patient Information Query',
3477 '1.2.840.10008.5.1.4.37.2' => 'Breast Imaging Relevant Patient Information Query',
3478 '1.2.840.10008.5.1.4.37.3' => 'Cardiac Relevant Patient Information Query',
3479 '1.2.840.10008.5.1.4.38.1' => 'Hanging Protocol Storage',
3480 '1.2.840.10008.5.1.4.38.2' => 'Hanging Protocol Information Model - FIND',
3481 '1.2.840.10008.5.1.4.38.3' => 'Hanging Protocol Information Model - MOVE',
3482 '1.2.840.10008.5.1.4.41' => 'Product Characteristics Query SOP Class',
3483 '1.2.840.10008.5.1.4.42' => 'Substance Approval Query SOP Class',
3484 '1.2.840.10008.15.0.3.1' => 'dicomDeviceName',
3485 '1.2.840.10008.15.0.3.2' => 'dicomDescription',
3486 '1.2.840.10008.15.0.3.3' => 'dicomManufacturer',
3487 '1.2.840.10008.15.0.3.4' => 'dicomManufacturerModelName',
3488 '1.2.840.10008.15.0.3.5' => 'dicomSoftwareVersion',
3489 '1.2.840.10008.15.0.3.6' => 'dicomVendorData',
3490 '1.2.840.10008.15.0.3.7' => 'dicomAETitle',
3491 '1.2.840.10008.15.0.3.8' => 'dicomNetworkConnectionReference',
3492 '1.2.840.10008.15.0.3.9' => 'dicomApplicationCluster',
3493 '1.2.840.10008.15.0.3.10' => 'dicomAssociationInitiator',
3494 '1.2.840.10008.15.0.3.11' => 'dicomAssociationAcceptor',
3495 '1.2.840.10008.15.0.3.12' => 'dicomHostname',
3496 '1.2.840.10008.15.0.3.13' => 'dicomPort',
3497 '1.2.840.10008.15.0.3.14' => 'dicomSOPClass',
3498 '1.2.840.10008.15.0.3.15' => 'dicomTransferRole',
3499 '1.2.840.10008.15.0.3.16' => 'dicomTransferSyntax',
3500 '1.2.840.10008.15.0.3.17' => 'dicomPrimaryDeviceType',
3501 '1.2.840.10008.15.0.3.18' => 'dicomRelatedDeviceReference',
3502 '1.2.840.10008.15.0.3.19' => 'dicomPreferredCalledAETitle',
3503 '1.2.840.10008.15.0.3.20' => 'dicomTLSCyphersuite',
3504 '1.2.840.10008.15.0.3.21' => 'dicomAuthorizedNodeCertificateReference',
3505 '1.2.840.10008.15.0.3.22' => 'dicomThisNodeCertificateReference',
3506 '1.2.840.10008.15.0.3.23' => 'dicomInstalled',
3507 '1.2.840.10008.15.0.3.24' => 'dicomStationName',
3508 '1.2.840.10008.15.0.3.25' => 'dicomDeviceSerialNumber',
3509 '1.2.840.10008.15.0.3.26' => 'dicomInstitutionName',
3510 '1.2.840.10008.15.0.3.27' => 'dicomInstitutionAddress',
3511 '1.2.840.10008.15.0.3.28' => 'dicomInstitutionDepartmentName',
3512 '1.2.840.10008.15.0.3.29' => 'dicomIssuerOfPatientID',
3513 '1.2.840.10008.15.0.3.30' => 'dicomPreferredCallingAETitle',
3514 '1.2.840.10008.15.0.3.31' => 'dicomSupportedCharacterSet',
3515 '1.2.840.10008.15.0.4.1' => 'dicomConfigurationRoot',
3516 '1.2.840.10008.15.0.4.2' => 'dicomDevicesRoot',
3517 '1.2.840.10008.15.0.4.3' => 'dicomUniqueAETitlesRegistryRoot',
3518 '1.2.840.10008.15.0.4.4' => 'dicomDevice',
3519 '1.2.840.10008.15.0.4.5' => 'dicomNetworkAE',
3520 '1.2.840.10008.15.0.4.6' => 'dicomNetworkConnection',
3521 '1.2.840.10008.15.0.4.7' => 'dicomUniqueAETitle',
3522 '1.2.840.10008.15.0.4.8' => 'dicomTransferCapability',
3523);
3524
3525#------------------------------------------------------------------------------
3526# Extract information from a DICOM (DCM) image
3527# Inputs: 0) ExifTool object reference, 1) DirInfo reference
3528# Returns: 1 on success, 0 if this wasn't a valid DICOM file
3529sub ProcessDICM($$)
3530{
3531 my ($exifTool, $dirInfo) = @_;
3532 my $raf = $$dirInfo{RAF};
3533 my $unknown = $exifTool->Options('Unknown');
3534 my $verbose = $exifTool->Options('Verbose');
3535 my ($hdr, $buff, $implicit, $vr, $len);
3536#
3537# identify the DICOM or ACR-NEMA file
3538#
3539 $raf->Read($hdr, 12) == 12 or return 0; # save for ACR identification later
3540 $raf->Seek(128, 0) or return 0; # skip to end of DICM header
3541 $raf->Read($buff, 4) == 4 or return 0; # read signature
3542 if ($buff eq 'DICM') {
3543 # file meta information transfer syntax is explicit little endian
3544 SetByteOrder('II');
3545 $exifTool->SetFileType('DICOM');
3546 } else {
3547 # test for a RAW DCM image (ACR-NEMA format, ie. no header)
3548 foreach ('II','MM','') {
3549 return 0 unless $_; # no luck identifying the syntax
3550 SetByteOrder($_);
3551 my $g = Get16u(\$hdr, 0);
3552 # expect group number to be small and even
3553 next if $g < 2 or $g > 8 or $g & 0x01;
3554 my $e = Get16u(\$hdr, 2);
3555 next if $e > 0x20; # expect a low element number at start
3556 $vr = substr($hdr, 4, 2); # look for explicit VR
3557 if ($vr =~ /^[A-Z]{2}$/) {
3558 $implicit = 0;
3559 if ($vr32{$vr}) {
3560 next unless Get16u(\$hdr, 6) == 0; # must be 2 zero bytes
3561 $len = Get32u(\$hdr, 8);
3562 } else {
3563 next if $e == 0 and $vr ne 'UL'; # group length must be UL
3564 $len = Get16u(\$hdr, 6);
3565 }
3566 } else {
3567 $implicit = 1;
3568 $len = Get32u(\$hdr, 4);
3569 }
3570 next if $e == 0 and $len != 4; # group length value must be 4 bytes
3571 next if $len > 64; # first element shouldn't be too long
3572 last; # success!
3573 }
3574 $raf->Seek(0, 0) or return 0; # rewind to start of file
3575 $exifTool->SetFileType('ACR');
3576 }
3577#
3578# process the meta information
3579#
3580 my $tagTablePtr = GetTagTable('Image::ExifTool::DICOM::Main');
3581 my $pos = $raf->Tell();
3582 my $err = 1;
3583 my ($transferSyntax, $group2end);
3584 for (;;) {
3585 $raf->Read($buff, 8) == 8 or $err = 0, last;
3586 $pos += 8;
3587 my $group = Get16u(\$buff, 0);
3588 # implement the transfer syntax at the end of the group 2 data
3589 if ($transferSyntax and ($group != 0x0002 or
3590 ($group2end and $pos > $group2end)))
3591 {
3592 # 1.2.840.10008.1.2 = implicit VR little endian
3593 # 1.2.840.10008.1.2.2 = explicit VR big endian
3594 # 1.2.840.10008.1.2.x = explicit VR little endian
3595 # 1.2.840.10008.1.2.1.99 = deflated
3596 unless ($transferSyntax =~ /^1\.2\.840\.10008\.1\.2(\.\d+)?(\.\d+)?/) {
3597 $exifTool->Warn("Unrecognized transfer syntax $transferSyntax");
3598 last;
3599 }
3600 if (not $1) {
3601 $implicit = 1;
3602 } elsif ($1 eq '.2') {
3603 SetByteOrder('MM');
3604 $group = Get16u(\$buff, 0); # must get group again
3605 } elsif ($1 eq '.1' and $2 and $2 eq '.99') {
3606 # inflate compressed data stream
3607 if (eval 'require Compress::Zlib') {
3608 # must use undocumented zlib feature to disable zlib header information
3609 # because DICOM deflated data doesn't have the zlib header (ref 3)
3610 my $wbits = -Compress::Zlib::MAX_WBITS();
3611 my $inflate = Compress::Zlib::inflateInit(-WindowBits => $wbits);
3612 if ($inflate) {
3613 $raf->Seek(-8, 1) or last;
3614 my $data = '';
3615 while ($raf->Read($buff, 65536)) {
3616 my ($buf, $stat) = $inflate->inflate($buff);
3617 if ($stat == Compress::Zlib::Z_OK() or
3618 $stat == Compress::Zlib::Z_STREAM_END())
3619 {
3620 $data .= $buf;
3621 last if $stat == Compress::Zlib::Z_STREAM_END();
3622 } else {
3623 $exifTool->Warn('Error inflating compressed data stream');
3624 return 1;
3625 }
3626 }
3627 last if length $data < 8;
3628 # create new RAF object from inflated data stream
3629 $raf = new File::RandomAccess(\$data);
3630 # re-read start of stream (now decompressed)
3631 $raf->Read($buff, 8) == 8 or last;
3632 $group = Get16u(\$buff, 0);
3633 } else {
3634 $exifTool->Warn('Error initializing inflation');
3635 return 1;
3636 }
3637 } else {
3638 $exifTool->Warn('Install Compress::Zlib to decode compressed data stream');
3639 return 1;
3640 }
3641 }
3642 undef $transferSyntax;
3643 }
3644 my $element = Get16u(\$buff,2);
3645 my $tag = sprintf('%.4X,%.4X', $group, $element);
3646
3647 if ($implicit or $implicitVR{$tag}) {
3648 # treat everything as string if implicit VR because it
3649 # isn't worth it to generate the necessary VR lookup tables
3650 # for the thousands of defined data elements
3651 $vr = ''; # no VR (treat everything as string)
3652 $len = Get32u(\$buff, 4);
3653 } else {
3654 $vr = substr($buff,4,2);
3655 last unless $vr =~ /^[A-Z]{2}$/;
3656 if ($vr32{$vr}) {
3657 $raf->Read($buff, 4) == 4 or last;
3658 $pos += 4;
3659 $len = Get32u(\$buff, 0);
3660 $len = 0 if $vr eq 'SQ'; # just recurse into sequences
3661 } else {
3662 $len = Get16u(\$buff, 6);
3663 }
3664 }
3665 if ($len == 0xffffffff) {
3666 $len = 0; # don't read value if undefined length
3667 if ($verbose) {
3668 # start list of items in verbose output
3669 $exifTool->VPrint(0, "$exifTool->{INDENT}+ [List of items]\n");
3670 $exifTool->{INDENT} .= '| ';
3671 }
3672 }
3673 # read the element value
3674 if ($len) {
3675 $raf->Read($buff, $len) == $len or last;
3676 $pos += $len;
3677 } else {
3678 $buff = '';
3679 }
3680
3681 # handle tags not found in the table
3682 my $tagInfo = $$tagTablePtr{$tag};
3683 unless ($tagInfo) {
3684 # accept tag ID's with "x" for a wildcard in the following patterns:
3685 # '60xx,1203', '0020,31xx', '0028,04x2', '1000,xxx0', '1010,xxxx'
3686 my $xx;
3687 if ((($xx = $tag) =~ s/^(..)../$1xx/ and $$tagTablePtr{$xx}) or
3688 (($xx = $tag) =~ s/..$/xx/ and $$tagTablePtr{$xx}) or
3689 (($xx = $tag) =~ s/.(.)$/x$1/ and $$tagTablePtr{$xx}) or
3690 (($xx = $tag) =~ s/...(.)$/xxx$1/ and $$tagTablePtr{$xx}) or
3691 (($xx = $tag) =~ s/....$/xxxx/ and $$tagTablePtr{$xx}))
3692 {
3693 $tag = $xx;
3694 $tagInfo = $$tagTablePtr{$xx};
3695 } elsif ($unknown) {
3696 # create tag info hash for unknown elements
3697 if ($element == 0) { # element zero is group length
3698 $tagInfo = {
3699 Name => sprintf("Group%.4X_Length", $group),
3700 Description => sprintf("Group %.4X Length", $group),
3701 };
3702 } else {
3703 $tagInfo = {
3704 Name => sprintf("DICOM_%.4X_%.4X", $group, $element),
3705 Description => sprintf("DICOM %.4X,%.4X", $group, $element),
3706 };
3707 }
3708 $$tagInfo{Unknown} = 1;
3709 Image::ExifTool::AddTagToTable($tagTablePtr, $tag, $tagInfo);
3710 }
3711 }
3712 # get VR from our tag information if implicit
3713 $vr = $$tagInfo{VR} || ' ' if $tagInfo and not $vr;
3714
3715 if ($element == 0) {
3716 $vr = 'UL'; # group length element is always unsigned long
3717 }
3718 my $val;
3719 my $format = $dicomFormat{$vr};
3720 if ($len > 1024) {
3721 # treat large data elements as binary data
3722 my $binData;
3723 if ($exifTool->Options('Binary') or ($tagInfo and
3724 $exifTool->{REQ_TAG_LOOKUP}->{lc($$tagInfo{Name})}))
3725 {
3726 $binData = $buff; # must make a copy
3727 } else {
3728 $binData = "Binary data $len bytes";
3729 }
3730 $val = \$binData;
3731 } elsif ($format) {
3732 $val = ReadValue(\$buff, 0, $format, undef, $len);
3733 } else {
3734 $val = $buff;
3735 $format = 'string';
3736 if ($vr eq 'DA') {
3737 # format date values
3738 $val =~ s/^(\d{4})(\d{2})(\d{2})/$1:$2:$3/;
3739 } elsif ($vr eq 'TM') {
3740 # format time values
3741 $val =~ s/^(\d{2})(\d{2})(\d{2}.*)/$1:$2:$3/;
3742 } elsif ($vr eq 'DT') {
3743 # format date/time values
3744 $val =~ s/^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2}.*)/$1:$2:$3 $4:$5:$6/;
3745 } elsif ($vr eq 'AT' and $len == 4) {
3746 # convert attribute tag ID to hex format
3747 my ($g, $e) = (Get16u(\$buff,0), Get16u(\$buff,2));
3748 $val = sprintf('%.4X,%.4X', $g, $e);
3749 } elsif ($vr eq 'UI') {
3750 # add PrintConv to translate registered UID's
3751 $val =~ s/\0.*//; # truncate at null
3752 $$tagInfo{PrintConv} = \%uid if $uid{$val} and $tagInfo;
3753 }
3754 }
3755 # save the group 2 end position and transfer syntax
3756 if ($group == 0x0002) {
3757 $element == 0x0000 and $group2end = $pos + $val;
3758 $element == 0x0010 and $transferSyntax = $val;
3759 }
3760
3761 # handle the new tag information
3762 $exifTool->HandleTag($tagTablePtr, $tag, $val,
3763 DataPt => \$buff,
3764 DataPos => $pos - $len,
3765 Format => $format,
3766 Start => 0,
3767 Size => $len,
3768 Extra => " ($vr)",
3769 );
3770
3771 # stop indenting for list if we reached EndOfItems tag
3772 $exifTool->{INDENT} =~ s/..$// if $verbose and $tag eq 'FFFE,E00D';
3773 }
3774 $err and $exifTool->Warn('Error reading DICOM file (corrupted?)');
3775 return 1;
3776}
3777
37781; # end
3779
3780__END__
3781
3782=head1 NAME
3783
3784Image::ExifTool::DICOM - Read DICOM and ACR-NEMA medical images
3785
3786=head1 SYNOPSIS
3787
3788This module is used by Image::ExifTool
3789
3790=head1 DESCRIPTION
3791
3792This module contains routines required by Image::ExifTool to extract meta
3793information from DICOM (Digital Imaging and Communications in Medicine) DCM
3794and ACR-NEMA (American College of Radiology - National Electrical
3795Manufacturer's Association) ACR medical images.
3796
3797=head1 NOTES
3798
3799Images compressed using the DICOM deflated transfer syntax will be decoded
3800if Compress::Zlib is installed.
3801
3802No translation of special characters sets is done.
3803
3804=head1 AUTHOR
3805
3806Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
3807
3808This library is free software; you can redistribute it and/or modify it
3809under the same terms as Perl itself.
3810
3811=head1 REFERENCES
3812
3813=over 4
3814
3815=item L<http://medical.nema.org/>
3816
3817=item L<http://www.sph.sc.edu/comd/rorden/dicom.html>
3818
3819=item L<http://www.dclunie.com/>
3820
3821=item L<http://www.gehealthcare.com/usen/interoperability/dicom/docs/2258357r3.pdf>
3822
3823=back
3824
3825=head1 SEE ALSO
3826
3827L<Image::ExifTool::TagNames/DICOM Tags>,
3828L<Image::ExifTool(3pm)|Image::ExifTool>
3829
3830=cut
3831
Note: See TracBrowser for help on using the repository browser.