-
Notifications
You must be signed in to change notification settings - Fork 0
/
dicom-dict-large.txt
4558 lines (4558 loc) · 179 KB
/
dicom-dict-large.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Large DICOM Data Dictionary
#
# This Matlab Dictonary is generated from the XML files in GDCM
# See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details
#
(0000,0000) UL CommandGroupLength 1
(0000,0001) UL LengthtoEnd 1
(0000,0002) UI AffectedSOPClassUID 1
(0000,0003) UI RequestedSOPClassUID 1
(0000,0010) CS/LT RecognitionCode 1
(0000,0100) US CommandField 1
(0000,0110) US MessageID 1
(0000,0120) US MessageIDBeingRespondedTo 1
(0000,0200) AE Initiator 1
(0000,0300) AE Receiver 1
(0000,0400) AE FindLocation 1
(0000,0600) AE MoveDestination 1
(0000,0700) US Priority 1
(0000,0800) US DataSetType 1
(0000,0850) US NumberofMatches 1
(0000,0860) US ResponseSequenceNumber 1
(0000,0900) US Status 1
(0000,0901) AT OffendingElement 1-n
(0000,0902) LO ErrorComment 1
(0000,0903) US ErrorID 1
(0000,1000) UI AffectedSOPInstanceUID 1
(0000,1001) UI RequestedSOPInstanceUID 1
(0000,1002) US EventTypeID 1
(0000,1005) AT AttributeIdentifierList 1-n
(0000,1008) US ActionTypeID 1
(0000,1020) US NumberofRemainingSuboperations 1
(0000,1021) US NumberofCompletedSuboperations 1
(0000,1022) US NumberofFailedSuboperations 1
(0000,1023) US NumberofWarningSuboperations 1
(0000,1030) AE MoveOriginatorApplicationEntityTitle 1
(0000,1031) US MoveOriginatorMessageID 1
(0000,4000) AT/LT DIALOGReceiver 1
(0000,4010) AT/LT TerminalType 1
(0000,5010) SH MessageSetID 1
(0000,5020) SH EndMessageID 1
(0000,5110) AT/LT DisplayFormat 1
(0000,5120) AT/LT PagePositionID 1
(0000,5130) CS/LT TextFormatID 1
(0000,5140) CS/LT Normal 1
(0000,5150) CS/LT AddGrayScale 1
(0000,5160) CS/LT Borders 1
(0000,5170) IS Copies 1
(0000,5180) CS/LT MagnificationType 1
(0000,5190) CS/LT Erase 1
(0000,51a0) CS/LT Print 1
(0000,51b0) US Overlays 1-n
(0001,xx01) LO PrivateCreator0001xx01 1
(0001,xx02) LO PrivateCreator0001xx02 1
(0001,xx0e) LO PrivateCreator0001xx0e 1
(0002,0000) UL FileMetaInformationGroupLength 1
(0002,0001) OB FileMetaInformationVersion 1
(0002,0002) UI MediaStorageSOPClassUID 1
(0002,0003) UI MediaStorageSOPInstanceUID 1
(0002,0010) UI TransferSyntaxUID 1
(0002,0012) UI ImplementationClassUID 1
(0002,0013) SH ImplementationVersionName 1
(0002,0016) AE SourceApplicationEntityTitle 1
(0002,0100) UI PrivateInformationCreatorUID 1
(0002,0102) OB PrivateInformation 1
(0003,xx00) UN AEGISDICOM2000003xx00 1
(0003,xx02) LO PrivateCreator0003xx02 1
(0003,xx03) LO PrivateCreator0003xx03 1
(0003,xx10) LO PrivateCreator0003xx10 1
(0004,0000) UL FileSetGroupLength 1
(0004,1130) CS FilesetID 1
(0004,1141) CS FilesetDescriptorFileID 1-8
(0004,1142) CS SpecificCharacterSetofFilesetDescriptorFile 1
(0004,1200) UL OffsetoftheFirstDirectoryRecordoftheRootDirectoryEntity 1
(0004,1202) UL OffsetoftheLastDirectoryRecordoftheRootDirectoryEntity 1
(0004,1212) US FilesetConsistencyFlag 1
(0004,1220) SQ DirectoryRecordSequence 1
(0004,1400) UL OffsetoftheNextDirectoryRecord 1
(0004,1410) US RecordInuseFlag 1
(0004,1420) UL OffsetofReferencedLowerLevelDirectoryEntity 1
(0004,1430) CS DirectoryRecordType 1
(0004,1432) UI PrivateRecordUID 1
(0004,1500) CS ReferencedFileID 1-8
(0004,1504) UL MRDRDirectoryRecordOffset 1
(0004,1510) UI ReferencedSOPClassUIDinFile 1
(0004,1511) UI ReferencedSOPInstanceUIDinFile 1
(0004,1512) UI ReferencedTransferSyntaxUIDinFile 1
(0004,151a) UI ReferencedRelatedGeneralSOPClassUIDinFile 1-n
(0004,1600) UL NumberofReferences 1
(0005,xx00) UN AEGISDICOM2000005xx00 1
(0005,xx08) LO PrivateCreator0005xx08 1
(0005,xx10) LO PrivateCreator0005xx10 1
(0005,xx11) LO PrivateCreator0005xx11 1
(0007,xx08) LO PrivateCreator0007xx08 1
(0007,xx0a) LO PrivateCreator0007xx0a 1
(0008,0000) UL IdentifyingGroupLength 1
(0008,0001) UL LengthtoEnd 1
(0008,0005) CS SpecificCharacterSet 1-n
(0008,0006) SQ LanguageCodeSequence 1
(0008,0008) CS ImageType 2-n
(0008,0010) CS/LO RecognitionCode 1
(0008,0012) DA InstanceCreationDate 1
(0008,0013) TM InstanceCreationTime 1
(0008,0014) UI InstanceCreatorUID 1
(0008,0016) UI SOPClassUID 1
(0008,0018) UI SOPInstanceUID 1
(0008,001a) UI RelatedGeneralSOPClassUID 1-n
(0008,001b) UI OriginalSpecializedSOPClassUID 1
(0008,0020) DA StudyDate 1
(0008,0021) DA SeriesDate 1
(0008,0022) DA AcquisitionDate 1
(0008,0023) DA ContentDate 1
(0008,0024) DA OverlayDate 1
(0008,0025) DA CurveDate 1
(0008,002a) DT AcquisitionDateTime 1
(0008,0030) TM StudyTime 1
(0008,0031) TM SeriesTime 1
(0008,0032) TM AcquisitionTime 1
(0008,0033) TM ContentTime 1
(0008,0034) TM OverlayTime 1
(0008,0035) TM CurveTime 1
(0008,0040) US/SS DataSetType 1
(0008,0041) LO DataSetSubtype 1
(0008,0042) CS NuclearMedicineSeriesType 1
(0008,0050) SH AccessionNumber 1
(0008,0051) SQ IssuerofAccessionNumberSequence 1
(0008,0052) CS Query 1
(0008,0054) AE RetrieveAETitle 1-n
(0008,0056) CS InstanceAvailability 1
(0008,0058) UI FailedSOPInstanceUIDList 1-n
(0008,0060) CS Modality 1
(0008,0061) CS ModalitiesinStudy 1-n
(0008,0062) UI SOPClassesinStudy 1-n
(0008,0064) CS ConversionType 1
(0008,0068) CS PresentationIntentType 1
(0008,0070) LO Manufacturer 1
(0008,0080) LO InstitutionName 1
(0008,0081) ST InstitutionAddress 1
(0008,0082) SQ InstitutionCodeSequence 1
(0008,0090) PN ReferringPhysiciansName 1
(0008,0092) ST ReferringPhysiciansAddress 1
(0008,0094) SH ReferringPhysiciansTelephoneNumbers 1-n
(0008,0096) SQ ReferringPhysicianIdentificationSequence 1
(0008,0100) SH CodeValue 1
(0008,0102) SH CodingSchemeDesignator 1
(0008,0103) SH CodingSchemeVersion 1
(0008,0104) LO CodeMeaning 1
(0008,0105) CS MappingResource 1
(0008,0106) DT ContextGroupVersion 1
(0008,0107) DT ContextGroupLocalVersion 1
(0008,010b) CS ContextGroupExtensionFlag 1
(0008,010c) UI CodingSchemeUID 1
(0008,010d) UI ContextGroupExtensionCreatorUID 1
(0008,010f) CS ContextIdentifier 1
(0008,0110) SQ CodingSchemeIdentificationSequence 1
(0008,0112) LO CodingSchemeRegistry 1
(0008,0114) ST CodingSchemeExternalID 1
(0008,0115) ST CodingSchemeName 1
(0008,0116) ST CodingSchemeResponsibleOrganization 1
(0008,0117) UI ContextUID 1
(0008,0201) SH TimezoneOffsetFromUTC 1
(0008,1000) AE/LT NetworkID 1
(0008,1010) SH StationName 1
(0008,1030) LO StudyDescription 1
(0008,1032) SQ ProcedureCodeSequence 1
(0008,103e) LO SeriesDescription 1
(0008,103f) SQ SeriesDescriptionCodeSequence 1
(0008,1040) LO InstitutionalDepartmentName 1
(0008,1048) PN PhysiciansofRecord 1-n
(0008,1049) SQ PhysiciansofRecordIdentificationSequence 1
(0008,1050) PN PerformingPhysiciansName 1-n
(0008,1052) SQ PerformingPhysicianIdentificationSequence 1
(0008,1060) PN NameofPhysiciansReadingStudy 1-n
(0008,1062) SQ PhysiciansReadingStudyIdentificationSequence 1
(0008,1070) PN OperatorsName 1-n
(0008,1072) SQ OperatorIdentificationSequence 1
(0008,1080) LO AdmittingDiagnosesDescription 1-n
(0008,1084) SQ AdmittingDiagnosesCodeSequence 1
(0008,1090) LO ManufacturersModelName 1
(0008,1100) SQ ReferencedResultsSequence 1
(0008,1110) SQ ReferencedStudySequence 1
(0008,1111) SQ ReferencedPerformedProcedureStepSequence 1
(0008,1115) SQ ReferencedSeriesSequence 1
(0008,1120) SQ ReferencedPatientSequence 1
(0008,1125) SQ ReferencedVisitSequence 1
(0008,1130) SQ ReferencedOverlaySequence 1
(0008,1134) SQ ReferencedStereometricInstanceSequence 1
(0008,113a) SQ ReferencedWaveformSequence 1
(0008,1140) SQ ReferencedImageSequence 1
(0008,1145) SQ ReferencedCurveSequence 1
(0008,114a) SQ ReferencedInstanceSequence 1
(0008,114b) SQ ReferencedRealWorldValueMappingInstanceSequence 1
(0008,1150) UI ReferencedSOPClassUID 1
(0008,1155) UI ReferencedSOPInstanceUID 1
(0008,115a) UI SOPClassesSupported 1-n
(0008,1160) IS ReferencedFrameNumber 1-n
(0008,1161) UL SimpleFrameList 1-n
(0008,1162) UL CalculatedFrameList 3-3n
(0008,1163) FD TimeRange 2
(0008,1164) SQ FrameExtractionSequence 1
(0008,1167) UI MultiFrameSourceSOPInstanceUID 1
(0008,1195) UI TransactionUID 1
(0008,1197) US FailureReason 1
(0008,1198) SQ FailedSOPSequence 1
(0008,1199) SQ ReferencedSOPSequence 1
(0008,1200) SQ StudiesContainingOtherReferencedInstancesSequence 1
(0008,1250) SQ RelatedSeriesSequence 1
(0008,2110) CS LossyImageCompressionRetired 1
(0008,2111) ST DerivationDescription 1
(0008,2112) SQ SourceImageSequence 1
(0008,2120) SH StageName 1
(0008,2122) IS StageNumber 1
(0008,2124) IS NumberofStages 1
(0008,2127) SH ViewName 1
(0008,2128) IS ViewNumber 1
(0008,2129) IS NumberofEventTimers 1
(0008,212a) IS NumberofViewsinStage 1
(0008,2130) DS EventElapsedTimes 1-n
(0008,2132) LO EventTimerNames 1-n
(0008,2133) SQ EventTimerSequence 1
(0008,2134) FD EventTimeOffset 1
(0008,2135) SQ EventCodeSequence 1
(0008,2142) IS StartTrim 1
(0008,2143) IS StopTrim 1
(0008,2144) IS RecommendedDisplayFrameRate 1
(0008,2200) CS TransducerPosition 1
(0008,2204) CS TransducerOrientation 1
(0008,2208) CS AnatomicStructure 1
(0008,2218) SQ AnatomicRegionSequence 1
(0008,2220) SQ AnatomicRegionModifierSequence 1
(0008,2228) SQ PrimaryAnatomicStructureSequence 1
(0008,2229) SQ AnatomicStructure,SpaceorRegionSequence 1
(0008,2230) SQ PrimaryAnatomicStructureModifierSequence 1
(0008,2240) SQ TransducerPositionSequence 1
(0008,2242) SQ TransducerPositionModifierSequence 1
(0008,2244) SQ TransducerOrientationSequence 1
(0008,2246) SQ TransducerOrientationModifierSequence 1
(0008,2251) SQ AnatomicStructureSpaceOrRegionCodeSequenceTrial 1
(0008,2253) SQ AnatomicPortalOfEntranceCodeSequenceTrial 1
(0008,2255) SQ AnatomicApproachDirectionCodeSequenceTrial 1
(0008,2256) ST AnatomicPerspectiveDescriptionTrial 1
(0008,2257) SQ AnatomicPerspectiveCodeSequenceTrial 1
(0008,2258) ST AnatomicLocationOfExaminingInstrumentDescriptionTrial 1
(0008,2259) SQ AnatomicLocationOfExaminingInstrumentCodeSequenceTrial 1
(0008,225a) SQ AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial 1
(0008,225c) SQ OnAxisBackgroundAnatomicStructureCodeSequenceTrial 1
(0008,3001) SQ AlternateRepresentationSequence 1
(0008,3010) UI IrradiationEventUID 1
(0008,4000) LT IdentifyingComments 1/1-n
(0008,9007) CS FrameType 4
(0008,9092) SQ ReferencedImageEvidenceSequence 1
(0008,9121) SQ ReferencedRawDataSequence 1
(0008,9123) UI CreatorVersionUID 1
(0008,9124) SQ DerivationImageSequence 1
(0008,9154) SQ SourceImageEvidenceSequence 1
(0008,9205) CS PixelPresentation 1
(0008,9206) CS VolumetricProperties 1
(0008,9207) CS VolumeBasedCalculationTechnique 1
(0008,9208) CS ComplexImageComponent 1
(0008,9209) CS AcquisitionContrast 1
(0008,9215) SQ DerivationCodeSequence 1
(0008,9237) SQ ReferencedPresentationStateSequence 1
(0008,9410) SQ ReferencedOtherPlaneSequence 1
(0008,9458) SQ FrameDisplaySequence 1
(0008,9459) FL RecommendedDisplayFrameRateinFloat 1
(0008,9460) CS SkipFrameRangeFlag 1
(0009,xx00) UN AEGISDICOM200 1
(0009,xx01) SH/LO GEMSGENIE1 1
(0009,xx02) SH GEMSIDEN010009xx02 1
(0009,xx04) UN/SH FDMS10 1
(0009,xx05) UN FDMS100009xx05 1
(0009,xx06) UN FDMS100009xx06 1
(0009,xx08) UN/LO FDMS10 1
(0009,xx09) UN/LO FDMS10 1
(0009,xx0c) UN FDMS100009xx0c 1
(0009,xx10) UN/SQ/LO/US/CS FDMS10 1
(0009,xx11) SL/ST/UN/LO GEMSGENIE1 1
(0009,xx12) SL/LO/UN/UL GEMSGENIE1 1
(0009,xx13) UN/LO/UL PHILIPSMR 1
(0009,xx14) UN/LO/UL PHILIPSMR 1
(0009,xx15) UN/LO PHILIPSMR 1
(0009,xx16) UN/LO PHILIPSMR 1
(0009,xx17) UN PHILIPSMR 1
(0009,xx18) LO SPIPRelease10009xx18 1
(0009,xx19) UN PHILIPSMR 1
(0009,xx1b) UN PHILIPSMR 1
(0009,xx1e) UI GEMSGENIE10009xx1e 1
(0009,xx20) LO/SH/UN GEMSGENIE1 1
(0009,xx21) SL/LO GEMSGENIE1 1
(0009,xx22) SH GEMSGENIE10009xx22 1
(0009,xx23) SL GEMSGENIE10009xx23 1
(0009,xx24) SL GEMSGENIE10009xx24 1
(0009,xx25) SL GEMSGENIE10009xx25 1
(0009,xx26) SL/DA GEMSGENIE1 1
(0009,xx27) SL/TM GEMSGENIE1 1
(0009,xx28) SL GEMSGENIE10009xx28 1
(0009,xx29) SL GEMSGENIE10009xx29 1
(0009,xx2a) SL GEMSGENIE10009xx2a 1
(0009,xx2b) LO GEMSGENIE10009xx2b 1
(0009,xx2c) LO GEMSGENIE10009xx2c 1
(0009,xx2d) LO PrivateCreator0009xx2d 1
(0009,xx2e) FD GEMSGENIE10009xx2e 1
(0009,xx2f) SL GEMSGENIE10009xx2f 1
(0009,xx30) LO/SH/CS/UN GEMSGENIE1 1
(0009,xx31) SH/LO/UN GEMSIDEN01 1
(0009,xx32) SH SIEMENSCTVA0IDE0009xx32 1
(0009,xx33) FD GEMSGENIE10009xx33 1
(0009,xx35) SL GEMSGENIE10009xx35 1
(0009,xx38) UN GEMSPETD010009xx38 1
(0009,xx39) UN GEMSPETD010009xx39 1
(0009,xx3b) UN GEMSPETD010009xx3b 1
(0009,xx3c) UN GEMSPETD010009xx3c 1
(0009,xx3d) UN GEMSPETD010009xx3d 1
(0009,xx40) PN/LO/UN GEMSGENIE1 1
(0009,xx41) SL/UN/SH GEMSGENIE1 1
(0009,xx42) DA/LO GEMSGENIE1 1
(0009,xx43) TM GEMSGENIE10009xx43 1
(0009,xx45) LT GEMSGENIE10009xx45 1
(0009,xx50) DA/UN SIEMENSCTVA0IDE 1
(0009,xx51) TM SIEMENSCTVA0IDE0009xx51 1
(0009,xx60) UN SPIPGVCTRelease10009xx60 1
(0009,xx61) LO SPIPRelease10009xx61 1
(0009,xx70) UN SPIPGVCTRelease10009xx70 1
(0009,xx72) UN SIENET0009xx72 1
(0009,xx75) UN SIENET 1
(0009,xx80) UN FDMS10 1
(0009,xx90) UN FDMS10 1
(0009,xx92) UN FDMS100009xx92 1
(0009,xxa0) LT SPIPRelease10009xxa0 1
(0009,xxe3) UI GEMSIDEN010009xxe3 1
(0009,xxe6) SH GEMSIDEN010009xxe6 1
(0009,xxe7) UL GEMSIDEN010009xxe7 1
(0009,xxe9) SL GEMSIDEN010009xxe9 1
(0009,xxf0) UN FDMS100009xxf0 1
(0009,xxf1) UN FDMS100009xxf1 1
(0009,xxf2) LT SPIPRelease10009xxf2 1
(0009,xxf7) UN SPIPRelease10009xxf7 1
(000d,xx1b) LO PrivateCreator000dxx1b 1
(0010,0000) UL PatientGroupLength 1
(0010,0010) PN PatientsName 1
(0010,0020) LO PatientID 1
(0010,0021) LO IssuerofPatientID 1
(0010,0022) CS TypeofPatientID 1
(0010,0024) SQ IssuerofPatientIDQualifiersSequence 1
(0010,0030) DA PatientsBirthDate 1
(0010,0032) TM PatientsBirthTime 1
(0010,0040) CS PatientsSex 1
(0010,0050) SQ PatientsInsurancePlanCodeSequence 1
(0010,0101) SQ PatientsPrimaryLanguageCodeSequence 1
(0010,0102) SQ PatientsPrimaryLanguageModifierCodeSequence 1
(0010,1000) LO OtherPatientIDs 1-n
(0010,1001) PN OtherPatientNames 1-n
(0010,1002) SQ OtherPatientIDsSequence 1
(0010,1005) PN PatientsBirthName 1
(0010,1010) AS PatientsAge 1
(0010,1020) DS PatientsSize 1
(0010,1030) DS PatientsWeight 1
(0010,1040) LO PatientsAddress 1
(0010,1050) LO/LT InsurancePlanIdentification 1-n
(0010,1060) PN PatientsMothersBirthName 1
(0010,1080) LO MilitaryRank 1
(0010,1081) LO BranchofService 1
(0010,1090) LO MedicalRecordLocator 1
(0010,2000) LO MedicalAlerts 1-n
(0010,2110) LO Allergies 1-n
(0010,2150) LO CountryofResidence 1
(0010,2152) LO RegionofResidence 1
(0010,2154) SH PatientsTelephoneNumbers 1-n
(0010,2160) SH EthnicGroup 1
(0010,2180) SH Occupation 1
(0010,21a0) CS SmokingStatus 1
(0010,21b0) LT AdditionalPatientHistory 1
(0010,21c0) US PregnancyStatus 1
(0010,21d0) DA LastMenstrualDate 1
(0010,21f0) LO PatientsReligiousPreference 1
(0010,2201) LO PatientSpeciesDescription 1
(0010,2202) SQ PatientSpeciesCodeSequence 1
(0010,2203) CS PatientsSexNeutered 1
(0010,2210) CS AnatomicalOrientationType 1
(0010,2292) LO PatientBreedDescription 1
(0010,2293) SQ PatientBreedCodeSequence 1
(0010,2294) SQ BreedRegistrationSequence 1
(0010,2295) LO BreedRegistrationNumber 1
(0010,2296) SQ BreedRegistryCodeSequence 1
(0010,2297) PN ResponsiblePerson 1
(0010,2298) CS ResponsiblePersonRole 1
(0010,2299) LO ResponsibleOrganization 1
(0010,4000) LT PatientComments 1
(0010,9431) FL ExaminedBodyThickness 1
(0011,xx01) ST DLXPATNT010011xx01 1
(0011,xx0a) SL GEMSGENIE10011xx0a 1
(0011,xx0b) SL GEMSGENIE10011xx0b 1
(0011,xx0c) SL GEMSGENIE10011xx0c 1
(0011,xx0d) LO GEMSGENIE10011xx0d 1
(0011,xx10) UN/LO/SS/DA MEDNM 1
(0011,xx11) SL/LO/TM GEMSGENIE1 1-n
(0011,xx12) LO GEMSGENIE1 1
(0011,xx13) SL GEMSGENIE10011xx13 1
(0011,xx14) LO GEMSGENIE10011xx14 1
(0011,xx15) SL GEMSGENIE10011xx15 1-n
(0011,xx16) SL GEMSGENIE10011xx16 1-n
(0011,xx17) SL GEMSGENIE10011xx17 1-n
(0011,xx18) SL GEMSGENIE10011xx18 1-n
(0011,xx19) FD/LO GEMSGENIE1 1-n
(0011,xx1a) SL GEMSGENIE10011xx1a 1-n
(0011,xx1b) SL GEMSGENIE10011xx1b 1
(0011,xx1c) SL GEMSGENIE10011xx1c 4
(0011,xx1e) LO PrivateCreator0011xx1e 1
(0011,xx1f) SL GEMSGENIE10011xx1f 1-n
(0011,xx20) UN SIEMENSRAGEN0011xx20 1
(0011,xx23) SL/DS GEMSGENIE1 1
(0011,xx25) UN SIEMENSRAGEN0011xx25 1
(0011,xx26) SL GEMSGENIE10011xx26 1-n
(0011,xx27) SL GEMSGENIE10011xx27 2-2n
(0011,xx28) SL GEMSGENIE10011xx28 2-2n
(0011,xx2c) FD GEMSGENIE10011xx2c 1-n
(0011,xx2d) FD GEMSGENIE10011xx2d 1-n
(0011,xx2e) SL GEMSGENIE10011xx2e 1-n
(0011,xx2f) SL GEMSGENIE10011xx2f 1-n
(0011,xx30) LO/UN GEMSGENIE1 1
(0011,xx31) LO GEMSGENIE10011xx31 1
(0011,xx32) LO GEMSGENIE10011xx32 1
(0011,xx33) LO GEMSGENIE10011xx33 1
(0011,xx34) LO GEMSGENIE10011xx34 1
(0011,xx35) LO/UN GEMSGENIE1 1
(0011,xx36) LO GEMSGENIE10011xx36 1
(0011,xx37) LT GEMSGENIE10011xx37 1
(0011,xx38) SL GEMSGENIE10011xx38 1-n
(0011,xx39) SL GEMSGENIE10011xx39 1-n
(0011,xx3a) SL GEMSGENIE10011xx3a 1-n
(0011,xx3b) FD GEMSGENIE10011xx3b 1-n
(0011,xx3c) FD GEMSGENIE10011xx3c 1-n
(0011,xx3e) SL GEMSGENIE10011xx3e 1
(0011,xx3f) SL GEMSGENIE10011xx3f 1-n
(0011,xx40) LO/IS/UN GEMSGENIE1 1
(0011,xx41) SL GEMSGENIE10011xx41 1-n
(0011,xx42) FD GEMSGENIE10011xx42 1-n
(0011,xx43) SL GEMSGENIE10011xx43 1-n
(0011,xx44) FD GEMSGENIE10011xx44 1-n
(0011,xx45) FD GEMSGENIE10011xx45 1-n
(0011,xx46) SL GEMSGENIE10011xx46 1-n
(0011,xx50) LO GEMSGENIE10011xx50 1
(0011,xx55) FD GEMSGENIE10011xx55 1-n
(0011,xx56) FD GEMSGENIE10011xx56 1-n
(0011,xx57) FD GEMSGENIE10011xx57 2-2n
(0011,xx61) SL GEMSGENIE10011xx61 3
(0011,xx62) FD GEMSGENIE10011xx62 3
(0011,xx63) FD GEMSGENIE10011xx63 3
(0011,xx64) FD GEMSGENIE10011xx64 3
(0011,xx65) LO GEMSGENIE10011xx65 1
(0011,xx66) LO GEMSGENIE10011xx66 1
(0011,xx67) SL GEMSGENIE10011xx67 1
(0011,xx68) SL GEMSGENIE10011xx68 1
(0011,xx69) SL GEMSGENIE10011xx69 1
(0011,xx6a) SL GEMSGENIE10011xx6a 1-n
(0011,xx6b) SL GEMSGENIE10011xx6b 3
(0011,xx6c) FD GEMSGENIE10011xx6c 3
(0011,xx6d) UI GEMSGENIE10011xx6d 1
(0011,xx6e) SL GEMSGENIE10011xx6e 1
(0011,xx6f) SL GEMSGENIE10011xx6f 1
(0011,xx71) SL GEMSGENIE10011xx71 1
(0011,xx72) SL GEMSGENIE10011xx72 1
(0011,xx73) FD GEMSGENIE10011xx73 1
(0011,xx74) FD GEMSGENIE10011xx74 1
(0011,xx75) FD GEMSGENIE10011xx75 1
(0011,xx76) SL GEMSGENIE10011xx76 1
(0011,xx77) SL GEMSGENIE10011xx77 1
(0011,xx78) SL GEMSGENIE10011xx78 1
(0011,xx79) SH GEMSGENIE10011xx79 1
(0011,xx7a) SH GEMSGENIE10011xx7a 1
(0011,xx7b) SH GEMSGENIE10011xx7b 1
(0011,xx7c) SH GEMSGENIE10011xx7c 1
(0011,xx7d) SH GEMSGENIE10011xx7d 1
(0011,xx7e) SL GEMSGENIE10011xx7e 1
(0011,xx7f) FD GEMSGENIE10011xx7f 1
(0011,xx81) SH GEMSGENIE10011xx81 1
(0011,xx82) FD GEMSGENIE10011xx82 1
(0011,xx83) FD GEMSGENIE10011xx83 1
(0011,xx84) FD GEMSGENIE10011xx84 1
(0011,xx85) SL GEMSGENIE10011xx85 1
(0011,xx86) SL GEMSGENIE10011xx86 1
(0011,xx87) SL GEMSGENIE10011xx87 1
(0011,xx88) SL GEMSGENIE10011xx88 1
(0011,xx89) FD GEMSGENIE10011xx89 1
(0011,xx8a) SL GEMSGENIE10011xx8a 4
(0011,xx8b) SL GEMSGENIE10011xx8b 3
(0011,xx8c) SL GEMSGENIE10011xx8c 3
(0011,xx8d) SL GEMSGENIE10011xx8d 1
(0012,0000) UL ClinicalTrialGroupLength 1
(0012,0010) LO ClinicalTrialSponsorName 1
(0012,0020) LO ClinicalTrialProtocolID 1
(0012,0021) LO ClinicalTrialProtocolName 1
(0012,0030) LO ClinicalTrialSiteID 1
(0012,0031) LO ClinicalTrialSiteName 1
(0012,0040) LO ClinicalTrialSubjectID 1
(0012,0042) LO ClinicalTrialSubjectReadingID 1
(0012,0050) LO ClinicalTrialTimePointID 1
(0012,0051) ST ClinicalTrialTimePointDescription 1
(0012,0060) LO ClinicalTrialCoordinatingCenterName 1
(0012,0062) CS PatientIdentityRemoved 1
(0012,0063) LO DeidentificationMethod 1-n
(0012,0064) SQ DeidentificationMethodCodeSequence 1
(0012,0071) LO ClinicalTrialSeriesID 1
(0012,0072) LO ClinicalTrialSeriesDescription 1
(0012,0081) LO ClinicalTrialProtocolEthicsCommitteeName 1
(0012,0082) LO ClinicalTrialProtocolEthicsCommitteeApprovalNumber 1
(0012,0083) SQ ConsentforClinicalTrialUseSequence 1
(0012,0084) CS DistributionType 1
(0012,0085) CS ConsentforDistributionFlag 1
(0013,xx10) FD/LO GEMSGENIE1 2-2n/1
(0013,xx11) SL GEMSGENIE10013xx11 1
(0013,xx12) SL GEMSGENIE10013xx12 1-n
(0013,xx15) FD GEMSGENIE10013xx15 1-n
(0013,xx16) SL GEMSGENIE10013xx16 1
(0013,xx17) SL GEMSGENIE10013xx17 1
(0013,xx18) FD/LO GEMSGENIE1 1
(0013,xx19) FD GEMSGENIE10013xx19 1
(0013,xx1a) FD GEMSGENIE10013xx1a 1
(0013,xx1b) FD GEMSGENIE10013xx1b 1
(0013,xx1c) FD GEMSGENIE10013xx1c 1
(0013,xx1d) FD GEMSGENIE10013xx1d 1
(0013,xx21) FD GEMSGENIE10013xx21 2
(0013,xx22) FD GEMSGENIE10013xx22 2
(0013,xx23) LO GEMSGENIE10013xx23 1
(0013,xx26) LT GEMSGENIE10013xx26 1
(0015,xx01) UN DLXEXAMS010015xx01 1
(0015,xx02) UN DLXEXAMS010015xx02 1
(0015,xx03) UN DLXEXAMS010015xx03 1
(0015,xx10) LO PrivateCreator0015xx10 1
(0015,xx12) SL GEMSGENIE10015xx12 1
(0015,xx13) SL GEMSGENIE10015xx13 1
(0015,xx5a) LO PrivateCreator0015xx5a 1
(0015,xx80) DS GEMSDLSTUDY01 1
(0015,xx81) DS GEMSDLSTUDY01 1
(0015,xx82) DS GEMSDLSTUDY01 1
(0015,xx83) IS GEMSDLSTUDY01 1
(0015,xx84) DS GEMSDLSTUDY01 1
(0015,xx8f) IS GEMSDLSTUDY01 1
(0017,xx00) UN MEDNM 1
(0017,xx01) UN SiemensThorax 1
(0017,xx10) LO PrivateCreator0017xx10 1
(0017,xx18) LO PrivateCreator0017xx18 1
(0017,xx20) UN MEDNM0017xx20 1
(0017,xx70) UN MEDNM0017xx70 1
(0017,xx80) UN MEDNM0017xx80 1
(0018,0000) UL AcquisitionGroupLength 1
(0018,0010) LO Contrast 1
(0018,0012) SQ Contrast 1
(0018,0014) SQ Contrast 1
(0018,0015) CS BodyPartExamined 1
(0018,0020) CS ScanningSequence 1-n
(0018,0021) CS SequenceVariant 1-n
(0018,0022) CS ScanOptions 1-n
(0018,0023) CS MRAcquisitionType 1
(0018,0024) SH SequenceName 1
(0018,0025) CS AngioFlag 1
(0018,0026) SQ InterventionDrugInformationSequence 1
(0018,0027) TM InterventionDrugStopTime 1
(0018,0028) DS InterventionDrugDose 1
(0018,0029) SQ InterventionDrugCodeSequence 1
(0018,002a) SQ AdditionalDrugSequence 1
(0018,0030) LO Radionuclide 1-n
(0018,0031) LO Radiopharmaceutical 1/1-n
(0018,0032) DS EnergyWindowCenterline 1
(0018,0033) DS EnergyWindowTotalWidth 1-n
(0018,0034) LO InterventionDrugName 1
(0018,0035) TM InterventionDrugStartTime 1
(0018,0036) SQ InterventionSequence 1
(0018,0037) CS TherapyType 1
(0018,0038) CS InterventionStatus 1
(0018,0039) CS TherapyDescription 1
(0018,003a) ST/CS InterventionDescription 1
(0018,0040) IS CineRate 1
(0018,0042) CS InitialCineRunState 1
(0018,0050) DS SliceThickness 1
(0018,0060) DS KVP 1
(0018,0070) IS CountsAccumulated 1
(0018,0071) CS AcquisitionTerminationCondition 1
(0018,0072) DS EffectiveDuration 1
(0018,0073) CS AcquisitionStartCondition 1
(0018,0074) IS AcquisitionStartConditionData 1
(0018,0075) IS AcquisitionTerminationConditionData 1
(0018,0080) DS RepetitionTime 1
(0018,0081) DS EchoTime 1
(0018,0082) DS InversionTime 1
(0018,0083) DS NumberofAverages 1
(0018,0084) DS ImagingFrequency 1
(0018,0085) SH ImagedNucleus 1
(0018,0086) IS EchoNumbers 1-n
(0018,0087) DS MagneticFieldStrength 1
(0018,0088) DS SpacingBetweenSlices 1
(0018,0089) IS NumberofPhaseEncodingSteps 1
(0018,0090) DS DataCollectionDiameter 1
(0018,0091) IS EchoTrainLength 1
(0018,0093) DS PercentSampling 1
(0018,0094) DS PercentPhaseFieldofView 1
(0018,0095) DS PixelBandwidth 1
(0018,1000) LO DeviceSerialNumber 1
(0018,1002) UI DeviceUID 1
(0018,1003) LO DeviceID 1
(0018,1004) LO PlateID 1
(0018,1005) LO GeneratorID 1
(0018,1006) LO GridID 1
(0018,1007) LO CassetteID 1
(0018,1008) LO GantryID 1
(0018,1010) LO SecondaryCaptureDeviceID 1
(0018,1011) LO HardcopyCreationDeviceID 1
(0018,1012) DA DateofSecondaryCapture 1
(0018,1014) TM TimeofSecondaryCapture 1
(0018,1016) LO SecondaryCaptureDeviceManufacturer 1
(0018,1017) LO HardcopyDeviceManufacturer 1
(0018,1018) LO SecondaryCaptureDeviceManufacturersModelName 1
(0018,1019) LO SecondaryCaptureDeviceSoftwareVersions 1-n
(0018,101a) LO HardcopyDeviceSoftwareVersion 1-n
(0018,101b) LO HardcopyDeviceManufacturersModelName 1
(0018,1020) LO SoftwareVersions 1-n
(0018,1022) SH VideoImageFormatAcquired 1
(0018,1023) LO DigitalImageFormatAcquired 1
(0018,1030) LO ProtocolName 1
(0018,1040) LO Contrast 1
(0018,1041) DS Contrast 1
(0018,1042) TM Contrast 1
(0018,1043) TM Contrast 1
(0018,1044) DS Contrast 1
(0018,1045) IS SyringeCounts 1/1-n
(0018,1046) DS ContrastFlowRate 1-n
(0018,1047) DS ContrastFlowDuration 1-n
(0018,1048) CS Contrast 1
(0018,1049) DS Contrast 1
(0018,1050) DS SpatialResolution 1
(0018,1060) DS TriggerTime 1
(0018,1061) LO TriggerSourceorType 1
(0018,1062) IS NominalInterval 1
(0018,1063) DS FrameTime 1
(0018,1064) LO CardiacFramingType 1
(0018,1065) DS FrameTimeVector 1-n
(0018,1066) DS FrameDelay 1
(0018,1067) DS ImageTriggerDelay 1
(0018,1068) DS MultiplexGroupTimeOffset 1
(0018,1069) DS TriggerTimeOffset 1
(0018,106a) CS SynchronizationTrigger 1
(0018,106c) US SynchronizationChannel 2
(0018,106e) UL TriggerSamplePosition 1
(0018,1070) LO RadiopharmaceuticalRoute 1
(0018,1071) DS RadiopharmaceuticalVolume 1
(0018,1072) TM RadiopharmaceuticalStartTime 1
(0018,1073) TM RadiopharmaceuticalStopTime 1
(0018,1074) DS RadionuclideTotalDose 1
(0018,1075) DS RadionuclideHalfLife 1
(0018,1076) DS RadionuclidePositronFraction 1
(0018,1077) DS RadiopharmaceuticalSpecificActivity 1
(0018,1078) DT RadiopharmaceuticalStartDateTime 1
(0018,1079) DT RadiopharmaceuticalStopDateTime 1
(0018,1080) CS BeatRejectionFlag 1
(0018,1081) IS LowRRValue 1
(0018,1082) IS HighRRValue 1
(0018,1083) IS IntervalsAcquired 1
(0018,1084) IS IntervalsRejected 1
(0018,1085) LO PVCRejection 1
(0018,1086) IS SkipBeats 1
(0018,1088) IS HeartRate 1
(0018,1090) IS CardiacNumberofImages 1
(0018,1094) IS TriggerWindow 1
(0018,1100) DS ReconstructionDiameter 1
(0018,1110) DS DistanceSourcetoDetector 1
(0018,1111) DS DistanceSourcetoPatient 1
(0018,1114) DS EstimatedRadiographicMagnificationFactor 1
(0018,1120) DS Gantry 1
(0018,1121) DS Gantry 1
(0018,1130) DS TableHeight 1
(0018,1131) DS TableTraverse 1
(0018,1134) CS TableMotion 1
(0018,1135) DS TableVerticalIncrement 1-n
(0018,1136) DS TableLateralIncrement 1-n
(0018,1137) DS TableLongitudinalIncrement 1-n
(0018,1138) DS TableAngle 1
(0018,113a) CS TableType 1
(0018,1140) CS RotationDirection 1
(0018,1141) DS AngularPosition 1
(0018,1142) DS RadialPosition 1-n
(0018,1143) DS ScanArc 1
(0018,1144) DS AngularStep 1
(0018,1145) DS CenterofRotationOffset 1
(0018,1146) DS RotationOffset 1-n
(0018,1147) CS FieldofViewShape 1
(0018,1149) IS FieldofViewDimensions 1-2
(0018,1150) IS ExposureTime 1
(0018,1151) IS XRayTubeCurrent 1
(0018,1152) IS Exposure 1
(0018,1153) IS ExposureinµAs 1
(0018,1154) DS AveragePulseWidth 1
(0018,1155) CS RadiationSetting 1
(0018,1156) CS RectificationType 1
(0018,115a) CS RadiationMode 1
(0018,115e) DS ImageandFluoroscopyAreaDoseProduct 1
(0018,1160) SH FilterType 1
(0018,1161) LO TypeofFilters 1-n
(0018,1162) DS IntensifierSize 1
(0018,1164) DS ImagerPixelSpacing 2
(0018,1166) CS Grid 1-n
(0018,1170) IS GeneratorPower 1
(0018,1180) SH Collimator 1
(0018,1181) CS CollimatorType 1
(0018,1182) IS FocalDistance 1-2
(0018,1183) DS XFocusCenter 1-2
(0018,1184) DS YFocusCenter 1-2
(0018,1190) DS FocalSpots 1-n
(0018,1191) CS AnodeTargetMaterial 1
(0018,11a0) DS BodyPartThickness 1
(0018,11a2) DS CompressionForce 1
(0018,1200) DA DateofLastCalibration 1-n
(0018,1201) TM TimeofLastCalibration 1-n
(0018,1210) SH ConvolutionKernel 1-n
(0018,1240) IS Upper 1-n
(0018,1242) IS ActualFrameDuration 1
(0018,1243) IS CountRate 1
(0018,1244) US PreferredPlaybackSequencing 1
(0018,1250) SH ReceiveCoilName 1
(0018,1251) SH TransmitCoilName 1
(0018,1260) SH PlateType 1
(0018,1261) LO PhosphorType 1
(0018,1300) DS ScanVelocity 1
(0018,1301) CS WholeBodyTechnique 1-n
(0018,1302) IS ScanLength 1
(0018,1310) US AcquisitionMatrix 4
(0018,1312) CS InplanePhaseEncodingDirection 1
(0018,1314) DS FlipAngle 1
(0018,1315) CS VariableFlipAngleFlag 1
(0018,1316) DS SAR 1
(0018,1318) DS dB 1
(0018,1400) LO AcquisitionDeviceProcessingDescription 1
(0018,1401) LO AcquisitionDeviceProcessingCode 1
(0018,1402) CS CassetteOrientation 1
(0018,1403) CS CassetteSize 1
(0018,1404) US ExposuresonPlate 1
(0018,1405) IS RelativeXRayExposure 1
(0018,1450) DS ColumnAngulation 1
(0018,1460) DS TomoLayerHeight 1
(0018,1470) DS TomoAngle 1
(0018,1480) DS TomoTime 1
(0018,1490) CS TomoType 1
(0018,1491) CS TomoClass 1
(0018,1495) IS NumberofTomosynthesisSourceImages 1
(0018,1500) CS PositionerMotion 1
(0018,1508) CS PositionerType 1
(0018,1510) DS PositionerPrimaryAngle 1
(0018,1511) DS PositionerSecondaryAngle 1
(0018,1520) DS PositionerPrimaryAngleIncrement 1-n
(0018,1521) DS PositionerSecondaryAngleIncrement 1-n
(0018,1530) DS DetectorPrimaryAngle 1
(0018,1531) DS DetectorSecondaryAngle 1
(0018,1600) CS ShutterShape 1-3
(0018,1602) IS ShutterLeftVerticalEdge 1
(0018,1604) IS ShutterRightVerticalEdge 1
(0018,1606) IS ShutterUpperHorizontalEdge 1
(0018,1608) IS ShutterLowerHorizontalEdge 1
(0018,1610) IS CenterofCircularShutter 2
(0018,1612) IS RadiusofCircularShutter 1
(0018,1620) IS VerticesofthePolygonalShutter 2-2n/1-n
(0018,1622) US ShutterPresentationValue 1
(0018,1623) US ShutterOverlayGroup 1
(0018,1624) US ShutterPresentationColorCIELabValue 3
(0018,1700) CS CollimatorShape 1-3
(0018,1702) IS CollimatorLeftVerticalEdge 1
(0018,1704) IS CollimatorRightVerticalEdge 1
(0018,1706) IS CollimatorUpperHorizontalEdge 1
(0018,1708) IS CollimatorLowerHorizontalEdge 1
(0018,1710) IS CenterofCircularCollimator 2
(0018,1712) IS RadiusofCircularCollimator 1
(0018,1720) IS VerticesofthePolygonalCollimator 2-2n/1-n
(0018,1800) CS AcquisitionTimeSynchronized 1
(0018,1801) SH TimeSource 1
(0018,1802) CS TimeDistributionProtocol 1
(0018,1803) LO NTPSourceAddress 1
(0018,2001) IS PageNumberVector 1-n
(0018,2002) SH FrameLabelVector 1-n
(0018,2003) DS FramePrimaryAngleVector 1-n
(0018,2004) DS FrameSecondaryAngleVector 1-n
(0018,2005) DS SliceLocationVector 1-n
(0018,2006) SH DisplayWindowLabelVector 1-n
(0018,2010) DS NominalScannedPixelSpacing 2
(0018,2020) CS DigitizingDeviceTransportDirection 1
(0018,2030) DS RotationofScannedFilm 1
(0018,3100) CS IVUSAcquisition 1
(0018,3101) DS IVUSPullbackRate 1
(0018,3102) DS IVUSGatedRate 1
(0018,3103) IS IVUSPullbackStartFrameNumber 1
(0018,3104) IS IVUSPullbackStopFrameNumber 1
(0018,3105) IS LesionNumber 1-n
(0018,4000) LT/LO AcquisitionComments 1/1-n
(0018,5000) SH OutputPower 1-n
(0018,5010) LO TransducerData 1-n/3
(0018,5012) DS FocusDepth 1
(0018,5020) LO ProcessingFunction 1
(0018,5021) LO PostprocessingFunction 1
(0018,5022) DS MechanicalIndex 1
(0018,5024) DS BoneThermalIndex 1
(0018,5026) DS CranialThermalIndex 1
(0018,5027) DS SoftTissueThermalIndex 1
(0018,5028) DS SoftTissuefocusThermalIndex 1
(0018,5029) DS SoftTissuesurfaceThermalIndex 1
(0018,5030) DS DynamicRange 1
(0018,5040) DS TotalGain 1
(0018,5050) IS DepthofScanField 1
(0018,5100) CS PatientPosition 1
(0018,5101) CS ViewPosition 1
(0018,5104) SQ ProjectionEponymousNameCodeSequence 1
(0018,5210) DS ImageTransformationMatrix 6
(0018,5212) DS ImageTranslationVector 3
(0018,6000) DS Sensitivity 1
(0018,6011) SQ SequenceofUltrasoundRegions 1
(0018,6012) US RegionSpatialFormat 1
(0018,6014) US RegionDataType 1
(0018,6016) UL RegionFlags 1
(0018,6018) UL RegionLocationMinX0 1
(0018,601a) UL RegionLocationMinY0 1
(0018,601c) UL RegionLocationMaxX1 1
(0018,601e) UL RegionLocationMaxY1 1
(0018,6020) SL ReferencePixelX0 1
(0018,6022) SL ReferencePixelY0 1
(0018,6024) US PhysicalUnitsXDirection 1
(0018,6026) US PhysicalUnitsYDirection 1
(0018,6028) FD ReferencePixelPhysicalValueX 1
(0018,602a) FD ReferencePixelPhysicalValueY 1
(0018,602c) FD PhysicalDeltaX 1
(0018,602e) FD PhysicalDeltaY 1
(0018,6030) UL TransducerFrequency 1
(0018,6031) CS TransducerType 1
(0018,6032) UL PulseRepetitionFrequency 1
(0018,6034) FD DopplerCorrectionAngle 1
(0018,6036) FD SteeringAngle 1
(0018,6038) UL DopplerSampleVolumeXPositionRetired 1
(0018,6039) SL DopplerSampleVolumeXPosition 1
(0018,603a) UL DopplerSampleVolumeYPositionRetired 1
(0018,603b) SL DopplerSampleVolumeYPosition 1
(0018,603c) UL TMLinePositionX0Retired 1
(0018,603d) SL TMLinePositionX0 1
(0018,603e) UL TMLinePositionY0Retired 1
(0018,603f) SL TMLinePositionY0 1
(0018,6040) UL TMLinePositionX1Retired 1
(0018,6041) SL TMLinePositionX1 1
(0018,6042) UL TMLinePositionY1Retired 1
(0018,6043) SL TMLinePositionY1 1
(0018,6044) US PixelComponentOrganization 1
(0018,6046) UL PixelComponentMask 1
(0018,6048) UL PixelComponentRangeStart 1
(0018,604a) UL PixelComponentRangeStop 1
(0018,604c) US PixelComponentPhysicalUnits 1
(0018,604e) US PixelComponentDataType 1
(0018,6050) UL NumberofTableBreakPoints 1
(0018,6052) UL TableofXBreakPoints 1-n
(0018,6054) FD TableofYBreakPoints 1-n
(0018,6056) UL NumberofTableEntries 1
(0018,6058) UL TableofPixelValues 1-n
(0018,605a) FL TableofParameterValues 1-n
(0018,6060) FL RWaveTimeVector 1-n
(0018,7000) CS DetectorConditionsNominalFlag 1
(0018,7001) DS DetectorTemperature 1
(0018,7004) CS DetectorType 1
(0018,7005) CS DetectorConfiguration 1
(0018,7006) LT DetectorDescription 1
(0018,7008) LT DetectorMode 1
(0018,700a) SH DetectorID 1
(0018,700c) DA DateofLastDetectorCalibration 1
(0018,700e) TM TimeofLastDetectorCalibration 1
(0018,7010) IS ExposuresonDetectorSinceLastCalibration 1
(0018,7011) IS ExposuresonDetectorSinceManufactured 1
(0018,7012) DS DetectorTimeSinceLastExposure 1
(0018,7014) DS DetectorActiveTime 1
(0018,7016) DS DetectorActivationOffsetFromExposure 1
(0018,701a) DS DetectorBinning 2
(0018,7020) DS DetectorElementPhysicalSize 2
(0018,7022) DS DetectorElementSpacing 2
(0018,7024) CS DetectorActiveShape 1
(0018,7026) DS DetectorActiveDimensions 1-2
(0018,7028) DS DetectorActiveOrigin 2
(0018,702a) LO DetectorManufacturerName 1
(0018,702b) LO DetectorManufacturersModelName 1
(0018,7030) DS FieldofViewOrigin 2
(0018,7032) DS FieldofViewRotation 1
(0018,7034) CS FieldofViewHorizontalFlip 1
(0018,7040) LT GridAbsorbingMaterial 1
(0018,7041) LT GridSpacingMaterial 1
(0018,7042) DS GridThickness 1
(0018,7044) DS GridPitch 1
(0018,7046) IS GridAspectRatio 2
(0018,7048) DS GridPeriod 1
(0018,704c) DS GridFocalDistance 1
(0018,7050) CS FilterMaterial 1-n
(0018,7052) DS FilterThicknessMinimum 1-n
(0018,7054) DS FilterThicknessMaximum 1-n
(0018,7056) FL FilterBeamPathLengthMinimum 1-n
(0018,7058) FL FilterBeamPathLengthMaximum 1-n
(0018,7060) CS ExposureControlMode 1
(0018,7062) LT ExposureControlModeDescription 1
(0018,7064) CS ExposureStatus 1
(0018,7065) DS PhototimerSetting 1
(0018,8150) DS ExposureTimeinµS 1
(0018,8151) DS XRayTubeCurrentinµA 1
(0018,9004) CS ContentQualification 1
(0018,9005) SH PulseSequenceName 1
(0018,9006) SQ MRImagingModifierSequence 1
(0018,9008) CS EchoPulseSequence 1
(0018,9009) CS InversionRecovery 1
(0018,9010) CS FlowCompensation 1
(0018,9011) CS MultipleSpinEcho 1
(0018,9012) CS MultiplanarExcitation 1
(0018,9014) CS PhaseContrast 1
(0018,9015) CS TimeofFlightContrast 1
(0018,9016) CS Spoiling 1
(0018,9017) CS SteadyStatePulseSequence 1
(0018,9018) CS EchoPlanarPulseSequence 1
(0018,9019) FD TagAngleFirstAxis 1
(0018,9020) CS MagnetizationTransfer 1
(0018,9021) CS T2Preparation 1
(0018,9022) CS BloodSignalNulling 1
(0018,9024) CS SaturationRecovery 1
(0018,9025) CS SpectrallySelectedSuppression 1
(0018,9026) CS SpectrallySelectedExcitation 1
(0018,9027) CS SpatialPresaturation 1
(0018,9028) CS Tagging 1
(0018,9029) CS OversamplingPhase 1
(0018,9030) FD TagSpacingFirstDimension 1
(0018,9032) CS GeometryofkSpaceTraversal 1
(0018,9033) CS SegmentedkSpaceTraversal 1
(0018,9034) CS RectilinearPhaseEncodeReordering 1
(0018,9035) FD TagThickness 1
(0018,9036) CS PartialFourierDirection 1
(0018,9037) CS CardiacSynchronizationTechnique 1
(0018,9041) LO ReceiveCoilManufacturerName 1
(0018,9042) SQ MRReceiveCoilSequence 1
(0018,9043) CS ReceiveCoilType 1
(0018,9044) CS QuadratureReceiveCoil 1
(0018,9045) SQ MultiCoilDefinitionSequence 1
(0018,9046) LO MultiCoilConfiguration 1
(0018,9047) SH MultiCoilElementName 1
(0018,9048) CS MultiCoilElementUsed 1
(0018,9049) SQ MRTransmitCoilSequence 1
(0018,9050) LO TransmitCoilManufacturerName 1
(0018,9051) CS TransmitCoilType 1
(0018,9052) FD SpectralWidth 1-2
(0018,9053) FD ChemicalShiftReference 1-2
(0018,9054) CS VolumeLocalizationTechnique 1
(0018,9058) US MRAcquisitionFrequencyEncodingSteps 1
(0018,9059) CS Decoupling 1
(0018,9060) CS DecoupledNucleus 1-2
(0018,9061) FD DecouplingFrequency 1-2
(0018,9062) CS DecouplingMethod 1
(0018,9063) FD DecouplingChemicalShiftReference 1-2
(0018,9064) CS kspaceFiltering 1
(0018,9065) CS TimeDomainFiltering 1-2
(0018,9066) US NumberofZerofills 1-2
(0018,9067) CS BaselineCorrection 1
(0018,9069) FD ParallelReductionFactorInplane 1
(0018,9070) FD CardiacRRIntervalSpecified 1
(0018,9073) FD AcquisitionDuration 1
(0018,9074) DT FrameAcquisitionDateTime 1
(0018,9075) CS DiffusionDirectionality 1
(0018,9076) SQ DiffusionGradientDirectionSequence 1
(0018,9077) CS ParallelAcquisition 1
(0018,9078) CS ParallelAcquisitionTechnique 1
(0018,9079) FD InversionTimes 1-n
(0018,9080) ST MetaboliteMapDescription 1
(0018,9081) CS PartialFourier 1
(0018,9082) FD EffectiveEchoTime 1
(0018,9083) SQ MetaboliteMapCodeSequence 1
(0018,9084) SQ ChemicalShiftSequence 1
(0018,9085) CS CardiacSignalSource 1
(0018,9087) FD Diffusionbvalue 1
(0018,9089) FD DiffusionGradientOrientation 3
(0018,9090) FD VelocityEncodingDirection 3
(0018,9091) FD VelocityEncodingMinimumValue 1
(0018,9093) US NumberofkSpaceTrajectories 1
(0018,9094) CS CoverageofkSpace 1
(0018,9095) UL SpectroscopyAcquisitionPhaseRows 1
(0018,9096) FD ParallelReductionFactorInplaneRetired 1
(0018,9098) FD TransmitterFrequency 1-2
(0018,9100) CS ResonantNucleus 1-2
(0018,9101) CS FrequencyCorrection 1
(0018,9103) SQ MRSpectroscopyFOV 1
(0018,9104) FD SlabThickness 1
(0018,9105) FD SlabOrientation 3
(0018,9106) FD MidSlabPosition 3
(0018,9107) SQ MRSpatialSaturationSequence 1
(0018,9112) SQ MRTimingandRelatedParametersSequence 1
(0018,9114) SQ MREchoSequence 1
(0018,9115) SQ MRModifierSequence 1
(0018,9117) SQ MRDiffusionSequence 1
(0018,9118) SQ CardiacSynchronizationSequence 1
(0018,9119) SQ MRAveragesSequence 1
(0018,9125) SQ MRFOV 1
(0018,9126) SQ VolumeLocalizationSequence 1
(0018,9127) UL SpectroscopyAcquisitionDataColumns 1
(0018,9147) CS DiffusionAnisotropyType 1
(0018,9151) DT FrameReferenceDateTime 1
(0018,9152) SQ MRMetaboliteMapSequence 1
(0018,9155) FD ParallelReductionFactoroutofplane 1
(0018,9159) UL SpectroscopyAcquisitionOutofplanePhaseSteps 1
(0018,9166) CS BulkMotionStatus 1
(0018,9168) FD ParallelReductionFactorSecondInplane 1