forked from Bonubase/dicom2rdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sequencesbyattribute.py
3799 lines (3799 loc) · 140 KB
/
sequencesbyattribute.py
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
# list of possible sequences an attribute can occur within by attribute
sequencesbyattribute={
# ICCProfile
0x00282000L: [0x00880200L, 0x00480105L],
# HL7InstanceIdentifier
0x0040E001L: [0x00081199L, 0x00380100L, 0x0040A390L],
# SamplesPerPixel
0x00280002L: [0x00880200L, 0x20200110L, 0x20200111L, 0x00480200L],
# ScheduledProcedureStepStartTime
0x00400003L: [0x00400100L],
# PhotometricInterpretation
0x00280004L: [0x00880200L, 0x20200110L, 0x20200111L],
# ScheduledProcedureStepEndTime
0x00400005L: [0x00400100L],
# PlanarConfiguration
0x00280006L: [0x00880200L, 0x20200111L],
# ScheduledStationAETitle
0x00400001L: [0x00400100L],
# CylinderLensPower
0x00220008L: [0x0022001BL, 0x00240112L],
# HumanPerformerCodeSequence
0x00404009L: [0x00404035L, 0x00404034L],
# SurfaceProcessingRatio
0x0066000AL: [0x00660002L],
# ReferencedSegmentNumber
0x0062000BL: [0x00081199L, 0x30060016L, 0x00081140L, 0x00089121L, 0x00220021L, 0x00220022L, 0x00089410L, 0x00082112L, 0x00700314L, 0x0008114AL, 0x0062000AL, 0x0066002EL, 0x0040A730L, 0x00220031L, 0x300A0401L],
# RequestedMediaApplicationProfile
0x2200000CL: [0x00081199L, 0x00081198L],
# StudyInstanceUID
0x0020000DL: [0x0040A370L, 0x00089121L, 0x0008113AL, 0x00089092L, 0x00089154L, 0x00089237L, 0x00081200L, 0x00400270L, 0x00404021L, 0x00400275L, 0x00081250L, 0x00700402L, 0x00700404L, 0x00209529L, 0x00404033L, 0x00404022L, 0x0040A360L, 0x0040A525L, 0x0040A375L, 0x0040A385L],
# FailureAttributes
0x2200000EL: [0x00081198L],
# PreDeformationMatrixRegistrationSequence
0x0064000FL: [0x00640002L],
# Rows
0x00280010L: [0x00880200L, 0x00189506L, 0x20200110L, 0x20200111L, 0x200000A8L],
# Columns
0x00280011L: [0x00880200L, 0x00189506L, 0x20200110L, 0x20200111L, 0x200000A8L],
# PreMedication
0x00400012L: [0x00400100L],
# SurfaceNumber
0x00660003L: [0x00660002L],
# ContrastBolusAdministrationRouteSequence
0x00180014L: [0x00180012L],
# NominalBeamEnergyUnit
0x300A0015L: [0x30080040L],
# PlacerOrderNumberImagingServiceRequest
0x00402016L: [0x0040A370L, 0x00400270L],
# FillerOrderNumberImagingServiceRequest
0x00402017L: [0x0040A370L, 0x00400270L],
# MeanPointDistance
0x00660018L: [0x00660011L],
# ScheduledProcedureStepEndDate
0x00400004L: [0x00400100L],
# PointsBoundingBoxCoordinates
0x0066001AL: [0x00660011L],
# AxisOfRotation
0x0066001BL: [0x00660011L],
# MydriaticAgentCodeSequence
0x0022001CL: [0x00220058L],
# ContainerComponentDiameter
0x0050001DL: [0x00400520L],
# NumberOfVectors
0x0066001EL: [0x00660012L],
# DeformableRegistrationGridSequence
0x00640005L: [0x00640002L],
# ScheduledProcedureStepStatus
0x00400020L: [0x00400100L],
# ClinicalTrialProtocolName
0x00120021L: [0x00380502L],
# ReferencedFractionGroupNumber
0x300C0022L: [0x30080220L, 0x00741020L, 0x300C0020L],
# ReferencedGeneralPurposeScheduledProcedureStepTransactionUID
0x00404023L: [0x00404016L],
# IssuerOfPatientIDQualifiersSequence
0x00100024L: [0x00101002L],
# ProcedureStepProgressDescription
0x00741006L: [0x00741002L],
# OrderPlacerIdentifierSequence
0x00400026L: [0x0040A370L, 0x00400270L],
# InterventionDrugStopTime
0x00180027L: [0x00180036L, 0x00180026L],
# InterventionDrugDose
0x00180028L: [0x00180026L],
# InterventionDrugCodeSequence
0x00180029L: [0x00180036L, 0x00180026L],
# ROIDisplayColor
0x3006002AL: [0x30060039L],
# TreatmentTerminationCode
0x3008002BL: [0x30080020L, 0x30080021L, 0x30080110L],
# ReferencedSurfaceNumber
0x0066002CL: [0x00686360L, 0x0066002BL],
# OrganAtRiskOverdoseVolumeFraction
0x300A002DL: [0x300A0010L, 0x300C0050L],
# ImplantTemplateGroupMemberID
0x0078002EL: [0x0078002AL],
# AlgorithmFamilyCodeSequence
0x0066002FL: [0x00240083L, 0x00240085L, 0x00240344L, 0x00660035L, 0x0066002DL, 0x00240065L, 0x00240067L],
# RepositoryUniqueID
0x0040E030L: [0x0040E024L],
# HomeCommunityID
0x0040E031L: [0x0040E024L],
# AlgorithmParameters
0x00660032L: [0x00240083L, 0x00240085L, 0x00240344L, 0x00660035L, 0x0066002DL, 0x00240065L, 0x00240067L],
# UniversalEntityIDType
0x00400033L: [0x00080051L, 0x00400026L, 0x00400027L, 0x00380014L, 0x00380064L, 0x00100024L, 0x00400036L, 0x00400513L, 0x00400562L],
# PixelAspectRatio
0x00280034L: [0x00880200L, 0x20200110L, 0x20200111L],
# InterventionDrugStartTime
0x00180035L: [0x00180036L, 0x00180026L],
# AlgorithmName
0x00660036L: [0x00240083L, 0x00240085L, 0x00240344L, 0x00660035L, 0x0066002DL, 0x00240065L, 0x00240067L],
# HumanPerformerName
0x00404037L: [0x00404035L, 0x00404034L],
# InterventionStatus
0x00180038L: [0x00180036L],
# ExcessiveFixationLossesDataFlag
0x00240039L: [0x00240032L],
# InterventionDescription
0x0018003AL: [0x00180036L],
# DeliveredTreatmentTime
0x3008003BL: [0x30080020L, 0x30080021L],
# AbstractPriorValue
0x0072003CL: [0x00720030L],
# ReasonForRequestedProcedureCodeSequence
0x0040100AL: [0x00400275L, 0x0072000CL, 0x0040A370L],
# AbstractPriorCodeSequence
0x0072003EL: [0x00720030L],
# TMLinePositionY0
0x0018603FL: [0x00186011L],
# ExcessiveFixationLosses
0x00240040L: [0x00240032L],
# TMLinePositionX1
0x00186041L: [0x00186011L],
# ContourGeometricType
0x30060042L: [0x30060040L],
# ConceptNameCodeSequence
0x0040A043L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00221262L, 0x00221092L, 0x00440019L, 0x0040A730L, 0x00400612L, 0x00400620L, 0x0040B020L, 0x00400555L, 0x00741212L],
# ContourSlabThickness
0x30060044L: [0x30060040L],
# FalseNegativesEstimateFlag
0x00240045L: [0x00240034L],
# BeamLimitingDeviceAngleTolerance
0x300A0046L: [0x300A03A0L, 0x300A0040L],
# ScanSpotMetersetsDelivered
0x30080047L: [0x30080041L],
# NegativeCatchTrials
0x00240048L: [0x00240034L],
# AttachedContours
0x30060049L: [0x30060040L],
# BeamLimitingDevicePositionTolerance
0x300A004AL: [0x300A0048L],
# SnoutPositionTolerance
0x300A004BL: [0x300A03A0L],
# PatientSupportAngleTolerance
0x300A004CL: [0x300A03A0L, 0x300A0040L],
# IssuerOfTheSpecimenIdentifierSequence
0x00400562L: [0x00400560L],
# MydriaticAgentConcentration
0x0022004EL: [0x00220058L],
# TableTopPitchAngleTolerance
0x300A004FL: [0x300A03A0L, 0x300A0040L],
# AccessionNumber
0x00080050L: [0x0040A370L, 0x00400270L, 0x00400275L],
# IssuerOfAccessionNumberSequence
0x00080051L: [0x0040A370L, 0x00400270L, 0x00400275L],
# FluenceModeID
0x30020052L: [0x30020050L],
# FalsePositivesEstimateFlag
0x00240053L: [0x00240034L],
# RetrieveAETitle
0x00080054L: [0x0040E021L, 0x00081115L, 0x00081199L, 0x00400340L],
# SeriesInstanceUID
0x0020000EL: [0x00081115L, 0x00404021L, 0x00081250L, 0x00400340L, 0x30060014L, 0x00404033L],
# PositiveCatchTrials
0x00240056L: [0x00240034L],
# TableOfPixelValues
0x00186058L: [0x00186011L],
# GlobalDeviationProbabilityNormalsFlag
0x00240059L: [0x00240064L],
# NumberOfFractionsDelivered
0x3008005AL: [0x30080220L],
# SegmentedPropertyTypeCodeSequence
0x0062000FL: [0x00620002L],
# FalsePositives
0x00240060L: [0x00240034L],
# PixelData
0x7FE00010L: [0x00880200L, 0x20200110L, 0x20200111L],
# ExcessiveFalsePositives
0x00240062L: [0x00240034L],
# ParameterItemIndex
0x30080063L: [0x30080068L, 0x30080060L],
# SelectorISValue
0x00720064L: [0x00720022L, 0x00720400L],
# ParameterPointer
0x30080065L: [0x30080068L],
# GlobalDeviationFromNormal
0x00240066L: [0x00240064L],
# ScheduledProcedureStepLocation
0x00400011L: [0x00400100L],
# LocalizedDeviationfromNormal
0x00240068L: [0x00240064L],
# ReferencedPatientSetupNumber
0x300C006AL: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x30080021L],
# SelectorSHValue
0x0072006CL: [0x00720022L, 0x00720400L],
# MIMETypeOfEncapsulatedDocument
0x00420012L: [0x00686265L, 0x00686260L],
# Laterality
0x00200060L: [0x0072000CL],
# ImplantTemplateGroupMemberMatching2DCoordinatesSequence
0x00780070L: [0x0078002AL],
# GlobalDeviationProbability
0x00240071L: [0x00240083L],
# LocalDeviationProbabilityNormalsFlag
0x00240072L: [0x00240064L],
# LocalizedDeviationProbability
0x00240073L: [0x00240085L],
# SelectorFDValue
0x00720074L: [0x00720022L, 0x00720400L],
# RadiusOfCurvature
0x00460075L: [0x00460074L, 0x00460080L],
# SelectorFLValue
0x00720076L: [0x00720022L, 0x00720400L],
# KeratometricAxis
0x00460077L: [0x00460074L, 0x00460080L],
# StartMeterset
0x30080078L: [0x300C0040L],
# StereoRotation
0x00220014L: [0x00220020L],
# EndMeterset
0x3008007AL: [0x300C0040L],
# FractionPattern
0x300A007BL: [0x300A0070L],
# SelectorSLValue
0x0072007CL: [0x00720022L, 0x00720400L],
# SelectorSSValue
0x0072007EL: [0x00720022L, 0x00720400L],
# NumberOfSurfacePoints
0x00660015L: [0x00660011L],
# RepetitionTime
0x00180080L: [0x00189112L],
# InstitutionAddress
0x00080081L: [0x0040000BL, 0x300A03A2L, 0x300A00B0L, 0x00700086L, 0x00081052L, 0x00081072L, 0x300A0206L, 0x00080096L, 0x00321031L, 0x00401011L, 0x00081049L, 0x00081062L, 0x0018A001L],
# InstitutionCodeSequence
0x00080082L: [0x0040000BL, 0x00700086L, 0x00081052L, 0x00081072L, 0x00080096L, 0x00321031L, 0x0040A078L, 0x0040A07AL, 0x0040A07CL, 0x00401011L, 0x00081049L, 0x00081062L],
# GlobalDeviation
0x00240083L: [0x00240064L],
# ReferencedROINumber
0x30060084L: [0x30060039L, 0x300C00B0L, 0x300A0260L, 0x300A0280L, 0x300A02B0L, 0x300A0010L, 0x30040060L, 0x30060080L, 0x30060030L, 0x30040010L],
# LocalizedDeviation
0x00240085L: [0x00240064L],
# BeamMeterset
0x300A0086L: [0x300C0004L],
# BeamDosePointDepth
0x300A0088L: [0x300C0050L, 0x300C0004L],
# BeamDosePointEquivalentDepth
0x300A0089L: [0x300C0050L, 0x300C0004L],
# BeamDosePointSSD
0x300A008AL: [0x300C0050L, 0x300C0004L],
# PointPositionAccuracy
0x00660017L: [0x00660011L],
# PatientPosition
0x00185100L: [0x300A0180L],
# TwoDImplantTemplateGroupMemberMatchingPoint
0x00780090L: [0x00780070L],
# EchoTrainLength
0x00180091L: [0x00189112L],
# ReferencedCalculatedDoseReferenceNumber
0x30080092L: [0x30080090L],
# PercentSampling
0x00180093L: [0x00189103L, 0x00189125L],
# PercentPhaseFieldOfView
0x00180094L: [0x00189103L, 0x00189125L],
# PixelBandwidth
0x00180095L: [0x00189006L],
# RetestSensitivityValue
0x00240096L: [0x00240089L],
# MaximumPointDistance
0x00660019L: [0x00660011L],
# QuantifiedDefect
0x00240098L: [0x00240089L],
# MACIDNumber
0x04000005L: [0x4FFE0001L, 0xFFFAFFFAL],
# NominalPriorDose
0x300A001AL: [0x300A0010L],
# TwoDImplantTemplateGroupMemberMatchingAxes
0x007800A0L: [0x00780070L],
# PrintingBitDepth
0x200000A1L: [0x2000001EL],
# BrachyApplicationSetupDoseSpecificationPoint
0x300A00A2L: [0x300C000AL],
# ContainerComponentID
0x0050001BL: [0x00400520L],
# BrachyApplicationSetupDose
0x300A00A4L: [0x300C000AL],
# DefaultMagnificationType
0x201000A6L: [0x2000001EL],
# OtherMagnificationTypesAvailable
0x201000A7L: [0x2000001EL],
# SupportedImageDisplayFormatsSequence
0x200000A8L: [0x2000001EL],
# CenterOfRotation
0x0066001CL: [0x00660011L],
# RefractiveSurgeryTypeCodeSequence
0x00221040L: [0x00221300L, 0x00221310L],
# ReferencedBolusSequence
0x300C00B0L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x00741042L, 0x30080021L],
# ImplantTemplateGroupVariationDimensionName
0x007800B2L: [0x007800B0L],
# PrimaryDosimeterUnit
0x300A00B3L: [0x300A03A2L, 0x300A00B0L, 0x00741020L],
# ImplantTemplateGroupVariationDimensionRankSequence
0x007800B4L: [0x007800B0L],
# RegionLocationMaxY1
0x0018601EL: [0x00186011L],
# ReferencedImplantTemplateGroupMemberID
0x007800B6L: [0x007800B4L],
# ROIElementalCompositionAtomicNumber
0x300600B7L: [0x300600B6L],
# ImplantTemplateGroupVariationDimensionRank
0x007800B8L: [0x007800B4L],
# ScheduledPerformingPhysicianName
0x00400006L: [0x00400100L],
# IsocenterToBeamLimitingDeviceDistance
0x300A00BBL: [0x300A03A4L],
# NumberOfLeafJawPairs
0x300A00BCL: [0x300A03A4L, 0x300A00B6L, 0x300800A0L],
# LeafPositionBoundaries
0x300A00BEL: [0x300A03A4L, 0x300A00B6L],
# Component2ReferencedMatingFeatureID
0x007600C0L: [0x00760060L],
# DoseReferenceType
0x300A0020L: [0x300A0010L],
# BeamName
0x300A00C2L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x00741042L, 0x30080021L],
# BeamDescription
0x300A00C3L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x30080021L],
# BeamType
0x300A00C4L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x30080021L],
# FrameOfReferenceTransformationMatrix
0x300600C6L: [0x0070030AL, 0x0064000FL, 0x00640010L, 0x300600C0L],
# DICOMRetrievalSequence
0x0040E021L: [0x00404021L, 0x00404033L],
# FrameOfReferenceTransformationComment
0x300600C8L: [0x00700309L, 0x00640002L, 0x300600C0L],
# PlannedVerificationImageSequence
0x300A00CAL: [0x300A00B0L],
# ImagingDeviceSpecificAcquisitionParameters
0x300A00CCL: [0x300A00CAL],
# ReferencePixelY0
0x00186022L: [0x00186011L],
# TreatmentDeliveryType
0x300A00CEL: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x30080021L, 0x30080110L, 0x00741020L],
# TextObjectSequence
0x00700008L: [0x00700001L],
# ReferencedCompensatorNumber
0x300C00D0L: [0x300800C0L],
# WedgeSequence
0x300A00D1L: [0x300A00B0L],
# WedgeNumber
0x300A00D2L: [0x300A03AAL, 0x300A00D1L, 0x300800B0L],
# WedgeType
0x300A00D3L: [0x300A03AAL, 0x300A00D1L, 0x300800B0L],
# WedgeID
0x300A00D4L: [0x300A03AAL, 0x300A00D1L, 0x300800B0L],
# WedgeAngle
0x300A00D5L: [0x300A03AAL, 0x300A00D1L, 0x300800B0L],
# WedgeFactor
0x300A00D6L: [0x300A00D1L],
# TotalWedgeTrayWaterEquivalentThickness
0x300A00D7L: [0x300A03A2L],
# WedgeOrientation
0x300A00D8L: [0x300A03AAL, 0x300A00D1L, 0x300800B0L],
# IsocenterToWedgeTrayDistance
0x300A00D9L: [0x300A03AAL],
# SourceToWedgeTrayDistance
0x300A00DAL: [0x300A00D1L],
# WedgeThinEdgePosition
0x300A00DBL: [0x300A03ACL],
# BolusID
0x300A00DCL: [0x300C00B0L],
# BolusDescription
0x300A00DDL: [0x300C00B0L],
# TargetMinimumDose
0x300A0025L: [0x300A0010L, 0x300C0050L],
# NumberOfCompensators
0x300A00E0L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x00741042L, 0x30080021L],
# MaterialID
0x300A00E1L: [0x300A02EAL, 0x300A03A6L, 0x300A00E3L, 0x300A00F4L, 0x300A0210L, 0x300A0260L, 0x300A0280L, 0x300A02B0L, 0x30060080L],
# TotalCompensatorTrayFactor
0x300A00E2L: [0x300A00B0L],
# CompensatorSequence
0x300A00E3L: [0x300A00B0L],
# CompensatorNumber
0x300A00E4L: [0x300A02EAL, 0x300A00E3L],
# RTImageSID
0x30020026L: [0x300A00CAL],
# SourceToCompensatorTrayDistance
0x300A00E6L: [0x300A00E3L],
# CompensatorRows
0x300A00E7L: [0x300A02EAL, 0x300A00E3L],
# CompensatorColumns
0x300A00E8L: [0x300A02EAL, 0x300A00E3L],
# CompensatorPixelSpacing
0x300A00E9L: [0x300A02EAL, 0x300A00E3L],
# CompensatorPosition
0x300A00EAL: [0x300A02EAL, 0x300A00E3L],
# OrderFillerIdentifierSequence
0x00400027L: [0x0040A370L, 0x00400270L],
# CompensatorThicknessData
0x300A00ECL: [0x300A02EAL, 0x300A00E3L],
# NumberOfBoli
0x300A00EDL: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x00741042L, 0x30080021L],
# CompensatorType
0x300A00EEL: [0x300A00E3L, 0x300800C0L],
# NumberOfBlocks
0x300A00F0L: [0x300A03A2L, 0x300A00B0L, 0x30080020L, 0x00741042L, 0x30080021L, 0x30020030L],
# SelectorValueNumber
0x00720028L: [0x00741048L, 0x0074104AL, 0x00720022L, 0x00720400L, 0x00720600L],
# TotalBlockTrayFactor
0x300A00F2L: [0x300A00B0L],
# TotalBlockTrayWaterEquivalentThickness
0x300A00F3L: [0x300A03A2L],
# BlockSequence
0x300A00F4L: [0x300A00B0L, 0x30020030L],
# BlockTrayID
0x300A00F5L: [0x300A03A6L, 0x300A00F4L, 0x300800D0L],
# ScheduledProtocolCodeSequence
0x00400008L: [0x00400100L, 0x00400270L, 0x00400275L],
# IsocenterToBlockTrayDistance
0x300A00F7L: [0x300A03A6L],
# BlockType
0x300A00F8L: [0x300A03A6L, 0x300A00F4L],
# AccessoryCode
0x300A00F9L: [0x300A03AAL, 0x300A02EAL, 0x300C00B0L, 0x300A03A6L, 0x300A030CL, 0x300A0107L, 0x300A0420L, 0x300A0314L, 0x300A0332L, 0x300A0342L, 0x300A00D1L, 0x300A00E3L, 0x300A00F4L, 0x300800B0L, 0x300800C0L, 0x300800D0L, 0x300A0190L, 0x300800F0L, 0x300800F2L, 0x300800F4L, 0x300800F6L, 0x300A01A0L, 0x300A01B4L],
# BlockDivergence
0x300A00FAL: [0x300A03A6L, 0x300A00F4L],
# BlockMountingPosition
0x300A00FBL: [0x300A03A6L, 0x300A00F4L],
# BlockNumber
0x300A00FCL: [0x300A03A6L, 0x300A00F4L],
# AcquisitionDateTime
0x0008002AL: [0x00189506L],
# BlockName
0x300A00FEL: [0x300A03A6L, 0x300A00F4L, 0x300800D0L],
# CodeValue
0x00080100L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# BitsStored
0x00280101L: [0x00880200L, 0x00189506L, 0x20200110L, 0x20200111L],
# CodingSchemeDesignator
0x00080102L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00080110L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# OrganAtRiskLimitDose
0x300A002BL: [0x300A0010L, 0x300C0050L],
# CodeMeaning
0x00080104L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# MappingResource
0x00080105L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A504L, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# ContextGroupVersion
0x00080106L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# ContextGroupLocalVersion
0x00080107L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# DisplayEnvironmentSpatialPosition
0x00720108L: [0x00720102L, 0x00720300L],
# ApplicatorType
0x300A0109L: [0x300A0107L],
# ScreenMinimumGrayscaleBitDepth
0x0072010AL: [0x00720102L],
# ContextGroupExtensionFlag
0x0008010BL: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# ScreenMinimumColorBitDepth
0x0072010CL: [0x00720102L],
# ContextGroupExtensionCreatorUID
0x0008010DL: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# ApplicationMaximumRepaintTime
0x0072010EL: [0x00720102L],
# ContextIdentifier
0x0008010FL: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# LossyImageCompression
0x00282110L: [0x00189506L],
# DerivationDescription
0x00082111L: [0x00189412L, 0x00089124L],
# SourceImageSequence
0x00082112L: [0x00189507L, 0x00089124L],
# ObjectiveLensNumericalAperture
0x00480113L: [0x00480105L],
# EndCumulativeMetersetWeight
0x300C0009L: [0x300C0042L, 0x300A00CAL, 0x00741030L],
# DoseRateSet
0x300A0115L: [0x300A0111L, 0x30080040L, 0x0074104CL],
# WedgePositionSequence
0x300A0116L: [0x300A0111L, 0x30080040L, 0x0074104CL],
# ContextUID
0x00080117L: [0x00180036L, 0x00180029L, 0x00540302L, 0x0040000AL, 0x00540220L, 0x00540222L, 0x00321064L, 0x00082218L, 0x00082220L, 0x00240033L, 0x00400260L, 0x00540300L, 0x00540304L, 0x00404009L, 0x00404028L, 0x00404029L, 0x00404030L, 0x00404007L, 0x00404019L, 0x0022001CL, 0x00220042L, 0x00400008L, 0x0070030DL, 0x00089215L, 0x00440007L, 0x00221096L, 0x00221250L, 0x00221035L, 0x00221044L, 0x00460121L, 0x00520016L, 0x00720080L, 0x0040A043L, 0x0040A168L, 0x004008EAL, 0x00100050L, 0x00100101L, 0x00100102L, 0x00101021L, 0x00102202L, 0x00102293L, 0x00102296L, 0x0040A170L, 0x0008103FL, 0x00404025L, 0x00404026L, 0x00404027L, 0x00404018L, 0x00180012L, 0x00180014L, 0x00189338L, 0x00540410L, 0x00540412L, 0x00540414L, 0x0022001DL, 0x00082229L, 0x00081032L, 0x00401012L, 0x00400281L, 0x00686545L, 0x0066002FL, 0x00660030L, 0x00221150L, 0x0022001AL, 0x00080006L, 0x0018002AL, 0x0040100AL, 0x006862A0L, 0x006863A0L, 0x006863A4L, 0x006863A8L, 0x006863ACL, 0x00760020L, 0x00760032L, 0x0072003EL, 0x0072000EL, 0x00221125L, 0x00401101L, 0x00080082L, 0x00081084L, 0x00221101L, 0x003A0208L, 0x00189772L, 0x00240016L, 0x00240021L, 0x00240024L, 0x00281352L, 0x00500010L, 0x00082133L, 0x00189809L, 0x0018980DL, 0x0018980EL, 0x0018980FL, 0x00220015L, 0x00220016L, 0x00220017L, 0x00220018L, 0x00220019L, 0x0040E008L, 0x00120064L, 0x00404031L, 0x00404032L, 0x04000401L, 0x00321034L, 0x00404004L, 0x0074100EL, 0x0040A088L, 0x0040A372L, 0x00409098L, 0x00620003L, 0x0062000FL, 0x00400039L, 0x0040003AL, 0x00480100L, 0x00480108L, 0x006862E0L, 0x006862C0L, 0x00700311L, 0x00189346L, 0x00400518L, 0x00500012L, 0x0040059AL, 0x0040A301L, 0x003A0209L, 0x003A0211L, 0x00185104L, 0x00082228L, 0x00220006L, 0x00400320L, 0x00400296L, 0x00400295L, 0x00082230L, 0x0040A195L, 0x30060086L, 0x00221040L, 0x00221103L, 0x00221132L, 0x00221133L, 0x00221135L, 0x00221028L, 0x00221024L, 0x00221025L],
# WedgePosition
0x300A0118L: [0x300A03ACL, 0x300A0116L],
# VerticalPrismPower
0x00460034L: [0x00460028L],
# BeamLimitingDevicePositionSequence
0x300A011AL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x0074104CL],
# LeafJawPositions
0x300A011CL: [0x300A011AL, 0x300A00B6L],
# GantryAngle
0x300A011EL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L, 0x0074104CL],
# GantryRotationDirection
0x300A011FL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x0074104CL],
# DateTime
0x0040A120L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00440019L, 0x0040A730L, 0x00400612L, 0x00400620L, 0x00741212L],
# Date
0x0040A121L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00440019L, 0x0040A730L, 0x00400612L, 0x00400620L, 0x00400555L, 0x00741212L],
# Time
0x0040A122L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00440019L, 0x0040A730L, 0x00400612L, 0x00400620L, 0x00400555L, 0x00741212L],
# PersonName
0x0040A123L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00440019L, 0x0040A078L, 0x0040A07AL, 0x0040A730L, 0x00400612L, 0x00400620L, 0x00400555L, 0x00741212L],
# UID
0x0040A124L: [0x00400440L, 0x00400441L, 0x00440013L, 0x00741210L, 0x00240325L, 0x00440019L, 0x0040A730L, 0x00400612L, 0x00400620L, 0x00741212L],
# TableTopEccentricAngle
0x300A0125L: [0x300A0111L, 0x30080040L, 0x0074104CL],
# TableTopEccentricRotationDirection
0x300A0126L: [0x300A0111L, 0x30080040L, 0x0074104CL],
# AlgorithmVersion
0x00660031L: [0x00240083L, 0x00240085L, 0x00240344L, 0x00660035L, 0x0066002DL, 0x00240065L, 0x00240067L],
# TableTopVerticalPosition
0x300A0128L: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L, 0x0074104CL, 0x00189406L],
# TableTopLongitudinalPosition
0x300A0129L: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L, 0x0074104CL, 0x00189406L],
# TableTopLateralPosition
0x300A012AL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L, 0x0074104CL, 0x00189406L],
# IsocenterPosition
0x300A012CL: [0x300A03A8L, 0x300A0111L],
# UniversalEntityID
0x00400032L: [0x00080051L, 0x00400026L, 0x00400027L, 0x00380014L, 0x00380064L, 0x00100024L, 0x00400036L, 0x00400513L, 0x00400562L],
# SurfaceEntryPoint
0x300A012EL: [0x300A03A8L, 0x300A0111L],
# StorageMediaFileSetID
0x00880130L: [0x2200000DL, 0x0040E022L, 0x00081115L, 0x00081199L],
# ReferencedBrachyApplicationSetupSequence
0x300C000AL: [0x300C0020L, 0x300A0070L],
# FixationMonitoringCodeSequence
0x00240033L: [0x00240032L],
# CumulativeMetersetWeight
0x300A0134L: [0x300A03A8L, 0x300A0111L],
# EventCodeSequence
0x00082135L: [0x00082133L],
# SpecifiedNumberOfPulses
0x30080136L: [0x30080130L],
# DecimalVisualAcuity
0x00460137L: [0x00460122L, 0x00460123L, 0x00460124L, 0x00240110L],
# DeliveredNumberOfPulses
0x30080138L: [0x30080130L],
# ImageSetSelectorCategory
0x00720034L: [0x00720030L],
# GridID
0x00181006L: [0x00189507L],
# DeliveredPulseRepetitionInterval
0x3008013CL: [0x30080130L],
# FixationCheckedQuantity
0x00240035L: [0x00240032L],
# StorageMediaFileSetUID
0x00880140L: [0x2200000DL, 0x0040E022L, 0x00081115L, 0x00081199L],
# TableTopPitchRotationDirection
0x300A0142L: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x0074104CL],
# StopTrim
0x00082143L: [0x00089458L],
# TableTopRollAngle
0x300A0144L: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L, 0x0074104CL],
# HumanPerformerOrganization
0x00404036L: [0x00404035L, 0x00404034L],
# TableTopRollRotationDirection
0x300A0146L: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x0074104CL],
# CylinderPower
0x00460147L: [0x00460018L],
# HeadFixationAngle
0x300A0148L: [0x300A03A8L, 0x30080041L, 0x0074104EL],
# GantryPitchAngle
0x300A014AL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL, 0x30020030L],
# ImageOrientationPatient
0x00200037L: [0x00640005L, 0x00540022L, 0x00209116L],
# GantryPitchRotationDirection
0x300A014CL: [0x300A03A8L, 0x300A0111L, 0x30080040L, 0x30080041L, 0x0074104EL],
# GantryPitchAngleTolerance
0x300A014EL: [0x300A0040L],
# ScheduledPerformingPhysicianIdentificationSequence
0x0040000BL: [0x00400100L],
# NumberOfPaddedAlines
0x00520038L: [0x00520029L],
# ReferencedChannelShieldNumber
0x30080152L: [0x30080150L],
# MaximumCollatedFilms
0x20100154L: [0x2000001EL],
# DopplerSampleVolumeXPosition
0x00186039L: [0x00186011L],
# SpecifiedTreatmentTime
0x3008003AL: [0x30080020L, 0x00741042L, 0x30080021L],
# BrachyControlPointDeliveredSequence
0x30080160L: [0x30080130L],
# SafePositionExitDate
0x30080162L: [0x30080130L],
# DopplerSampleVolumeYPosition
0x0018603BL: [0x00186011L],
# SafePositionExitTime
0x30080164L: [0x30080130L],
# GraphicObjectSequence
0x00700009L: [0x00700001L],
# SafePositionReturnDate
0x30080166L: [0x30080130L],
# SafePositionReturnTime
0x30080168L: [0x30080130L],
# IOLPowerSequence
0x00221090L: [0x00221300L, 0x00221310L],
# ReferencedBrachyApplicationSetupNumber
0x300C000CL: [0x30080110L, 0x300C000AL],
# TMLinePositionX0
0x0018603DL: [0x00186011L],
# PurposeOfReferenceCodeSequence
0x0040A170L: [0x00380100L, 0x00081140L, 0x0008114AL, 0x00082112L, 0x00081250L, 0x00081199L, 0x0018A001L],
# HighBit
0x00280102L: [0x00880200L, 0x20200110L, 0x20200111L],
# ProcedureStepCommunicationsURISequence
0x00741008L: [0x00741002L],
# IssueDateOfImagingServiceRequest
0x00402004L: [0x0040A370L],
# PatientSetupSequence
0x300A0180L: [0x00741042L],
# ReferencedVerificationImageSequence
0x300C0040L: [0x30080020L, 0x30080021L, 0x30080110L],
# PatientSetupNumber
0x300A0182L: [0x300A0180L],
# PatientSetupLabel
0x300A0183L: [0x300A0180L],
# PatientAdditionalPosition
0x300A0184L: [0x300A0180L],
# ModalityLUTSequence
0x00283000L: [0x00700402L],
# PixelIntensityRelationshipSign
0x00281041L: [0x00289443L],
# TableTopRollAngleTolerance
0x300A0050L: [0x300A03A0L, 0x300A0040L],
# ReferencedReferenceImageSequence
0x300C0042L: [0x300A03A2L, 0x300A00B0L, 0x300A0230L],
# FixationDeviceSequence
0x300A0190L: [0x300A0180L],
# FixationDeviceType
0x300A0192L: [0x300A0190L],
# TMLinePositionY1
0x00186043L: [0x00186011L],
# FixationDeviceLabel
0x300A0194L: [0x300A0190L],
# ModifierCodeSequence
0x0040A195L: [0x0040A043L, 0x0040A168L],
# FixationDeviceDescription
0x300A0196L: [0x300A0190L],
# FixationDevicePosition
0x300A0198L: [0x300A0190L],
# PupilSize
0x00460044L: [0x00240114L, 0x00240115L, 0x00460050L, 0x00460052L],
# FixationDeviceRollAngle
0x300A019AL: [0x300A0190L],
# IssueTimeOfImagingServiceRequest
0x00402005L: [0x0040A370L],
# SpecimenTypeCodeSequence
0x0040059AL: [0x00400560L],
# ContourOffsetVector
0x30060045L: [0x30060040L],
# ShieldingDeviceSequence
0x300A01A0L: [0x300A0180L],
# ShieldingDeviceType
0x300A01A2L: [0x300A01A0L],
# ShieldingDeviceLabel
0x300A01A4L: [0x300A01A0L],
# FalseNegativesEstimate
0x00240046L: [0x00240034L],
# ShieldingDeviceDescription
0x300A01A6L: [0x300A01A0L],
# ShieldingDevicePosition
0x300A01A8L: [0x300A01A0L],
# ReferencedSourceNumber
0x300C000EL: [0x300A0280L, 0x30080130L],
# MultiCoilElementName
0x00189047L: [0x00189045L],
# SetupTechnique
0x300A01B0L: [0x300A0180L],
# ContourNumber
0x30060048L: [0x30060040L],
# ContactURI
0x0074100AL: [0x00741008L],
# BitsAllocated
0x00280100L: [0x00880200L, 0x20200110L, 0x20200111L],
# DVHType
0x30040001L: [0x30040050L],
# SetupDeviceType
0x300A01B6L: [0x300A01B4L],
# RotationAngle
0x00700230L: [0x00700209L],
# SetupDeviceLabel
0x300A01B8L: [0x300A01B4L],
# ReferencedImageSequence
0x00081140L: [0x00700308L, 0x00283110L, 0x00409094L, 0x00189472L, 0x0070005AL, 0x00640002L, 0x00400340L, 0x00289505L, 0x00286100L, 0x0070031CL, 0x00700318L, 0x00081115L, 0x00700001L],
# SetupDeviceParameter
0x300A01BCL: [0x300A01B4L],
# PixelComponentRangeStop
0x0018604AL: [0x00186011L],
# HistogramNumberOfBins
0x00603002L: [0x00603000L],
# PixelComponentPhysicalUnits
0x0018604CL: [0x00186011L],
# Signature
0x04000120L: [0xFFFAFFFAL, 0x04000402L],
# SetupReferenceDescription
0x300A01D0L: [0x300A01B4L],
# TableTopVerticalSetupDisplacement
0x300A01D2L: [0x00741020L, 0x300A0180L],
# TableTopLongitudinalSetupDisplacement
0x300A01D4L: [0x00741020L, 0x300A0180L],
# TableTopEccentricAngleTolerance
0x300A004EL: [0x300A0040L],
# TableTopLateralSetupDisplacement
0x300A01D6L: [0x00741020L, 0x300A0180L],
# ThreeDImplantTemplateGroupMemberMatchingPoint
0x00780050L: [0x0078002AL],
# ScheduledStationName
0x00400010L: [0x00400100L],
# ReferencedDoseReferenceNumber
0x300C0051L: [0x300800E0L, 0x30080050L, 0x300C0050L, 0x30080080L, 0x30080090L, 0x300C0055L, 0x30080070L, 0x30080010L],
# ExcessiveFalseNegatives
0x00240052L: [0x00240034L],
# EnergyWindowRangeSequence
0x00540013L: [0x00540012L],
# TableTopLateralPositionTolerance
0x300A0053L: [0x300A03A0L, 0x300A0040L],
# FalsePositivesEstimate
0x00240054L: [0x00240034L],
# HistogramFirstBinValue
0x00603004L: [0x00603000L],
# CatchTrialsDataFlag
0x00240055L: [0x00240034L],
# IconImageSequence
0x00880200L: [0x00081199L, 0x0040A730L],
# TopLeftHandCornerOfLocalizerArea
0x00480201L: [0x00480200L],
# AlgorithmSource
0x00240202L: [0x00240083L, 0x00240085L, 0x00240344L, 0x00660035L, 0x0066002DL, 0x00240065L, 0x00240067L],
# DisplaySetLabel
0x00720203L: [0x00720200L],
# SeriesNumber
0x00200011L: [0x00081115L],
# SelectorAttributePrivateCreator
0x00720056L: [0x00741048L, 0x0074104AL, 0x00720022L, 0x00720400L, 0x00720600L],
# DisplaySetPresentationGroupDescription
0x00720206L: [0x00720200L],
# GraphicGroupLabel
0x00700207L: [0x00700234L],
# GraphicGroupDescription
0x00700208L: [0x00700234L],
# PixelRepresentation
0x00280103L: [0x00880200L, 0x20200110L, 0x20200111L],
# SourceWaveformSequence
0x003A020AL: [0x003A0200L],
# InStackPositionNumber
0x00209057L: [0x00209111L],
# ChannelDerivationDescription
0x003A020CL: [0x003A0200L],
# AnatomicalOrientationType
0x00102210L: [0x00400100L],
# MRAcquisitionFrequencyEncodingSteps
0x00189058L: [0x00189125L],
# SourceNumber
0x300A0212L: [0x300A0210L, 0x30080100L],
# ChannelBaseline
0x003A0213L: [0x003A0200L],
# SourceType
0x300A0214L: [0x300A0210L, 0x30080100L],
# ChannelSampleSkew
0x003A0215L: [0x003A0200L],
# SourceManufacturer
0x300A0216L: [0x300A0210L, 0x30080100L],
# AnatomicRegionSequence
0x00082218L: [0x00780028L, 0x00686230L, 0x00760010L, 0x0072000CL, 0x00209071L, 0x00189260L, 0x00620002L],
# ActiveSourceLength
0x300A021AL: [0x300A0210L],
# ShapeType
0x00700306L: [0x0070031EL],
# TableOfParameterValues
0x0018605AL: [0x00186011L],
# RowPositionInTotalImagePixelMatrix
0x0048021EL: [0x0048021AL],
# ColumnPositionInTotalImagePixelMatrix
0x0048021FL: [0x0048021AL],
# AnatomicRegionModifierSequence
0x00082220L: [0x00082218L],
# FilterHighFrequency
0x003A0221L: [0x003A0200L],
# ContrastBolusAgentSequence
0x00180012L: [0x00189507L],
# ReferencedFractionNumber
0x30080223L: [0x30080240L],
# FractionGroupType
0x30080224L: [0x30080220L],
# SourceIsotopeName
0x300A0226L: [0x300A0210L, 0x30080100L],
# FontName
0x00700227L: [0x00700231L],
# SourceIsotopeHalfLife
0x300A0228L: [0x300A0210L, 0x30080100L],
# SourceStrengthUnits
0x300A0229L: [0x300A0210L, 0x30080100L],
# ReferenceAirKermaRate
0x300A022AL: [0x300A0210L, 0x30080100L],
# SourceStrength
0x300A022BL: [0x300A0210L, 0x30080100L],
# SourceStrengthReferenceDate
0x300A022CL: [0x300A0210L, 0x30080100L],
# SourceStrengthReferenceTime
0x300A022EL: [0x300A0210L, 0x30080100L],
# DeviceVolume
0x00500018L: [0x00500010L],
# BeamStopperPosition
0x30080230L: [0x30080040L],
# TextStyleSequence
0x00700231L: [0x00700008L, 0x00700209L],
# ApplicationSetupType
0x300A0232L: [0x300A0230L, 0x30080110L],
# FillStyleSequence
0x00700233L: [0x00700009L, 0x00700209L],
# ApplicationSetupNumber
0x300A0234L: [0x300A0230L],
# ApplicationSetupName
0x300A0236L: [0x300A0230L, 0x30080110L],
# ApplicationSetupManufacturer
0x300A0238L: [0x300A0230L, 0x30080110L],
# HistogramLastBinValue
0x00603006L: [0x00603000L],
# InstanceNumber
0x00200013L: [0x0008114AL],
# SelectorATValue
0x00720060L: [0x00720022L, 0x00720400L],
# TemplateType
0x300A0242L: [0x300A0230L, 0x30080110L],
# VerticalAlignment
0x00700243L: [0x00700231L],
# TemplateName
0x300A0244L: [0x300A0230L, 0x30080110L],
# ShadowOffsetX
0x00700245L: [0x00700232L, 0x00700231L],
# ShadowOffsetY
0x00700246L: [0x00700232L, 0x00700231L],
# ExcessiveFalsePositivesDataFlag
0x00240061L: [0x00240034L],
# AbsoluteChannelDisplayScale
0x003A0248L: [0x003A0242L],
# Bold
0x00700249L: [0x00700231L],
# DoseUnits
0x30040002L: [0x30040050L, 0x30040010L, 0x30080010L],
# OverrideParameterPointer
0x30080062L: [0x30080060L],
# TreatmentDate
0x30080250L: [0x30080240L],
# PatternOnColorCIELabValue
0x00700251L: [0x00700233L, 0x00700232L],
# PatternOffColorCIELabValue
0x00700252L: [0x00700233L, 0x00700232L],
# LineThickness
0x00700253L: [0x00700232L],
# LineDashingStyle
0x00700254L: [0x00700232L],
# LinePattern
0x00700255L: [0x00700232L],
# FillPattern
0x00700256L: [0x00700233L],
# FillMode
0x00700257L: [0x00700233L],
# ShadowOpacity
0x00700258L: [0x00700232L, 0x00700231L],
# CardiacFramingType
0x00181064L: [0x00540062L],
# EnergyWindowLowerLimit
0x00540014L: [0x00540013L],
# ImageFilter
0x00189320L: [0x00189314L],
# PerformedProtocolCodeSequence
0x00400260L: [0x00189506L],
# GapLength
0x00700261L: [0x00700209L],
# BrachyAccessoryDeviceNumber
0x300A0262L: [0x300A0260L],
# BrachyAccessoryDeviceID
0x300A0263L: [0x300A0260L, 0x30080120L],
# BrachyAccessoryDeviceType
0x300A0264L: [0x300A0260L, 0x30080120L],
# OverrideReason
0x30080066L: [0x30080060L, 0x0074104AL],
# BrachyAccessoryDeviceName
0x300A0266L: [0x300A0260L, 0x30080120L],
# BrachyAccessoryDeviceNominalThickness
0x300A026AL: [0x300A0260L],
# BrachyAccessoryDeviceNominalTransmission
0x300A026CL: [0x300A0260L],
# InformationIssueDateTime
0x00686270L: [0x00686265L, 0x00686260L],
# SelectorLTValue
0x00720068L: [0x00720022L, 0x00720400L],
# RotationPoint
0x00700273L: [0x00700209L],
# LensSegmentType
0x00460038L: [0x00460014L, 0x00460015L, 0x00460016L],
# TriggerTimeOffset
0x00181069L: [0x54000100L],
# ShowTickLabel
0x00700278L: [0x00700209L],
# TickLabelAlignment
0x00700279L: [0x00700209L],
# EnergyWindowUpperLimit
0x00540015L: [0x00540013L],
# CorrectionValue
0x3008006AL: [0x30080068L],
# PostDeformationMatrixRegistrationSequence
0x00640010L: [0x00640002L],
# InformationSummary
0x00686280L: [0x00686265L, 0x00686260L],
# FixationDevicePitchAngle
0x300A0199L: [0x300A0190L],
# ChannelNumber
0x300A0282L: [0x300A0280L, 0x30080130L],
# PatternOnOpacity
0x00700284L: [0x00700233L, 0x00700232L],
# PatternOffOpacity
0x00700285L: [0x00700233L, 0x00700232L],
# SeamLineLocation
0x00520033L: [0x00520027L],
# MajorTicksSequence
0x00700287L: [0x00700209L],
# SourceMovementType
0x300A0288L: [0x300A0280L, 0x30080130L],
# TickLabel
0x00700289L: [0x00700287L],
# NumberOfPulses
0x300A028AL: [0x300A0280L],
# PulseRepetitionInterval
0x300A028CL: [0x300A0280L],
# SourceApplicatorNumber
0x300A0290L: [0x300A0280L],
# SourceApplicatorID
0x300A0291L: [0x300A0280L, 0x30080140L],
# SourceApplicatorType
0x300A0292L: [0x300A0280L, 0x30080140L],
# QuantitySequence
0x00400293L: [0x00400324L],
# SourceApplicatorName
0x300A0294L: [0x300A0280L, 0x30080140L],
# BreedRegistrationNumber
0x00102295L: [0x00102294L],
# BreedRegistryCodeSequence
0x00102296L: [0x00102294L],
# SourceApplicatorManufacturer
0x300A0298L: [0x300A0280L, 0x30080140L],
# ResidualSyringeCounts
0x00540017L: [0x00540306L],
# DeviceDiameter
0x00500016L: [0x00500010L],
# SourceApplicatorWallNominalThickness
0x300A029CL: [0x300A0280L],
# SourceApplicatorWallNominalTransmission
0x300A029EL: [0x300A0280L],
# SourceApplicatorStepSize
0x300A02A0L: [0x300A0280L, 0x30080140L],
# Manufacturer
0x00080070L: [0x300A03A2L, 0x00189506L, 0x300A00B0L, 0x300A0206L, 0x00500010L, 0x0040A078L, 0x0040A07AL, 0x0018A001L, 0x00400520L],
# TransferTubeNumber
0x300A02A2L: [0x300A0280L, 0x30080130L],
# TransferTubeLength
0x300A02A4L: [0x300A0280L, 0x30080130L],
# FractionGroupNumber
0x300A0071L: [0x300A0070L],
# RadiopharmaceuticalStartTime
0x00181072L: [0x00540016L],
# ChannelShieldSequence
0x300A02B0L: [0x300A0280L],
# ChannelShieldNumber
0x300A02B2L: [0x300A02B0L],
# ChannelShieldID
0x300A02B3L: [0x300A02B0L, 0x30080150L],
# ChannelShieldName
0x300A02B4L: [0x300A02B0L, 0x30080150L],
# ChannelShieldNominalThickness
0x300A02B8L: [0x300A02B0L],
# FrameAcquisitionDateTime
0x00189074L: [0x00209111L],
# ChannelShieldNominalTransmission
0x300A02BAL: [0x300A02B0L],
# DiffusionDirectionality
0x00189075L: [0x00189117L],
# ContainerComponentWidth
0x00500015L: [0x00400520L],
# DiffusionGradientDirectionSequence
0x00189076L: [0x00189117L],
# FinalCumulativeTimeWeight
0x300A02C8L: [0x300A0280L],
# ParallelAcquisition
0x00189077L: [0x00189115L],