Ignore:
Timestamp:
2021-02-26T19:39:51+13:00 (3 years ago)
Author:
anupama
Message:

Committing the improvements to EmbeddedMetaPlugin's processing of Keywords vs other metadata fields. Keywords were literally stored as arrays of words rather than phrases in PDFs (at least in Diego's sample PDF), whereas other meta fields like Subjects and Creators stored them as arrays of phrases. To get both to work, Kathy updated EXIF to a newer version, to retrieve the actual EXIF values stored in the PDF. And Kathy and Dr Bainbridge came up with a new option that I added called apply_join_before_split_to_metafields that's a regex which can list the metadata fields to apply the join_before_split to and whcih previously always got applied to all metadata fields. Now it's applied to any *Keywords metafields by default, as that's the metafield we have experience of that behaves differently to the others, as it stores by word instead of phrases. Tested on Diego's sample PDF. Diego has double-checked it to works on his sample PDF too, setting the split char to ; and turning on the join_before_split and leaving apply_join_before_split_to_metafields at its default of .*Keywords. File changes are strings.properties for the tooltip, the plugin introducing the option and working with it and Kathy's EXIF updates affecting cpan/File and cpan/Image.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/cpan/Image/ExifTool/TagNames.pod

    r24107 r34921  
    1313
    1414The tables listed below give the names of all tags recognized by ExifTool.
    15 
    16 B<Tag ID>, B<Index> or B<Sequence> is given in the first column of each
     15They contain a total of 24079 tags, with 15589 unique tag names.
     16
     17B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
    1718table.  A B<Tag ID> is the computer-readable equivalent of a tag name, and
    18 is the identifier that is actually stored in the file.  An B<Index> refers
    19 to the location of a value when found at a fixed position within a data
    20 block, and B<Sequence> gives the order of values for a serial data stream.
     19is the identifier that is actually stored in the file.  B<Index#> refers to
     20the offset of a value when found at a fixed position within a data block
     21(B<#> is the multiplier for calculating a byte offset: B<1>, B<2>, B<4> or
     22B<8>).  These offsets may have a decimal part which is used only to
     23differentiate tags with values stored at the same position.  (Note that
     24writable tags within binary data blocks are not individually deletable,
     25and the usual alternative is to set them to a value of zero.)  B<Sequence>
     26gives the order of values for a serial data stream.
    2127
    2228A B<Tag Name> is the handle by which the information is accessed in
     
    3238
    3339The B<Writable> column indicates whether the tag is writable by ExifTool.
    34 Anything but an C<N> in this column means the tag is writable.  A C<Y>
     40Anything but a C<no> in this column means the tag is writable.  A C<yes>
    3541indicates writable information that is either unformatted or written using
    36 the existing format.  Other expressions give details about the information
    37 format, and vary depending on the general type of information.  The format
    38 name may be followed by a number in square brackets to indicate the number
    39 of values written, or the number of characters in a fixed-length string
    40 (including a null terminator which is added if required).
     42the existing format.  Other expressions give details about the format of the
     43stored value, and vary depending on the general type of information.  The
     44format name may be followed by a number in square brackets to indicate the
     45number of values written, or the number of characters in a fixed-length
     46string (including a null terminator which is added if required).
    4147
    4248A plus sign (C<+>) after an entry in the B<Writable> column indicates a
    43 "list" tag which supports multiple values and allows individual values to be
    44 added and deleted.  A slash (C</>) indicates an "avoided" tag that is not
    45 created when writing if another same-named tag may be created instead.  To
    46 write these tags, the group should be specified.  A tilde (C<~>) indicates a
    47 tag this is writable only when the print conversion is disabled (by setting
    48 PrintConv to 0, using the -n option, or suffixing the tag name with a C<#>
    49 character).  An exclamation point (C<!>) indicates a tag that is considered
    50 unsafe to write under normal circumstances.  These "unsafe" tags are not set
    51 when calling SetNewValuesFromFile() or copied with the exiftool
    52 -tagsFromFile option unless specified explicitly, and care should be taken
    53 when editing them manually since they may affect the way an image is
    54 rendered.  An asterisk (C<*>) indicates a "protected" tag which is not
     49I<List> tag which supports multiple values and allows individual values to
     50be added and deleted.  A slash (C</>) indicates a tag that ExifTool will
     51I<Avoid> when writing.  These will be edited but not created if another
     52same-named tag may be created instead.  To create these tags, the group
     53should be specified.  A tilde (C<~>) indicates a tag this is writable only
     54when the print conversion is disabled (by setting PrintConv to 0, using the
     55-n option, or suffixing the tag name with a C<#> character). An exclamation
     56point (C<!>) indicates a tag that is considered I<Unsafe> to write under
     57normal circumstances.  These tags are not written unless specified
     58explicitly (ie. not when wildcards or "all" are used), and care should be
     59taken when editing them manually since they may affect the way an image is
     60rendered.  An asterisk (C<*>) indicates a I<Protected> tag which is not
    5561writable directly, but is written automatically by ExifTool (often when a
    56 corresponding Composite or Extra tag is written).  A colon (C<:>) indicates
    57 a mandatory tag which may be added automatically when writing.
     62corresponding L<Composite|Image::ExifTool::TagNames/Composite Tags> or
     63L<Extra|Image::ExifTool::TagNames/Extra Tags> tag is written). A colon
     64(C<:>) indicates a I<Mandatory> tag which may be added automatically when
     65writing.  Normally MakerNotes tags may not be deleted individually, but a
     66caret (C<^>) indicates a I<Deletable> MakerNotes tag.
    5867
    5968The HTML version of these tables also lists possible B<Values> for
    6069discrete-valued tags, as well as B<Notes> for some tags.  The B<Values> are
    61 listed as the computer-readable and human-readable values on the left and
    62 right hand side of an equals sign (C<=>) respectively.  The human-readable
     70listed with the computer-readable values on the left of the equals sign
     71(C<=>), and the human-readable values on the right.  The human-readable
    6372values are used by default when reading and writing, but the
    6473computer-readable values may be accessed by disabling the value conversion
    65 with the -n option on the command line, by setting the ValueConv option to 0
    66 in the API, or or on a per-tag basis by appending a number symbol (C<#>) to
    67 the tag name.
     74with the -n option on the command line, by setting the PrintConv option to 0
     75in the API, or or on a per-tag basis by adding a hash (C<#>) after the tag
     76name.
    6877
    6978B<Note>: If you are familiar with common meta-information tag names, you may
     
    7483question.
    7584
     85I<(This documentation is the result of years of research, testing and
     86reverse engineering, and is the most complete metadata tag list available
     87anywhere on the internet.  It is provided not only for ExifTool users, but
     88more importantly as a public service to help augment the collective
     89knowledge, and is often used as a primary source of information in the
     90development of other metadata software.  Please help keep this documentation
     91as accurate and complete as possible, and feed any new discoveries back to
     92ExifTool.  A big thanks to everyone who has helped with this so far!)>
     93
    7694=head2 JPEG Tags
    7795
    78 This table lists information extracted by ExifTool from JPEG images.
     96This table lists information extracted by ExifTool from JPEG images. See
     97L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JPEG specification.
    7998
    8099  Tag ID       Tag Name                         Writable
     
    89108               XMP                              XMP
    90109               QVCI                             Casio QVCI
     110               FLIR                             FLIR FFF
     111               RawThermalImage                  no
    91112  'APP2'       ICC_Profile                      ICC_Profile
    92113               FPXR                             FlashPix
    93114               MPF                              MPF
    94                PreviewImage                     N
     115               PreviewImage                     no
    95116  'APP3'       Meta                             Kodak Meta
    96117               Stim                             Stim
    97                PreviewImage                     N
    98   'APP4'       Scalado                          JPEG Scalado
     118               ThermalData                      no
     119               PreviewImage                     no
     120  'APP4'       Scalado                          Scalado
    99121               FPXR                             FlashPix
    100                PreviewImage                     N
     122               ThermalParams                    DJI ThermalParams
     123               PreviewImage                     no
    101124  'APP5'       RMETA                            Ricoh RMETA
     125               SamsungUniqueID                  Samsung APP5
     126               ThermalCalibration               no
     127               PreviewImage                     no
    102128  'APP6'       EPPIM                            JPEG EPPIM
    103129               NITF                             JPEG NITF
    104130               HP_TDHD                          HP TDHD
     131               GoPro                            GoPro GPMF
     132               DJI_DTAT                         no
     133  'APP7'       Pentax                           Pentax
     134               Huawei                           Unknown
     135               Qualcomm                         Qualcomm
    105136  'APP8'       SPIFF                            JPEG SPIFF
    106   'APP10'      Comment                          N
     137  'APP9'       MediaJukebox                     JPEG MediaJukebox
     138  'APP10'      Comment                          no
     139  'APP11'      JPEG-HDR                         JPEG HDR
    107140  'APP12'      PictureInfo                      APP12 PictureInfo
    108141               Ducky                            APP12 Ducky
     
    111144  'APP14'      Adobe                            JPEG Adobe
    112145  'APP15'      GraphicConverter                 JPEG GraphConv
    113   'COM'        Comment                          Y
    114   'DQT'        DefineQuantizationTable          N
     146  'COM'        Comment                          yes
     147  'DQT'        DefineQuantizationTable          no
    115148  'SOF'        StartOfFrame                     JPEG SOF
    116149  'Trailer'    AFCP                             AFCP
     
    119152               PhotoMechanic                    PhotoMechanic
    120153               MIE                              MIE
    121                PreviewImage                     Y
     154               Samsung                          Samsung Trailer
     155               EmbeddedVideo                    no
     156               Insta360                         no
     157               PreviewImage                     yes
    122158
    123159=head3 JPEG AVI1 Tags
     
    125161This information may be found in APP0 of JPEG image data from AVI videos.
    126162
    127    Index   Tag Name                             Writable
    128    -----   --------                             --------
    129       0    InterleavedField                     N
     163  Index1   Tag Name                             Writable
     164  ------   --------                             --------
     165      0    InterleavedField                     no
    130166
    131167=head3 JPEG Ocad Tags
     
    136172  Tag ID   Tag Name                             Writable
    137173  ------   --------                             --------
    138   'Rev'    OcadRevision                         N
    139 
    140 =head3 JPEG Scalado Tags
    141 
    142 Tags extracted from the JPEG APP4 "SCALADO" segment (presumably written by
    143 Scalado mobile software, L<http://www.scalado.com/>).
    144 
    145   Tag ID   Tag Name                             Writable
    146   ------   --------                             --------
    147   'HGHT'   PreviewImageHeight                   N
    148   'QUAL'   PreviewQuality                       N
    149   'SPMO'   DataLength                           N
    150   'WDTH'   PreviewImageWidth                    N
     174  'Rev'    OcadRevision                         no
    151175
    152176=head3 JPEG EPPIM Tags
     
    165189the official specification.
    166190
    167    Index   Tag Name                             Writable
    168    -----   --------                             --------
    169       0    NITFVersion                          N
    170       2    ImageFormat                          N
    171       3    BlocksPerRow                         N
    172       5    BlocksPerColumn                      N
    173       7    ImageColor                           N
    174       8    BitDepth                             N
    175       9    ImageClass                           N
    176      10    JPEGProcess                          N
    177      11    Quality                              N
    178      12    StreamColor                          N
    179      13    StreamBitDepth                       N
    180      14    Flags                                N
     191  Index1   Tag Name                             Writable
     192  ------   --------                             --------
     193      0    NITFVersion                          no
     194      2    ImageFormat                          no
     195      3    BlocksPerRow                         no
     196      5    BlocksPerColumn                      no
     197      7    ImageColor                           no
     198      8    BitDepth                             no
     199      9    ImageClass                           no
     200     10    JPEGProcess                          no
     201     11    Quality                              no
     202     12    StreamColor                          no
     203     13    StreamBitDepth                       no
     204     14    Flags                                no
    181205
    182206=head3 JPEG SPIFF Tags
     
    187211specification.
    188212
    189    Index   Tag Name                             Writable
    190    -----   --------                             --------
    191       0    SPIFFVersion                         N
    192       2    ProfileID                            N
    193       3    ColorComponents                      N
    194       6    ImageHeight                          N
    195      10    ImageWidth                           N
    196      14    ColorSpace                           N
    197      15    BitsPerSample                        N
    198      16    Compression                          N
    199      17    ResolutionUnit                       N
    200      18    YResolution                          N
    201      22    XResolution                          N
     213  Index1   Tag Name                             Writable
     214  ------   --------                             --------
     215      0    SPIFFVersion                         no
     216      2    ProfileID                            no
     217      3    ColorComponents                      no
     218      6    ImageHeight                          no
     219     10    ImageWidth                           no
     220     14    ColorSpace                           no
     221     15    BitsPerSample                        no
     222     16    Compression                          no
     223     17    ResolutionUnit                       no
     224     18    YResolution                          no
     225     22    XResolution                          no
     226
     227=head3 JPEG MediaJukebox Tags
     228
     229Tags found in the XML metadata of the APP9 "Media Jukebox" segment.
     230
     231  Tag Name                                      Writable
     232  --------                                      --------
     233  Album                                         no
     234  Caption                                       no
     235  Date                                          no
     236  Keywords                                      no
     237  Name                                          no
     238  People                                        no
     239  Places                                        no
     240  Tool_Name                                     no
     241  Tool_Version                                  no
     242
     243=head3 JPEG HDR Tags
     244
     245Information extracted from APP11 of a JPEG-HDR image.
     246
     247  Tag ID               Tag Name                 Writable
     248  ------               --------                 --------
     249  'RatioImage'         RatioImage               no
     250  'alp'                Alpha                    no
     251  'bet'                Beta                     no
     252  'cor'                CorrectionMethod         no
     253  'ln0'                Ln0                      no
     254  'ln1'                Ln1                      no
     255  's2n'                S2n                      no
     256  'ver'                JPEG-HDRVersion          no
    202257
    203258=head3 JPEG AdobeCM Tags
    204259
    205 The "Adobe_CM" APP13 segment presumably contains color management
     260The APP13 "Adobe_CM" segment presumably contains color management
    206261information, but the meaning of the data is currently unknown.  If anyone
    207262has an idea about what this means, please let me know.
    208263
    209    Index   Tag Name                             Writable
    210    -----   --------                             --------
    211       0    AdobeCMType                          N
     264  Index2   Tag Name                             Writable
     265  ------   --------                             --------
     266      0    AdobeCMType                          no
    212267
    213268=head3 JPEG Adobe Tags
    214269
    215 The "Adobe" APP14 segment stores image encoding information for DCT filters.
    216 
    217    Index   Tag Name                             Writable
    218    -----   --------                             --------
    219       0    DCTEncodeVersion                     N
    220       1    APP14Flags0                          N
    221       2    APP14Flags1                          N
    222       3    ColorTransform                       N
     270The APP14 "Adobe" segment stores image encoding information for DCT filters.
     271This segment may be copied or deleted as a block using the Extra "Adobe"
     272tag, but note that it is not deleted by default when deleting all metadata
     273because it may affect the appearance of the image.
     274
     275  Index2   Tag Name                             Writable
     276  ------   --------                             --------
     277      0    DCTEncodeVersion                     no
     278      1    APP14Flags0                          no
     279      2    APP14Flags1                          no
     280      3    ColorTransform                       no
    223281
    224282=head3 JPEG GraphConv Tags
     
    228286  Tag ID   Tag Name                             Writable
    229287  ------   --------                             --------
    230   'Q'      Quality                              N
     288  'Q'      Quality                              no
    231289
    232290=head3 JPEG SOF Tags
     
    236294  Tag Name                                      Writable
    237295  --------                                      --------
    238   BitsPerSample                                 N
    239   ColorComponents                               N
    240   EncodingProcess                               N
    241   ImageHeight                                   N
    242   ImageWidth                                    N
    243   YCbCrSubSampling                              N
     296  BitsPerSample                                 no
     297  ColorComponents                               no
     298  EncodingProcess                               no
     299  ImageHeight                                   no
     300  ImageWidth                                    no
     301  YCbCrSubSampling                              no
    244302
    245303=head2 EXIF Tags
     
    247305EXIF stands for "Exchangeable Image File Format".  This type of information
    248306is formatted according to the TIFF specification, and may be found in JPG,
    249 TIFF, PNG, PGF, MIFF, HDP, PSP and XCF images, as well as many TIFF-based
    250 RAW images, and even some AVI and MOV videos.
     307TIFF, PNG, JP2, PGF, MIFF, HDP, PSP and XCF images, as well as many
     308TIFF-based RAW images, and even some AVI and MOV videos.
    251309
    252310The EXIF meta information is organized into different Image File Directories
     
    255313B<Group> listed below is used unless another group is specified.
    256314
     315Mandatory tags (indicated by a colon after the B<Writable> type) may be
     316added automatically with default values when creating a new IFD, and the IFD
     317is removed automatically when deleting tags if only default-valued mandatory
     318tags remain.
     319
    257320The table below lists all EXIF tags.  Also listed are TIFF, DNG, HDP and
    258321other tags which are not part of the EXIF specification, but may co-exist
    259 with EXIF tags in some images.  Tags which are part of the EXIF 2.3
     322with EXIF tags in some images.  Tags which are part of the EXIF 2.32
    260323specification have an underlined B<Tag Name> in the HTML version of this
    261324documentation.  See
    262 L<http://www.cipa.jp/english/hyoujunka/kikaku/pdf/DC-008-2010_E.pdf> for the
    263 official EXIF 2.3 specification.
     325L<https://web.archive.org/web/20190624045241if_/http://www.cipa.jp:80/std/documents/e/DC-008-Translation-2019-E.pdf>
     326for the official EXIF 2.32 specification.
    264327
    265328  Tag ID   Tag Name                  Group      Writable
     
    283346  0x010f   Make                      IFD0       string
    284347  0x0110   Model                     IFD0       string
    285   0x0111   StripOffsets              -          N
     348  0x0111   StripOffsets              -          no
    286349           PreviewImageStart         IFD0       int32u*
    287            PreviewImageStart         SubIFD1    int32u*
     350           PreviewImageStart         All        int32u*
    288351           JpgFromRawStart           SubIFD2    int32u*
    289352  0x0112   Orientation               IFD0       int16u
    290353  0x0115   SamplesPerPixel           IFD0       int16u!
    291354  0x0116   RowsPerStrip              IFD0       int32u!
    292   0x0117   StripByteCounts           -          N
     355  0x0117   StripByteCounts           -          no
    293356           PreviewImageLength        IFD0       int32u*
    294            PreviewImageLength        SubIFD1    int32u*
     357           PreviewImageLength        All        int32u*
    295358           JpgFromRawLength          SubIFD2    int32u*
    296359  0x0118   MinSampleValue            IFD0       int16u
     
    302365  0x011e   XPosition                 IFD0       rational64u
    303366  0x011f   YPosition                 IFD0       rational64u
    304   0x0120   FreeOffsets               -          N
    305   0x0121   FreeByteCounts            -          N
     367  0x0120   FreeOffsets               -          no
     368  0x0121   FreeByteCounts            -          no
    306369  0x0122   GrayResponseUnit          IFD0       int16u
    307   0x0123   GrayResponseCurve         -          N
    308   0x0124   T4Options                 -          N
    309   0x0125   T6Options                 -          N
     370  0x0123   GrayResponseCurve         -          no
     371  0x0124   T4Options                 -          no
     372  0x0125   T6Options                 -          no
    310373  0x0128   ResolutionUnit            IFD0       int16u:
    311374  0x0129   PageNumber                IFD0       int16u[2]
    312   0x012c   ColorResponseUnit         -          N
     375  0x012c   ColorResponseUnit         -          no
    313376  0x012d   TransferFunction          IFD0       int16u[768]!
    314377  0x0131   Software                  IFD0       string
     
    319382  0x013e   WhitePoint                IFD0       rational64u[2]
    320383  0x013f   PrimaryChromaticities     IFD0       rational64u[6]
    321   0x0140   ColorMap                  -          N
     384  0x0140   ColorMap                  -          no
    322385  0x0141   HalftoneHints             IFD0       int16u[2]
    323386  0x0142   TileWidth                 IFD0       int32u!
    324387  0x0143   TileLength                IFD0       int32u!
    325   0x0144   TileOffsets               -          N
    326   0x0145   TileByteCounts            -          N
    327   0x0146   BadFaxLines               -          N
    328   0x0147   CleanFaxData              -          N
    329   0x0148   ConsecutiveBadFaxLines    -          N
     388  0x0144   TileOffsets               -          no
     389  0x0145   TileByteCounts            -          no
     390  0x0146   BadFaxLines               -          no
     391  0x0147   CleanFaxData              -          no
     392  0x0148   ConsecutiveBadFaxLines    -          no
    330393  0x014a   SubIFD                    -          EXIF
    331            A100DataOffset            -          N
     394           A100DataOffset            IFD0       no
    332395  0x014c   InkSet                    IFD0       int16u
    333   0x014d   InkNames                  -          N
    334   0x014e   NumberofInks              -          N
    335   0x0150   DotRange                  IFD0       string
    336   0x0151   TargetPrinter             -          N
    337   0x0152   ExtraSamples              -          N
    338   0x0153   SampleFormat              -          N
    339   0x0154   SMinSampleValue           -          N
    340   0x0155   SMaxSampleValue           -          N
    341   0x0156   TransferRange             -          N
    342   0x0157   ClipPath                  -          N
    343   0x0158   XClipPathUnits            -          N
    344   0x0159   YClipPathUnits            -          N
    345   0x015a   Indexed                   -          N
    346   0x015b   JPEGTables                -          N
    347   0x015f   OPIProxy                  -          N
     396  0x014d   InkNames                  -          no
     397  0x014e   NumberofInks              -          no
     398  0x0150   DotRange                  -          no
     399  0x0151   TargetPrinter             IFD0       string
     400  0x0152   ExtraSamples              -          no
     401  0x0153   SampleFormat              SubIFD     no
     402  0x0154   SMinSampleValue           -          no
     403  0x0155   SMaxSampleValue           -          no
     404  0x0156   TransferRange             -          no
     405  0x0157   ClipPath                  -          no
     406  0x0158   XClipPathUnits            -          no
     407  0x0159   YClipPathUnits            -          no
     408  0x015a   Indexed                   -          no
     409  0x015b   JPEGTables                -          no
     410  0x015f   OPIProxy                  -          no
    348411  0x0190   GlobalParametersIFD       -          EXIF
    349   0x0191   ProfileType               -          N
    350   0x0192   FaxProfile                -          N
    351   0x0193   CodingMethods             -          N
    352   0x0194   VersionYear               -          N
    353   0x0195   ModeNumber                -          N
    354   0x01b1   Decode                    -          N
    355   0x01b2   DefaultImageColor         -          N
    356   0x01b3   T82Options                -          N
    357   0x01b5   JPEGTables                -          N
    358   0x0200   JPEGProc                  -          N
     412  0x0191   ProfileType               -          no
     413  0x0192   FaxProfile                -          no
     414  0x0193   CodingMethods             -          no
     415  0x0194   VersionYear               -          no
     416  0x0195   ModeNumber                -          no
     417  0x01b1   Decode                    -          no
     418  0x01b2   DefaultImageColor         -          no
     419  0x01b3   T82Options                -          no
     420  0x01b5   JPEGTables                -          no
     421  0x0200   JPEGProc                  -          no
    359422  0x0201   ThumbnailOffset           IFD1       int32u*
    360423           ThumbnailOffset           IFD0       int32u*
     
    364427           JpgFromRawStart           SubIFD     int32u*
    365428           JpgFromRawStart           IFD2       int32u*
    366            OtherImageStart           -          N
     429           OtherImageStart           SubIFD1    int32u*
     430           OtherImageStart           SubIFD2    int32u*
     431           OtherImageStart           -          no
    367432  0x0202   ThumbnailLength           IFD1       int32u*
    368433           ThumbnailLength           IFD0       int32u*
     
    372437           JpgFromRawLength          SubIFD     int32u*
    373438           JpgFromRawLength          IFD2       int32u*
    374            OtherImageLength          -          N
    375   0x0203   JPEGRestartInterval       -          N
    376   0x0205   JPEGLosslessPredictors    -          N
    377   0x0206   JPEGPointTransforms       -          N
    378   0x0207   JPEGQTables               -          N
    379   0x0208   JPEGDCTables              -          N
    380   0x0209   JPEGACTables              -          N
     439           OtherImageLength          SubIFD1    int32u*
     440           OtherImageLength          SubIFD2    int32u*
     441           OtherImageLength          -          no
     442  0x0203   JPEGRestartInterval       -          no
     443  0x0205   JPEGLosslessPredictors    -          no
     444  0x0206   JPEGPointTransforms       -          no
     445  0x0207   JPEGQTables               -          no
     446  0x0208   JPEGDCTables              -          no
     447  0x0209   JPEGACTables              -          no
    381448  0x0211   YCbCrCoefficients         IFD0       rational64u[3]!
    382449  0x0212   YCbCrSubSampling          IFD0       int16u[2]!
    383450  0x0213   YCbCrPositioning          IFD0       int16u!:
    384451  0x0214   ReferenceBlackWhite       IFD0       rational64u[6]
    385   0x022f   StripRowCounts            -          N
    386   0x02bc   ApplicationNotes          ExifIFD    XMP
    387   0x03e7   USPTOMiscellaneous        -          N
     452  0x022f   StripRowCounts            -          no
     453  0x02bc   ApplicationNotes          IFD0       XMP
     454  0x03e7   USPTOMiscellaneous        -          no
    388455  0x1000   RelatedImageFileFormat    InteropIFD string!
    389456  0x1001   RelatedImageWidth         InteropIFD int16u!
    390457  0x1002   RelatedImageHeight        InteropIFD int16u!
    391458  0x4746   Rating                    IFD0       int16u/
    392   0x4747   XP_DIP_XML                -          N
     459  0x4747   XP_DIP_XML                -          no
    393460  0x4748   StitchInfo                -          Microsoft Stitch
    394461  0x4749   RatingPercent             IFD0       int16u/
    395   0x800d   ImageID                   -          N
    396   0x80a3   WangTag1                  -          N
    397   0x80a4   WangAnnotation            -          N
    398   0x80a5   WangTag3                  -          N
    399   0x80a6   WangTag4                  -          N
    400   0x80e3   Matteing                  -          N
    401   0x80e4   DataType                  -          N
    402   0x80e5   ImageDepth                -          N
    403   0x80e6   TileDepth                 -          N
    404   0x827d   Model2                    -          N
    405   0x828d   CFARepeatPatternDim       -          N
    406   0x828e   CFAPattern2               -          N
    407   0x828f   BatteryLevel              -          N
     462  0x7000   SonyRawFileType           -          no
     463  0x7010   SonyToneCurve             -          no
     464  0x7031   VignettingCorrection      SubIFD     int16s!
     465  0x7032   VignettingCorrParams      SubIFD     int16s[17]!
     466  0x7034   ChromaticAberrationCorrection SubIFD int16s!
     467  0x7035   ChromaticAberrationCorrParams SubIFD int16s[33]!
     468  0x7036   DistortionCorrection      SubIFD     int16s!
     469  0x7037   DistortionCorrParams      SubIFD     int16s[17]!
     470  0x74c7   SonyCropTopLeft           SubIFD     int32u[2]!
     471  0x74c8   SonyCropSize              SubIFD     int32u[2]!
     472  0x800d   ImageID                   -          no
     473  0x80a3   WangTag1                  -          no
     474  0x80a4   WangAnnotation            -          no
     475  0x80a5   WangTag3                  -          no
     476  0x80a6   WangTag4                  -          no
     477  0x80b9   ImageReferencePoints      -          no
     478  0x80ba   RegionXformTackPoint      -          no
     479  0x80bb   WarpQuadrilateral         -          no
     480  0x80bc   AffineTransformMat        -          no
     481  0x80e3   Matteing                  -          no
     482  0x80e4   DataType                  -          no
     483  0x80e5   ImageDepth                -          no
     484  0x80e6   TileDepth                 -          no
     485  0x8214   ImageFullWidth            -          no
     486  0x8215   ImageFullHeight           -          no
     487  0x8216   TextureFormat             -          no
     488  0x8217   WrapModes                 -          no
     489  0x8218   FovCot                    -          no
     490  0x8219   MatrixWorldToScreen       -          no
     491  0x821a   MatrixWorldToCamera       -          no
     492  0x827d   Model2                    -          no
     493  0x828d   CFARepeatPatternDim       SubIFD     int16u[2]!
     494  0x828e   CFAPattern2               SubIFD     int8u[n]!
     495  0x828f   BatteryLevel              -          no
    408496  0x8290   KodakIFD                  -          Kodak IFD
    409497  0x8298   Copyright                 IFD0       string
    410498  0x829a   ExposureTime              ExifIFD    rational64u
    411499  0x829d   FNumber                   ExifIFD    rational64u
    412   0x82a5   MDFileTag                 -          N
    413   0x82a6   MDScalePixel              -          N
    414   0x82a7   MDColorTable              -          N
    415   0x82a8   MDLabName                 -          N
    416   0x82a9   MDSampleInfo              -          N
    417   0x82aa   MDPrepDate                -          N
    418   0x82ab   MDPrepTime                -          N
    419   0x82ac   MDFileUnits               -          N
    420   0x830e   PixelScale                -          N
    421   0x8335   AdventScale               -          N
    422   0x8336   AdventRevision            -          N
    423   0x835c   UIC1Tag                   -          N
    424   0x835d   UIC2Tag                   -          N
    425   0x835e   UIC3Tag                   -          N
    426   0x835f   UIC4Tag                   -          N
     500  0x82a5   MDFileTag                 -          no
     501  0x82a6   MDScalePixel              -          no
     502  0x82a7   MDColorTable              -          no
     503  0x82a8   MDLabName                 -          no
     504  0x82a9   MDSampleInfo              -          no
     505  0x82aa   MDPrepDate                -          no
     506  0x82ab   MDPrepTime                -          no
     507  0x82ac   MDFileUnits               -          no
     508  0x830e   PixelScale                IFD0       double[3]
     509  0x8335   AdventScale               -          no
     510  0x8336   AdventRevision            -          no
     511  0x835c   UIC1Tag                   -          no
     512  0x835d   UIC2Tag                   -          no
     513  0x835e   UIC3Tag                   -          no
     514  0x835f   UIC4Tag                   -          no
    427515  0x83bb   IPTC-NAA                  IFD0       IPTC
    428   0x847e   IntergraphPacketData      -          N
    429   0x847f   IntergraphFlagRegisters   -          N
    430   0x8480   IntergraphMatrix          -          N
    431   0x8481   INGRReserved              -          N
    432   0x8482   ModelTiePoint             -          N
    433   0x84e0   Site                      -          N
    434   0x84e1   ColorSequence             -          N
    435   0x84e2   IT8Header                 -          N
    436   0x84e3   RasterPadding             -          N
    437   0x84e4   BitsPerRunLength          -          N
    438   0x84e5   BitsPerExtendedRunLength  -          N
    439   0x84e6   ColorTable                -          N
    440   0x84e7   ImageColorIndicator       -          N
    441   0x84e8   BackgroundColorIndicator  -          N
    442   0x84e9   ImageColorValue           -          N
    443   0x84ea   BackgroundColorValue      -          N
    444   0x84eb   PixelIntensityRange       -          N
    445   0x84ec   TransparencyIndicator     -          N
    446   0x84ed   ColorCharacterization     -          N
    447   0x84ee   HCUsage                   -          N
    448   0x84ef   TrapIndicator             -          N
    449   0x84f0   CMYKEquivalent            -          N
     516  0x847e   IntergraphPacketData      -          no
     517  0x847f   IntergraphFlagRegisters   -          no
     518  0x8480   IntergraphMatrix          IFD0       double[n]
     519  0x8481   INGRReserved              -          no
     520  0x8482   ModelTiePoint             IFD0       double[n]
     521  0x84e0   Site                      -          no
     522  0x84e1   ColorSequence             -          no
     523  0x84e2   IT8Header                 -          no
     524  0x84e3   RasterPadding             -          no
     525  0x84e4   BitsPerRunLength          -          no
     526  0x84e5   BitsPerExtendedRunLength  -          no
     527  0x84e6   ColorTable                -          no
     528  0x84e7   ImageColorIndicator       -          no
     529  0x84e8   BackgroundColorIndicator  -          no
     530  0x84e9   ImageColorValue           -          no
     531  0x84ea   BackgroundColorValue      -          no
     532  0x84eb   PixelIntensityRange       -          no
     533  0x84ec   TransparencyIndicator     -          no
     534  0x84ed   ColorCharacterization     -          no
     535  0x84ee   HCUsage                   -          no
     536  0x84ef   TrapIndicator             -          no
     537  0x84f0   CMYKEquivalent            -          no
    450538  0x8546   SEMInfo                   IFD0       string
    451539  0x8568   AFCP_IPTC                 -          IPTC
    452   0x85b8   PixelMagicJBIGOptions     -          N
    453   0x85d8   ModelTransform            -          N
    454   0x8602   WB_GRGBLevels             -          N
     540  0x85b8   PixelMagicJBIGOptions     -          no
     541  0x85d7   JPLCartoIFD               -          no
     542  0x85d8   ModelTransform            IFD0       double[16]
     543  0x8602   WB_GRGBLevels             -          no
    455544  0x8606   LeafData                  -          Leaf
    456   0x8649   PhotoshopSettings         -          Photoshop
    457   0x8769   ExifOffset                -          EXIF
    458   0x8773   ICC_Profile               -          ICC_Profile
    459   0x877f   TIFF_FXExtensions         -          N
    460   0x8780   MultiProfiles             -          N
    461   0x8781   SharedData                -          N
    462   0x8782   T88Options                -          N
    463   0x87ac   ImageLayer                -          N
    464   0x87af   GeoTiffDirectory          -          N
    465   0x87b0   GeoTiffDoubleParams       -          N
    466   0x87b1   GeoTiffAsciiParams        -          N
     545  0x8649   PhotoshopSettings         IFD0       Photoshop
     546  0x8769   ExifOffset                IFD0       EXIF
     547  0x8773   ICC_Profile               IFD0       ICC_Profile
     548  0x877f   TIFF_FXExtensions         -          no
     549  0x8780   MultiProfiles             -          no
     550  0x8781   SharedData                -          no
     551  0x8782   T88Options                -          no
     552  0x87ac   ImageLayer                -          no
     553  0x87af   GeoTiffDirectory          IFD0       int16u[0.5]
     554  0x87b0   GeoTiffDoubleParams       IFD0       double[0.125]
     555  0x87b1   GeoTiffAsciiParams        IFD0       string
     556  0x87be   JBIGOptions               -          no
    467557  0x8822   ExposureProgram           ExifIFD    int16u
    468558  0x8824   SpectralSensitivity       ExifIFD    string
    469   0x8825   GPSInfo                   -          GPS
     559  0x8825   GPSInfo                   IFD0       GPS
    470560  0x8827   ISO                       ExifIFD    int16u[n]
    471   0x8828   Opto-ElectricConvFactor   -          N
    472   0x8829   Interlace                 -          N
     561  0x8828   Opto-ElectricConvFactor   -          no
     562  0x8829   Interlace                 -          no
    473563  0x882a   TimeZoneOffset            ExifIFD    int16s[n]
    474564  0x882b   SelfTimerMode             ExifIFD    int16u
     
    479569  0x8834   ISOSpeedLatitudeyyy       ExifIFD    int32u
    480570  0x8835   ISOSpeedLatitudezzz       ExifIFD    int32u
    481   0x885c   FaxRecvParams             -          N
    482   0x885d   FaxSubAddress             -          N
    483   0x885e   FaxRecvTime               -          N
     571  0x885c   FaxRecvParams             -          no
     572  0x885d   FaxSubAddress             -          no
     573  0x885e   FaxRecvTime               -          no
     574  0x8871   FedexEDR                  -          no
    484575  0x888a   LeafSubIFD                -          Leaf SubIFD
    485576  0x9000   ExifVersion               ExifIFD    undef:
    486577  0x9003   DateTimeOriginal          ExifIFD    string
    487578  0x9004   CreateDate                ExifIFD    string
     579  0x9009   GooglePlusUploadCode      ExifIFD    undef[n]
     580  0x9010   OffsetTime                ExifIFD    string
     581  0x9011   OffsetTimeOriginal        ExifIFD    string
     582  0x9012   OffsetTimeDigitized       ExifIFD    string
    488583  0x9101   ComponentsConfiguration   ExifIFD    undef[4]!:
    489584  0x9102   CompressedBitsPerPixel    ExifIFD    rational64u!
     
    498593  0x9209   Flash                     ExifIFD    int16u
    499594  0x920a   FocalLength               ExifIFD    rational64u
    500   0x920b   FlashEnergy               -          N
    501   0x920c   SpatialFrequencyResponse  -          N
    502   0x920d   Noise                     -          N
    503   0x920e   FocalPlaneXResolution     -          N
    504   0x920f   FocalPlaneYResolution     -          N
    505   0x9210   FocalPlaneResolutionUnit  -          N
     595  0x920b   FlashEnergy               -          no
     596  0x920c   SpatialFrequencyResponse  -          no
     597  0x920d   Noise                     -          no
     598  0x920e   FocalPlaneXResolution     -          no
     599  0x920f   FocalPlaneYResolution     -          no
     600  0x9210   FocalPlaneResolutionUnit  -          no
    506601  0x9211   ImageNumber               ExifIFD    int32u
    507602  0x9212   SecurityClassification    ExifIFD    string
    508603  0x9213   ImageHistory              ExifIFD    string
    509604  0x9214   SubjectArea               ExifIFD    int16u[n]
    510   0x9215   ExposureIndex             -          N
    511   0x9216   TIFF-EPStandardID         -          N
    512   0x9217   SensingMethod             -          N
    513   0x923a   CIP3DataFile              -          N
    514   0x923b   CIP3Sheet                 -          N
    515   0x923c   CIP3Side                  -          N
    516   0x923f   StoNits                   -          N
    517   0x927c   MakerNoteCanon            ExifIFD    Canon
     605  0x9215   ExposureIndex             -          no
     606  0x9216   TIFF-EPStandardID         -          no
     607  0x9217   SensingMethod             -          no
     608  0x923a   CIP3DataFile              -          no
     609  0x923b   CIP3Sheet                 -          no
     610  0x923c   CIP3Side                  -          no
     611  0x923f   StoNits                   -          no
     612  0x927c   MakerNoteApple            ExifIFD    Apple
     613           MakerNoteNikon            ExifIFD    Nikon
     614           MakerNoteCanon            ExifIFD    Canon
    518615           MakerNoteCasio            ExifIFD    Casio
    519616           MakerNoteCasio2           ExifIFD    Casio Type2
     617           MakerNoteDJI              ExifIFD    DJI
     618           MakerNoteFLIR             ExifIFD    FLIR
    520619           MakerNoteFujiFilm         ExifIFD    FujiFilm
    521620           MakerNoteGE               ExifIFD    GE
    522621           MakerNoteGE2              ExifIFD    FujiFilm
     622           MakerNoteHasselblad       ExifIFD    Unknown
    523623           MakerNoteHP               ExifIFD    HP
    524624           MakerNoteHP2              ExifIFD    HP Type2
     
    539639           MakerNoteKodak8a          ExifIFD    Kodak Type8
    540640           MakerNoteKodak8b          ExifIFD    Kodak Type8
     641           MakerNoteKodak8c          ExifIFD    Kodak Type8
    541642           MakerNoteKodak9           ExifIFD    Kodak Type9
    542643           MakerNoteKodak10          ExifIFD    Kodak Type10
     644           MakerNoteKodak11          ExifIFD    Kodak Type11
     645           MakerNoteKodak12          ExifIFD    Kodak Type11
    543646           MakerNoteKodakUnknown     ExifIFD    Kodak Unknown
    544647           MakerNoteKyocera          ExifIFD    Unknown
     
    546649           MakerNoteMinolta2         ExifIFD    Olympus
    547650           MakerNoteMinolta3         ExifIFD    undef
    548            MakerNoteNikon            ExifIFD    Nikon
     651           MakerNoteMotorola         ExifIFD    Motorola
    549652           MakerNoteNikon2           ExifIFD    Nikon Type2
    550653           MakerNoteNikon3           ExifIFD    Nikon
     654           MakerNoteNintendo         ExifIFD    Nintendo
    551655           MakerNoteOlympus          ExifIFD    Olympus
    552656           MakerNoteOlympus2         ExifIFD    Olympus
     
    557661           MakerNoteLeica5           ExifIFD    Panasonic Leica5
    558662           MakerNoteLeica6           ExifIFD    Panasonic Leica6
     663           MakerNoteLeica7           ExifIFD    Panasonic Leica6
     664           MakerNoteLeica8           ExifIFD    Panasonic Leica5
     665           MakerNoteLeica9           ExifIFD    Panasonic Leica9
     666           MakerNoteLeica10          ExifIFD    Panasonic
    559667           MakerNotePanasonic        ExifIFD    Panasonic
    560668           MakerNotePanasonic2       ExifIFD    Panasonic Type2
     669           MakerNotePanasonic3       ExifIFD    Panasonic
    561670           MakerNotePentax           ExifIFD    Pentax
    562671           MakerNotePentax2          ExifIFD    Pentax Type2
     
    564673           MakerNotePentax4          ExifIFD    Pentax Type4
    565674           MakerNotePentax5          ExifIFD    Pentax
    566            MakerNotePhaseOne         ExifIFD    undef
     675           MakerNotePentax6          ExifIFD    Pentax S1
     676           MakerNotePhaseOne         ExifIFD    PhaseOne
    567677           MakerNoteReconyx          ExifIFD    Reconyx
     678           MakerNoteReconyx2         ExifIFD    Reconyx Type2
     679           MakerNoteReconyx3         ExifIFD    Reconyx Type3
     680           MakerNoteRicohPentax      ExifIFD    Pentax
    568681           MakerNoteRicoh            ExifIFD    Ricoh
     682           MakerNoteRicoh2           ExifIFD    Ricoh Type2
    569683           MakerNoteRicohText        ExifIFD    Ricoh Text
    570684           MakerNoteSamsung1a        ExifIFD    undef
    571            MakerNoteSamsung1b        ExifIFD    Samsung Type1
     685           MakerNoteSamsung1b        ExifIFD    Samsung
    572686           MakerNoteSamsung2         ExifIFD    Samsung Type2
    573687           MakerNoteSanyo            ExifIFD    Sanyo
     
    578692           MakerNoteSony2            ExifIFD    Olympus
    579693           MakerNoteSony3            ExifIFD    Olympus
    580            MakerNoteSony4            ExifIFD    Sony
     694           MakerNoteSony4            ExifIFD    Sony PIC
     695           MakerNoteSony5            ExifIFD    Sony
    581696           MakerNoteSonyEricsson     ExifIFD    Sony Ericsson
    582697           MakerNoteSonySRF          ExifIFD    Sony SRF
    583698           MakerNoteUnknownText      ExifIFD    undef
     699           MakerNoteUnknownBinary    ExifIFD    undef
    584700           MakerNoteUnknown          ExifIFD    Unknown
    585701  0x9286   UserComment               ExifIFD    undef
     
    587703  0x9291   SubSecTimeOriginal        ExifIFD    string
    588704  0x9292   SubSecTimeDigitized       ExifIFD    string
    589   0x932f   MSDocumentText            -          N
    590   0x9330   MSPropertySetStorage      -          N
    591   0x9331   MSDocumentTextPosition    -          N
    592   0x935c   ImageSourceData           IFD0       undef!
     705  0x932f   MSDocumentText            -          no
     706  0x9330   MSPropertySetStorage      -          no
     707  0x9331   MSDocumentTextPosition    -          no
     708  0x935c   ImageSourceData           IFD0       Photoshop DocumentData
     709  0x9400   AmbientTemperature        ExifIFD    rational64s
     710  0x9401   Humidity                  ExifIFD    rational64u
     711  0x9402   Pressure                  ExifIFD    rational64u
     712  0x9403   WaterDepth                ExifIFD    rational64s
     713  0x9404   Acceleration              ExifIFD    rational64u
     714  0x9405   CameraElevationAngle      ExifIFD    rational64s
    593715  0x9c9b   XPTitle                   IFD0       int8u
    594716  0x9c9c   XPComment                 IFD0       int8u
     
    602724  0xa004   RelatedSoundFile          ExifIFD    string
    603725  0xa005   InteropOffset             -          EXIF
    604   0xa20b   FlashEnergy               ExifIFD    rational64u[n]
    605   0xa20c   SpatialFrequencyResponse  -          N
    606   0xa20d   Noise                     -          N
     726  0xa010   SamsungRawPointersOffset  -          no
     727  0xa011   SamsungRawPointersLength  -          no
     728  0xa101   SamsungRawByteOrder       -          no
     729  0xa102   SamsungRawUnknown?        -          no
     730  0xa20b   FlashEnergy               ExifIFD    rational64u
     731  0xa20c   SpatialFrequencyResponse  -          no
     732  0xa20d   Noise                     -          no
    607733  0xa20e   FocalPlaneXResolution     ExifIFD    rational64u
    608734  0xa20f   FocalPlaneYResolution     ExifIFD    rational64u
    609735  0xa210   FocalPlaneResolutionUnit  ExifIFD    int16u
    610   0xa211   ImageNumber               -          N
    611   0xa212   SecurityClassification    -          N
    612   0xa213   ImageHistory              -          N
     736  0xa211   ImageNumber               -          no
     737  0xa212   SecurityClassification    -          no
     738  0xa213   ImageHistory              -          no
    613739  0xa214   SubjectLocation           ExifIFD    int16u[2]
    614740  0xa215   ExposureIndex             ExifIFD    rational64u
    615   0xa216   TIFF-EPStandardID         -          N
     741  0xa216   TIFF-EPStandardID         -          no
    616742  0xa217   SensingMethod             ExifIFD    int16u
    617743  0xa300   FileSource                ExifIFD    undef
     
    628754  0xa409   Saturation                ExifIFD    int16u
    629755  0xa40a   Sharpness                 ExifIFD    int16u
    630   0xa40b   DeviceSettingDescription  -          N
     756  0xa40b   DeviceSettingDescription  -          no
    631757  0xa40c   SubjectDistanceRange      ExifIFD    int16u
    632758  0xa420   ImageUniqueID             ExifIFD    string
     
    637763  0xa434   LensModel                 ExifIFD    string
    638764  0xa435   LensSerialNumber          ExifIFD    string
    639   0xa480   GDALMetadata              -          N
    640   0xa481   GDALNoData                -          N
     765  0xa460   CompositeImage            ExifIFD    int16u
     766  0xa461   CompositeImageCount       ExifIFD    int16u[2]
     767  0xa462   CompositeImageExposureTimes ExifIFD  undef
     768  0xa480   GDALMetadata              IFD0       string
     769  0xa481   GDALNoData                IFD0       string
    641770  0xa500   Gamma                     ExifIFD    rational64u
    642   0xafc0   ExpandSoftware            -          N
    643   0xafc1   ExpandLens                -          N
    644   0xafc2   ExpandFilm                -          N
    645   0xafc3   ExpandFilterLens          -          N
    646   0xafc4   ExpandScanner             -          N
    647   0xafc5   ExpandFlashLamp           -          N
    648   0xbc01   PixelFormat               -          N
    649   0xbc02   Transformation            -          N
    650   0xbc03   Uncompressed              -          N
    651   0xbc04   ImageType                 -          N
    652   0xbc80   ImageWidth                -          N
    653   0xbc81   ImageHeight               -          N
    654   0xbc82   WidthResolution           -          N
    655   0xbc83   HeightResolution          -          N
    656   0xbcc0   ImageOffset               -          N
    657   0xbcc1   ImageByteCount            -          N
    658   0xbcc2   AlphaOffset               -          N
    659   0xbcc3   AlphaByteCount            -          N
    660   0xbcc4   ImageDataDiscard          -          N
    661   0xbcc5   AlphaDataDiscard          -          N
    662   0xc427   OceScanjobDesc            -          N
    663   0xc428   OceApplicationSelector    -          N
    664   0xc429   OceIDNumber               -          N
    665   0xc42a   OceImageLogic             -          N
    666   0xc44f   Annotations               -          N
     771  0xafc0   ExpandSoftware            -          no
     772  0xafc1   ExpandLens                -          no
     773  0xafc2   ExpandFilm                -          no
     774  0xafc3   ExpandFilterLens          -          no
     775  0xafc4   ExpandScanner             -          no
     776  0xafc5   ExpandFlashLamp           -          no
     777  0xb4c3   HasselbladRawImage        -          no
     778  0xbc01   PixelFormat               -          no
     779  0xbc02   Transformation            -          no
     780  0xbc03   Uncompressed              -          no
     781  0xbc04   ImageType                 -          no
     782  0xbc80   ImageWidth                -          no
     783  0xbc81   ImageHeight               -          no
     784  0xbc82   WidthResolution           -          no
     785  0xbc83   HeightResolution          -          no
     786  0xbcc0   ImageOffset               -          no
     787  0xbcc1   ImageByteCount            -          no
     788  0xbcc2   AlphaOffset               -          no
     789  0xbcc3   AlphaByteCount            -          no
     790  0xbcc4   ImageDataDiscard          -          no
     791  0xbcc5   AlphaDataDiscard          -          no
     792  0xc427   OceScanjobDesc            -          no
     793  0xc428   OceApplicationSelector    -          no
     794  0xc429   OceIDNumber               -          no
     795  0xc42a   OceImageLogic             -          no
     796  0xc44f   Annotations               -          no
    667797  0xc4a5   PrintIM                   IFD0       PrintIM
    668   0xc580   USPTOOriginalContentType  -          N
     798  0xc51b   HasselbladExif            -          no
     799  0xc573   OriginalFileName          -          no
     800  0xc580   USPTOOriginalContentType  -          no
     801  0xc5e0   CR2CFAPattern             -          no
    669802  0xc612   DNGVersion                IFD0       int8u[4]!
    670803  0xc613   DNGBackwardVersion        IFD0       int8u[4]!
    671804  0xc614   UniqueCameraModel         IFD0       string
    672805  0xc615   LocalizedCameraModel      IFD0       string
    673   0xc616   CFAPlaneColor             -          N
    674   0xc617   CFALayout                 -          N
    675   0xc618   LinearizationTable        -          N
     806  0xc616   CFAPlaneColor             SubIFD     no
     807  0xc617   CFALayout                 SubIFD     no
     808  0xc618   LinearizationTable        SubIFD     int16u[n]!
    676809  0xc619   BlackLevelRepeatDim       SubIFD     int16u[2]!
    677810  0xc61a   BlackLevel                SubIFD     rational64u[n]!
    678   0xc61b   BlackLevelDeltaH          -          N
    679   0xc61c   BlackLevelDeltaV          -          N
     811  0xc61b   BlackLevelDeltaH          SubIFD     rational64s[n]!
     812  0xc61c   BlackLevelDeltaV          SubIFD     rational64s[n]!
    680813  0xc61d   WhiteLevel                SubIFD     int32u[n]!
    681814  0xc61e   DefaultScale              SubIFD     rational64u[2]!
     
    701834  0xc632   AntiAliasStrength         SubIFD     rational64u!
    702835  0xc633   ShadowScale               IFD0       rational64u!
    703   0xc634   SR2Private                -          Sony SR2Private
    704            DNGAdobeData              -          DNG AdobeData
    705            MakerNotePentax           -          Pentax
    706            DNGPrivateData            -          N
     836  0xc634   SR2Private                IFD0       Sony SR2Private
     837           DNGAdobeData              IFD0       DNG AdobeData
     838           MakerNotePentax           IFD0       Pentax
     839           MakerNotePentax5          IFD0       Pentax
     840           MakerNoteRicohPentax      IFD0       Pentax
     841           DNGPrivateData            IFD0       int8u!
    707842  0xc635   MakerNoteSafety           IFD0       int16u
    708   0xc640   RawImageSegmentation      -          N
     843  0xc640   RawImageSegmentation      -          no
    709844  0xc65a   CalibrationIlluminant1    IFD0       int16u!
    710845  0xc65b   CalibrationIlluminant2    IFD0       int16u!
    711846  0xc65c   BestQualityScale          SubIFD     rational64u!
    712847  0xc65d   RawDataUniqueID           IFD0       int8u[16]!
    713   0xc660   AliasLayerMetadata        -          N
     848  0xc660   AliasLayerMetadata        -          no
    714849  0xc68b   OriginalRawFileName       IFD0       string!
    715850  0xc68c   OriginalRawFileData       IFD0       DNG OriginalRaw
    716851  0xc68d   ActiveArea                SubIFD     int32u[4]!
    717   0xc68e   MaskedAreas               SubIFD     int32u[4]!
     852  0xc68e   MaskedAreas               SubIFD     int32u[n]!
    718853  0xc68f   AsShotICCProfile          IFD0       ICC_Profile
    719854  0xc690   AsShotPreProfileMatrix    IFD0       rational64s[n]!
     
    721856  0xc692   CurrentPreProfileMatrix   IFD0       rational64s[n]!
    722857  0xc6bf   ColorimetricReference     IFD0       int16u!
     858  0xc6c5   SRawType                  IFD0       no
    723859  0xc6d2   PanasonicTitle            IFD0       undef
    724860  0xc6d3   PanasonicTitle2           IFD0       undef
    725861  0xc6f3   CameraCalibrationSig      IFD0       string!
    726862  0xc6f4   ProfileCalibrationSig     IFD0       string!
    727   0xc6f5   ProfileIFD                -          EXIF
     863  0xc6f5   ProfileIFD                IFD0       EXIF
    728864  0xc6f6   AsShotProfileName         IFD0       string!
    729865  0xc6f7   NoiseReductionApplied     SubIFD     rational64u!
     
    743879  0xc71a   PreviewColorSpace         IFD0       int32u!
    744880  0xc71b   PreviewDateTime           IFD0       string!
    745   0xc71c   RawImageDigest            IFD0       int8u!
    746   0xc71d   OriginalRawFileDigest     IFD0       int8u!
    747   0xc71e   SubTileBlockSize          -          N
    748   0xc71f   RowInterleaveFactor       -          N
     881  0xc71c   RawImageDigest            IFD0       int8u[16]!
     882  0xc71d   OriginalRawFileDigest     IFD0       int8u[16]!
     883  0xc71e   SubTileBlockSize          -          no
     884  0xc71f   RowInterleaveFactor       -          no
    749885  0xc725   ProfileLookTableDims      IFD0       int32u[3]!
    750886  0xc726   ProfileLookTableData      IFD0       float[n]!
    751   0xc740   OpcodeList1               -          N
    752   0xc741   OpcodeList2               -          N
    753   0xc74e   OpcodeList3               -          N
    754   0xc761   NoiseProfile              -          N
    755   0xea1c   Padding                   ExifIFD    undef
    756   0xea1d   OffsetSchema              ExifIFD    int32s
     887  0xc740   OpcodeList1               SubIFD     undef!
     888  0xc741   OpcodeList2               SubIFD     undef!
     889  0xc74e   OpcodeList3               SubIFD     undef!
     890  0xc761   NoiseProfile              SubIFD     double[n]!
     891  0xc763   TimeCodes                 IFD0       int8u[n]
     892  0xc764   FrameRate                 IFD0       rational64s
     893  0xc772   TStop                     IFD0       rational64u[n]
     894  0xc789   ReelName                  IFD0       string
     895  0xc791   OriginalDefaultFinalSize  IFD0       int32u[2]!
     896  0xc792   OriginalBestQualitySize   IFD0       int32u[2]!
     897  0xc793   OriginalDefaultCropSize   IFD0       rational64u[2]!
     898  0xc7a1   CameraLabel               IFD0       string
     899  0xc7a3   ProfileHueSatMapEncoding  IFD0       int32u!
     900  0xc7a4   ProfileLookTableEncoding  IFD0       int32u!
     901  0xc7a5   BaselineExposureOffset    IFD0       rational64s!
     902  0xc7a6   DefaultBlackRender        IFD0       int32u!
     903  0xc7a7   NewRawImageDigest         IFD0       int8u[16]!
     904  0xc7a8   RawToPreviewGain          IFD0       double!
     905  0xc7aa   CacheVersion              SubIFD2    int32u!
     906  0xc7b5   DefaultUserCrop           SubIFD     rational64u[4]!
     907  0xc7d5   NikonNEFInfo              -          Nikon NEFInfo
     908  0xc7e9   DepthFormat               IFD0       int16u!
     909  0xc7ea   DepthNear                 IFD0       rational64u!
     910  0xc7eb   DepthFar                  IFD0       rational64u!
     911  0xc7ec   DepthUnits                IFD0       int16u!
     912  0xc7ed   DepthMeasureType          IFD0       int16u!
     913  0xc7ee   EnhanceParams             IFD0       string!
     914  0xea1c   Padding                   ExifIFD    undef!
     915  0xea1d   OffsetSchema              ExifIFD    int32s!
    757916  0xfde8   OwnerName                 ExifIFD    string/
    758917  0xfde9   SerialNumber              ExifIFD    string/
     
    776935Council (IPTC) and the Newspaper Association of America (NAA) Information
    777936Interchange Model (IIM).  This is an older meta information format, slowly
    778 being phased out in favor of XMP.  (In fact, the newer IPTCCore
    779 specification actually uses XMP format!)  IPTC information may be embedded
    780 in JPG, TIFF, PNG, MIFF, PS, PDF, PSD, XCF and DNG images.
     937being phased out in favor of XMP -- the newer IPTCCore specification uses
     938XMP format.  IPTC information may be found in JPG, TIFF, PNG, MIFF, PS, PDF,
     939PSD, XCF and DNG images.
    781940
    782941IPTC information is separated into different records, each of which has its
    783942own set of tags.  See
    784943L<http://www.iptc.org/std/IIM/4.1/specification/IIMV4.1.pdf> for the
    785 official specification.
     944official IPTC IIM specification.
    786945
    787946This specification dictates a length for ASCII (C<string> or C<digits>) and
     
    789948the B<Writable> format name.  For tags where a range of lengths is allowed,
    790949the minimum and maximum lengths are separated by a comma within the
    791 brackets.  IPTC strings are not null terminated.  When writing, ExifTool
    792 issues a minor warning and truncates the value if it is longer than allowed
    793 by the IPTC specification. Minor errors may be ignored with the
    794 IgnoreMinorErrors (-m) option, allowing longer values to be written, but
    795 beware that values like this may cause problems for some other IPTC readers.
     950brackets.  When writing, ExifTool issues a minor warning and truncates the
     951value if it is longer than allowed by the IPTC specification.  Minor errors
     952may be ignored with the IgnoreMinorErrors (-m) option, allowing longer
     953values to be written, but beware that values like this may cause problems
     954for some other IPTC readers. ExifTool will happily read IPTC values of any
     955length.
    796956
    797957Separate IPTC date and time tags may be written with a combined date/time
     
    806966offset at the specified date/time is used, which may be different due to
    807967changes in daylight savings time).
     968
     969Note that it is not uncommon for IPTC to be found in non-standard locations
     970in JPEG and TIFF-based images.  When reading, the family 1 group name has a
     971number added for non-standard IPTC ("IPTC2", "IPTC3", etc), but when writing
     972only "IPTC" may be specified as the group.  To keep the IPTC consistent,
     973ExifTool updates tags in all existing IPTC locations, but will create a new
     974IPTC group only in the standard location.
    808975
    809976  Record   Tag Name                             Writable
     
    9251092     64    InterchangeColorSpace                int8u
    9261093     65    ColorSequence                        int8u
    927      66    ICC_Profile                          N
    928      70    ColorCalibrationMatrix               N
    929      80    LookupTable                          N
     1094     66    ICC_Profile                          no
     1095     70    ColorCalibrationMatrix               no
     1096     80    LookupTable                          no
    9301097     84    NumIndexEntries                      int16u
    931      85    ColorPalette                         N
     1098     85    ColorPalette                         no
    9321099     86    IPTCBitsPerSample                    int8u
    9331100     90    SampleStructure                      int8u
     
    9361103    110    DataCompressionMethod                int32u
    9371104    120    QuantizationMethod                   int8u
    938     125    EndPoints                            N
     1105    125    EndPoints                            no
    9391106    130    ExcursionTolerance                   int8u
    9401107    135    BitsPerComponent                     int8u
     
    9461113  Tag ID   Tag Name                             Writable
    9471114  ------   --------                             --------
    948      10    SizeMode                             N
    949      20    MaxSubfileSize                       N
    950      90    ObjectSizeAnnounced                  N
    951      95    MaximumObjectSize                    N
     1115     10    SizeMode                             no
     1116     20    MaxSubfileSize                       no
     1117     90    ObjectSizeAnnounced                  no
     1118     95    MaximumObjectSize                    no
    9521119
    9531120=head3 IPTC ObjectData Tags
     
    9551122  Tag ID   Tag Name                             Writable
    9561123  ------   --------                             --------
    957      10    SubFile                              N+
     1124     10    SubFile                              no+
    9581125
    9591126=head3 IPTC PostObjectData Tags
     
    9611128  Tag ID   Tag Name                             Writable
    9621129  ------   --------                             --------
    963      10    ConfirmedObjectSize                  N
     1130     10    ConfirmedObjectSize                  no
    9641131
    9651132=head3 IPTC FotoStation Tags
     
    9741141format which is being pushed by Adobe.  Information in this format can be
    9751142embedded in many different image file types including JPG, JP2, TIFF, GIF,
    976 EPS, PDF, PSD, IND, PNG, DJVU, SVG, PGF, MIFF, XCF, CRW, DNG and a variety
    977 of proprietary TIFF-based RAW images, as well as MOV, AVI, ASF, WMV, FLV,
    978 SWF and MP4 videos, and WMA and audio formats supporting ID3v2 information.
     1143EPS, PDF, PSD, IND, INX, PNG, DJVU, SVG, PGF, MIFF, XCF, CRW, DNG and a
     1144variety of proprietary TIFF-based RAW images, as well as MOV, AVI, ASF, WMV,
     1145FLV, SWF and MP4 videos, and WMA and audio formats supporting ID3v2
     1146information.
    9791147
    9801148The XMP B<Tag ID>'s aren't listed because in most cases they are identical
     
    9891157point number but stored as two C<integer> strings separated by a '/'
    9901158character, C<date> is a date/time string entered in the format "YYYY:mm:dd
    991 HH:MM:SS[.ss][+/-HH:MM]", C<boolean> is either "True" or "False",
    992 C<lang-alt> indicates that the tag supports alternate languages (see below),
    993 and C<struct> is an XMP structure.  When reading, structures are extracted
    994 only if the Struct (-struct) option is used.  Otherwise the corresponding
    995 "flattened" tags, indicated by an underline (C<_>) after the B<Writable>
    996 type, are extracted.  When copying information, the Struct option is in
    997 effect by default.  When writing, the Struct option has no effect, and both
    998 structured and flattened tags may be written.  See
    999 L<http://owl.phy.queensu.ca/~phil/exiftool/struct.html> for more details.
     1159HH:MM:SS[.ss][+/-HH:MM]", C<boolean> is either "True" or "False" (but "true"
     1160and "false" may be written as a ValueConv value for compatibility with
     1161non-conforming applications), C<struct> indicates a structured tag, and
     1162C<lang-alt> is a tag that supports alternate languages.
     1163
     1164When reading, C<struct> tags are extracted only if the Struct (-struct)
     1165option is used.  Otherwise the corresponding I<Flattened> tags, indicated by
     1166an underline (C<_>) after the B<Writable> type, are extracted.  When
     1167copying, by default both structured and flattened tags are available, but
     1168the flattened tags are considered "unsafe" so they aren't copied unless
     1169specified explicitly.  The Struct option may be disabled by setting Struct
     1170to 0 via the API or with --struct on the command line to copy only flattened
     1171tags, or enabled by setting Struct to 1 via the API or with -struct on the
     1172command line to copy only as structures.  When writing, the Struct option
     1173has no effect, and both structured and flattened tags may be written.  See
     1174L<https://exiftool.org/struct.html> for more details.
    10001175
    10011176Individual languages for C<lang-alt> tags are accessed by suffixing the tag
    1002 name with a '-', followed by an RFC 3066 language code (ie. "XMP:Title-fr",
     1177name with a '-', followed by an RFC 3066 language code (eg. "XMP:Title-fr",
    10031178or "Rights-en-US").  (See L<http://www.ietf.org/rfc/rfc3066.txt> for the RFC
    100411793066 specification.)  A C<lang-alt> tag with no language code accesses the
    10051180"x-default" language, but causes other languages for this tag to be deleted
    10061181when writing.  The "x-default" language code may be specified when writing
    1007 to preserve other existing languages (ie. "XMP-dc:Description-x-default").
     1182to preserve other existing languages (eg. "XMP-dc:Description-x-default").
    10081183When reading, "x-default" is not specified.
    10091184
    10101185The XMP tags are organized according to schema B<Namespace> in the following
    1011 tables.  Note that a few of the longer namespace prefixes given below have
    1012 been shortened for convenience (since the family 1 group names are derived
    1013 from these by adding a leading "XMP-").  In cases where a tag name exists in
    1014 more than one namespace, less common namespaces are avoided when writing.
    1015 However, any namespace may be written by specifying a family 1 group name
    1016 for the tag, ie) XMP-exif:Contrast or XMP-crs:Contrast.  When deciding on
    1017 which tags to add to an image, using standard schemas such as
    1018 L<dc|/XMP dc Tags>, L<xmp|/XMP xmp Tags> or L<iptc|/XMP iptcCore Tags> is
     1186tables.  The ExifTool family 1 group names are derived from the namespace
     1187prefixes by adding a leading "XMP-" (eg. "XMP-dc").  A few of the longer
     1188prefixes have been shortened (as mentioned in the documentation below) to
     1189avoid excessively long ExifTool group names.  The tags of any namespace may
     1190be deleted as a group by specifying the family 1 group name (eg.
     1191"-XMP-dc:all=" on the command line).  This includes namespaces which are not
     1192pre-defined by ExifTool.
     1193
     1194In cases where a tag name exists in more than one namespace, less common
     1195namespaces are avoided when writing.  However, a specific namespace may be
     1196written by providing a family 1 group name for the tag (eg. XMP-crs:Contrast
     1197or XMP-exif:Contrast).  When deciding on which tags to add to an image,
     1198using standard schemas such as L<dc|/XMP dc Tags>, L<xmp|/XMP xmp Tags>,
     1199L<iptcCore|/XMP iptcCore Tags> and L<iptcExt|/XMP iptcExt Tags> is
    10191200recommended if possible.
    10201201
     
    10221203names are very similar to tag names, except they are used to identify fields
    10231204inside structures instead of stand-alone tags.  See
    1024 L<http://owl.phy.queensu.ca/~phil/exiftool/struct.html#Fields> for more
     1205L<https://exiftool.org/struct.html#Fields> for more
    10251206details.
    10261207
    10271208ExifTool will extract XMP information even if it is not listed in these
    1028 tables.  For example, the C<pdfx> namespace doesn't have a predefined set of
    1029 tag names because it is used to store application-defined PDF information,
    1030 but this information is extracted by ExifTool.
    1031 
    1032 See L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
     1209tables, but other tags are not writable unless added as user-defined tags in
     1210the ExifTool config file.  For example, the C<pdfx> namespace doesn't have a
     1211predefined set of tag names because it is used to store application-defined
     1212PDF information, so although this information will be extracted, it is only
     1213writable if the corresponding user-defined tags have been created.
     1214
     1215The tables below list tags from the official XMP specification (with an
     1216underlined B<Namespace> in the HTML version of this documentation), as well
     1217as extensions from various other sources.  See
     1218L<http://www.adobe.com/devnet/xmp/> for the official XMP specification.
    10331219
    10341220  Namespace                                     Writable
    10351221  ---------                                     --------
     1222  aas                                           XMP aas
    10361223  acdsee                                        XMP acdsee
    10371224  album                                         XMP Album
     1225  apple-fi                                      XMP apple_fi
    10381226  aux                                           XMP aux
    10391227  cc                                            XMP cc
    10401228  cell                                          XMP cell
     1229  crd                                           XMP crd
     1230  creatorAtom                                   XMP creatorAtom
    10411231  crs                                           XMP crs
    10421232  dc                                            XMP dc
     1233  Device                                        XMP Device
    10431234  dex                                           XMP dex
    10441235  DICOM                                         XMP DICOM
    10451236  digiKam                                       XMP digiKam
     1237  drone-dji                                     DJI XMP
     1238  dwc                                           DarwinCore
    10461239  exif                                          XMP exif
     1240  exifEX                                        XMP exifEX
     1241  expressionmedia                               XMP ExpressionMedia
     1242  extensis                                      XMP extensis
     1243  fpv                                           XMP fpv
     1244  GAudio                                        XMP GAudio
     1245  GCamera                                       XMP GCamera
     1246  GCreations                                    XMP GCreations
     1247  GDepth                                        XMP GDepth
     1248  getty                                         XMP GettyImages
     1249  GFocus                                        XMP GFocus
     1250  GImage                                        XMP GImage
     1251  GPano                                         XMP GPano
     1252  GSpherical                                    XMP GSpherical
     1253  ics                                           XMP ics
    10471254  iptcCore                                      XMP iptcCore
    10481255  iptcExt                                       XMP iptcExt
     1256  LImage                                        XMP LImage
    10491257  lr                                            XMP Lightroom
    10501258  mediapro                                      XMP MediaPro
     
    10521260  MP                                            Microsoft MP
    10531261  MP1                                           Microsoft MP1
    1054   mwg-coll                                      XMP mwg_coll
    1055   mwg-kw                                        XMP mwg_kw
    1056   mwg-rs                                        XMP mwg_rs
     1262  mwg-coll                                      MWG Collections
     1263  mwg-kw                                        MWG Keywords
     1264  mwg-rs                                        MWG Regions
    10571265  pdf                                           XMP pdf
    10581266  pdfx                                          XMP pdfx
     
    10601268  photoshop                                     XMP photoshop
    10611269  PixelLive                                     XMP PixelLive
    1062   plus                                          XMP plus
     1270  plus                                          PLUS XMP
     1271  pmi                                           XMP pmi
    10631272  prism                                         XMP prism
    10641273  prl                                           XMP prl
     1274  prm                                           XMP prm
    10651275  pur                                           XMP pur
    10661276  rdf                                           XMP rdf
     
    10771287  xmpTPg                                        XMP xmpTPg
    10781288
     1289=head3 XMP aas Tags
     1290
     1291Apple Adjustment Settings used by iPhone/iPad.
     1292
     1293These tags belong to the ExifTool XMP-aas family 1 group.
     1294
     1295  Tag Name                                      Writable
     1296  --------                                      --------
     1297  AffineA                                       real
     1298  AffineB                                       real
     1299  AffineC                                       real
     1300  AffineD                                       real
     1301  AffineX                                       real
     1302  AffineY                                       real
     1303  CropH                                         integer/
     1304  CropW                                         integer/
     1305  CropX                                         integer/
     1306  CropY                                         integer/
     1307  Curve0x                                       real
     1308  Curve0y                                       real
     1309  Curve1x                                       real
     1310  Curve1y                                       real
     1311  Curve2x                                       real
     1312  Curve2y                                       real
     1313  Curve3x                                       real
     1314  Curve3y                                       real
     1315  Curve4x                                       real
     1316  Curve4y                                       real
     1317  FaceBalanceOrigI                              real
     1318  FaceBalanceOrigQ                              real
     1319  FaceBalanceStrength                           real
     1320  FaceBalanceWarmth                             real
     1321  Highlights                                    real/
     1322  Shadows                                       real/
     1323  Vibrance                                      real/
     1324
    10791325=head3 XMP acdsee Tags
    10801326
    1081 ACD Systems ACDSee schema tags.
     1327ACD Systems ACDSee namespace tags.
    10821328
    10831329(A note to software developers: Re-inventing your own private tags instead
    1084 of using the equivalent tags in standard XMP schemas defeats one of the most
    1085 valuable features of metadata: interoperability.  Your applications mumble
    1086 to themselves instead of speaking out for the rest of the world to hear.)
     1330of using the equivalent tags in standard XMP namespaces defeats one of the
     1331most valuable features of metadata: interoperability.  Your applications
     1332mumble to themselves instead of speaking out for the rest of the world to
     1333hear.)
     1334
     1335These tags belong to the ExifTool XMP-acdsee family 1 group.
    10871336
    10881337  Tag Name                                      Writable
     
    10911340  Caption                                       string/
    10921341  Categories                                    string/
    1093   Datetime                                      date/
     1342  Collections                                   string/
     1343  DateTime                                      date/
     1344  DPP                                           lang-alt/
     1345  EditStatus                                    string/
     1346  FixtureIdentifier                             string/
    10941347  Keywords                                      string/+
    10951348  Notes                                         string/
     1349  ObjectCycle                                   string/
     1350  OriginatingProgram                            string/
    10961351  Rating                                        real/
    1097   RPP                                           lang-alt
     1352  Rawrppused                                    boolean/
     1353  ReleaseDate                                   string/
     1354  ReleaseTime                                   string/
     1355  RPP                                           lang-alt/
     1356  Snapshots                                     string/+
    10981357  Tagged                                        boolean/
    10991358
    11001359=head3 XMP Album Tags
    11011360
    1102 Adobe Album schema tags.
     1361Adobe Album namespace tags.
     1362
     1363These tags belong to the ExifTool XMP-album family 1 group.
    11031364
    11041365  Tag Name                                      Writable
     
    11061367  Notes                                         string
    11071368
     1369=head3 XMP apple_fi Tags
     1370
     1371Face information tags written by the Apple iPhone 5 inside the mwg-rs
     1372RegionExtensions.
     1373
     1374These tags belong to the ExifTool XMP-apple-fi family 1 group.
     1375
     1376  Tag Name                                      Writable
     1377  --------                                      --------
     1378  AngleInfoRoll                                 integer
     1379  AngleInfoYaw                                  integer
     1380  ConfidenceLevel                               integer
     1381  FaceID                                        integer
     1382  TimeStamp                                     integer
     1383
    11081384=head3 XMP aux Tags
    11091385
    1110 Photoshop Auxiliary schema tags.
     1386Adobe-defined auxiliary EXIF tags.  This namespace existed in the XMP
     1387specification until it was dropped in 2012, presumably due to the
     1388introduction of the EXIF 2.3 for XMP specification and the exifEX namespace
     1389at this time.  For this reason, tags below with equivalents in the
     1390L<exifEX namespace|/XMP exifEX Tags> are avoided when writing.
     1391
     1392These tags belong to the ExifTool XMP-aux family 1 group.
    11111393
    11121394  Tag Name                                      Writable
    11131395  --------                                      --------
    11141396  ApproximateFocusDistance                      rational
     1397  DistortionCorrectionAlreadyApplied            boolean
    11151398  Firmware                                      string
    11161399  FlashCompensation                             rational
    11171400  ImageNumber                                   string
     1401  IsMergedHDR                                   boolean
     1402  IsMergedPanorama                              boolean
     1403  LateralChromaticAberrationCorrectionAlreadyApplied boolean
    11181404  Lens                                          string
     1405  LensDistortInfo                               string
    11191406  LensID                                        string
    1120   LensInfo                                      string
    1121   OwnerName                                     string
    1122   SerialNumber                                  string
     1407  LensInfo                                      string/
     1408  LensSerialNumber                              string/
     1409  OwnerName                                     string/
     1410  SerialNumber                                  string/
     1411  VignetteCorrectionAlreadyApplied              boolean
    11231412
    11241413=head3 XMP cc Tags
    11251414
    1126 Creative Commons schema tags.  (see
    1127 L<http://creativecommons.org/technology/xmp>)
     1415Creative Commons namespace tags.  Note that the CC specification for XMP is
     1416non-existent, so ExifTool must make some assumptions about the format of the
     1417specific properties in XMP (see L<http://creativecommons.org/ns>).
     1418
     1419These tags belong to the ExifTool XMP-cc family 1 group.
    11281420
    11291421  Tag Name                                      Writable
     
    11311423  AttributionName                               string
    11321424  AttributionURL                                string
     1425  DeprecatedOn                                  date
     1426  Jurisdiction                                  string
     1427  LegalCode                                     string
    11331428  License                                       string
    11341429  MorePermissions                               string
     1430  Permits                                       string+
     1431  Prohibits                                     string+
     1432  Requires                                      string+
     1433  UseGuidelines                                 string
    11351434
    11361435=head3 XMP cell Tags
    11371436
    11381437Location tags written by some Sony Ericsson phones.
     1438
     1439These tags belong to the ExifTool XMP-cell family 1 group.
    11391440
    11401441  Tag Name                                      Writable
     
    11471448  CellR                                         string
    11481449
     1450=head3 XMP crd Tags
     1451
     1452Adobe Camera Raw Defaults tags.
     1453
     1454These tags belong to the ExifTool XMP-crd family 1 group.
     1455
     1456  Tag Name                                      Writable
     1457  --------                                      --------
     1458  AlreadyApplied                                boolean/
     1459  AutoBrightness                                boolean/
     1460  AutoContrast                                  boolean/
     1461  AutoExposure                                  boolean/
     1462  AutoLateralCA                                 integer/
     1463  AutoShadows                                   boolean/
     1464  AutoTone                                      boolean/
     1465  AutoToneDigest                                string/
     1466  AutoToneDigestNoSat                           string/
     1467  AutoWhiteVersion                              integer/
     1468  Blacks2012                                    integer/
     1469  BlueHue                                       integer/
     1470  BlueSaturation                                integer/
     1471  Brightness                                    integer/
     1472  CameraModelRestriction                        string/
     1473  CameraProfile                                 string/
     1474  CameraProfileDigest                           string/
     1475  ChromaticAberrationB                          integer/
     1476  ChromaticAberrationR                          integer/
     1477  CircularGradientBasedCorrections              Correction Struct+
     1478  CircGradBasedCorrActive                       boolean/_
     1479  CircGradBasedCorrAmount                       real/_
     1480  CircGradBasedCorrMasks                        CorrectionMask Struct_+
     1481  CircGradBasedCorrMaskAlpha                    real/_
     1482  CircGradBasedCorrMaskAngle                    real/_
     1483  CircGradBasedCorrMaskBottom                   real/_
     1484  CircGradBasedCorrMaskCenterValue              real/_
     1485  CircGradBasedCorrMaskCenterWeight             real/_
     1486  CircGradBasedCorrMaskDabs                     string/_
     1487  CircGradBasedCorrMaskFeather                  real/_
     1488  CircGradBasedCorrMaskFlipped                  boolean/_
     1489  CircGradBasedCorrMaskFlow                     real/_
     1490  CircGradBasedCorrMaskFullX                    real/_
     1491  CircGradBasedCorrMaskFullY                    real/_
     1492  CircGradBasedCorrMaskLeft                     real/_
     1493  CircGradBasedCorrMaskValue                    real/_
     1494  CircGradBasedCorrMaskMidpoint                 real/_
     1495  CircGradBasedCorrMaskPerimeterValue           real/_
     1496  CircGradBasedCorrMaskRadius                   real/_
     1497  CircGradBasedCorrMaskRight                    real/_
     1498  CircGradBasedCorrMaskRoundness                real/_
     1499  CircGradBasedCorrMaskSizeX                    real/_
     1500  CircGradBasedCorrMaskSizeY                    real/_
     1501  CircGradBasedCorrMaskTop                      real/_
     1502  CircGradBasedCorrMaskVersion                  integer/_
     1503  CircGradBasedCorrMaskWhat                     string/_
     1504  CircGradBasedCorrMaskX                        real/_
     1505  CircGradBasedCorrMaskY                        real/_
     1506  CircGradBasedCorrMaskZeroX                    real/_
     1507  CircGradBasedCorrMaskZeroY                    real/_
     1508  CircGradBasedCorrRangeMask                    CorrectionRangeMask Struct_+
     1509  CircGradBasedCorrRangeMaskColorAmount         real/_+
     1510  CircGradBasedCorrRangeMaskDepthFeather        real/_+
     1511  CircGradBasedCorrRangeMaskDepthMax            real/_+
     1512  CircGradBasedCorrRangeMaskDepthMin            real/_+
     1513  CircGradBasedCorrRangeMaskLumFeather          real/_+
     1514  CircGradBasedCorrRangeMaskLumMax              real/_+
     1515  CircGradBasedCorrRangeMaskLumMin              real/_+
     1516  CircGradBasedCorrRangeMaskType                string/_+
     1517  CircGradBasedCorrRangeMaskVersion             string/_+
     1518  CircGradBasedCorrBlacks2012                   real/_
     1519  CircGradBasedCorrBrightness                   real/_
     1520  CircGradBasedCorrClarity                      real/_
     1521  CircGradBasedCorrClarity2012                  real/_
     1522  CircGradBasedCorrContrast                     real/_
     1523  CircGradBasedCorrContrast2012                 real/_
     1524  CircGradBasedCorrDefringe                     real/_
     1525  CircGradBasedCorrDehaze                       real/_
     1526  CircGradBasedCorrExposure                     real/_
     1527  CircGradBasedCorrExposure2012                 real/_
     1528  CircGradBasedCorrHighlights2012               real/_
     1529  CircGradBasedCorrHue                          real/_
     1530  CircGradBasedCorrLuminanceNoise               real/_
     1531  CircGradBasedCorrMoire                        real/_
     1532  CircGradBasedCorrSaturation                   real/_
     1533  CircGradBasedCorrShadows2012                  real/_
     1534  CircGradBasedCorrSharpness                    real/_
     1535  CircGradBasedCorrTemperature                  real/_
     1536  CircGradBasedCorrTexture                      real/_
     1537  CircGradBasedCorrTint                         real/_
     1538  CircGradBasedCorrHue                          real/_
     1539  CircGradBasedCorrSaturation                   real/_
     1540  CircGradBasedCorrWhites2012                   real/_
     1541  CircGradBasedCorrWhat                         string/_
     1542  Clarity                                       integer/
     1543  Clarity2012                                   integer/
     1544  ClipboardAspectRatio                          integer/
     1545  ClipboardOrientation                          integer/
     1546  Cluster                                       string/
     1547  ColorGradeBlending                            integer/
     1548  ColorGradeGlobalHue                           integer/
     1549  ColorGradeGlobalLum                           integer/
     1550  ColorGradeGlobalSat                           integer/
     1551  ColorGradeHighlightLum                        integer/
     1552  ColorGradeMidtoneHue                          integer/
     1553  ColorGradeMidtoneLum                          integer/
     1554  ColorGradeMidtoneSat                          integer/
     1555  ColorGradeShadowLum                           integer/
     1556  ColorNoiseReduction                           integer/
     1557  ColorNoiseReductionDetail                     integer/
     1558  ColorNoiseReductionSmoothness                 integer/
     1559  ContactInfo                                   string/
     1560  Contrast                                      integer/
     1561  Contrast2012                                  integer/
     1562  Converter                                     string/
     1563  ConvertToGrayscale                            boolean/
     1564  Copyright                                     string/
     1565  CropAngle                                     real/
     1566  CropBottom                                    real/
     1567  CropConstrainToWarp                           integer/
     1568  CropHeight                                    real/
     1569  CropLeft                                      real/
     1570  CropRight                                     real/
     1571  CropTop                                       real/
     1572  CropUnit                                      integer/
     1573  CropUnits                                     integer/
     1574  CropWidth                                     real/
     1575  DefaultAutoGray                               boolean/
     1576  DefaultAutoTone                               boolean/
     1577  DefaultsSpecificToISO                         boolean/
     1578  DefaultsSpecificToSerial                      boolean/
     1579  Defringe                                      integer/
     1580  DefringeGreenAmount                           integer/
     1581  DefringeGreenHueHi                            integer/
     1582  DefringeGreenHueLo                            integer/
     1583  DefringePurpleAmount                          integer/
     1584  DefringePurpleHueHi                           integer/
     1585  DefringePurpleHueLo                           integer/
     1586  Dehaze                                        real/
     1587  Description                                   lang-alt/
     1588  DNGIgnoreSidecars                             boolean/
     1589  Exposure                                      real/
     1590  Exposure2012                                  real/
     1591  FillLight                                     integer/
     1592  GradientBasedCorrections                      Correction Struct+
     1593  GradientBasedCorrActive                       boolean/_
     1594  GradientBasedCorrAmount                       real/_
     1595  GradientBasedCorrMasks                        CorrectionMask Struct_+
     1596  GradientBasedCorrMaskAlpha                    real/_
     1597  GradientBasedCorrMaskAngle                    real/_
     1598  GradientBasedCorrMaskBottom                   real/_
     1599  GradientBasedCorrMaskCenterValue              real/_
     1600  GradientBasedCorrMaskCenterWeight             real/_
     1601  GradientBasedCorrMaskDabs                     string/_
     1602  GradientBasedCorrMaskFeather                  real/_
     1603  GradientBasedCorrMaskFlipped                  boolean/_
     1604  GradientBasedCorrMaskFlow                     real/_
     1605  GradientBasedCorrMaskFullX                    real/_
     1606  GradientBasedCorrMaskFullY                    real/_
     1607  GradientBasedCorrMaskLeft                     real/_
     1608  GradientBasedCorrMaskValue                    real/_
     1609  GradientBasedCorrMaskMidpoint                 real/_
     1610  GradientBasedCorrMaskPerimeterValue           real/_
     1611  GradientBasedCorrMaskRadius                   real/_
     1612  GradientBasedCorrMaskRight                    real/_
     1613  GradientBasedCorrMaskRoundness                real/_
     1614  GradientBasedCorrMaskSizeX                    real/_
     1615  GradientBasedCorrMaskSizeY                    real/_
     1616  GradientBasedCorrMaskTop                      real/_
     1617  GradientBasedCorrMaskVersion                  integer/_
     1618  GradientBasedCorrMaskWhat                     string/_
     1619  GradientBasedCorrMaskX                        real/_
     1620  GradientBasedCorrMaskY                        real/_
     1621  GradientBasedCorrMaskZeroX                    real/_
     1622  GradientBasedCorrMaskZeroY                    real/_
     1623  GradientBasedCorrRangeMask                    CorrectionRangeMask Struct_+
     1624  GradientBasedCorrRangeMaskColorAmount         real/_+
     1625  GradientBasedCorrRangeMaskDepthFeather        real/_+
     1626  GradientBasedCorrRangeMaskDepthMax            real/_+
     1627  GradientBasedCorrRangeMaskDepthMin            real/_+
     1628  GradientBasedCorrRangeMaskLumFeather          real/_+
     1629  GradientBasedCorrRangeMaskLumMax              real/_+
     1630  GradientBasedCorrRangeMaskLumMin              real/_+
     1631  GradientBasedCorrRangeMaskType                string/_+
     1632  GradientBasedCorrRangeMaskVersion             string/_+
     1633  GradientBasedCorrBlacks2012                   real/_
     1634  GradientBasedCorrBrightness                   real/_
     1635  GradientBasedCorrClarity                      real/_
     1636  GradientBasedCorrClarity2012                  real/_
     1637  GradientBasedCorrContrast                     real/_
     1638  GradientBasedCorrContrast2012                 real/_
     1639  GradientBasedCorrDefringe                     real/_
     1640  GradientBasedCorrDehaze                       real/_
     1641  GradientBasedCorrExposure                     real/_
     1642  GradientBasedCorrExposure2012                 real/_
     1643  GradientBasedCorrHighlights2012               real/_
     1644  GradientBasedCorrHue                          real/_
     1645  GradientBasedCorrLuminanceNoise               real/_
     1646  GradientBasedCorrMoire                        real/_
     1647  GradientBasedCorrSaturation                   real/_
     1648  GradientBasedCorrShadows2012                  real/_
     1649  GradientBasedCorrSharpness                    real/_
     1650  GradientBasedCorrTemperature                  real/_
     1651  GradientBasedCorrTexture                      real/_
     1652  GradientBasedCorrTint                         real/_
     1653  GradientBasedCorrHue                          real/_
     1654  GradientBasedCorrSaturation                   real/_
     1655  GradientBasedCorrWhites2012                   real/_
     1656  GradientBasedCorrWhat                         string/_
     1657  GrainAmount                                   integer/
     1658  GrainFrequency                                integer/
     1659  GrainSeed                                     integer/
     1660  GrainSize                                     integer/
     1661  GrayMixerAqua                                 integer/
     1662  GrayMixerBlue                                 integer/
     1663  GrayMixerGreen                                integer/
     1664  GrayMixerMagenta                              integer/
     1665  GrayMixerOrange                               integer/
     1666  GrayMixerPurple                               integer/
     1667  GrayMixerRed                                  integer/
     1668  GrayMixerYellow                               integer/
     1669  GreenHue                                      integer/
     1670  GreenSaturation                               integer/
     1671  Group                                         lang-alt/
     1672  HasCrop                                       boolean/
     1673  HasSettings                                   boolean/
     1674  Highlight2012                                 integer/
     1675  HighlightRecovery                             integer/
     1676  Highlights2012                                integer/
     1677  HueAdjustmentAqua                             integer/
     1678  HueAdjustmentBlue                             integer/
     1679  HueAdjustmentGreen                            integer/
     1680  HueAdjustmentMagenta                          integer/
     1681  HueAdjustmentOrange                           integer/
     1682  HueAdjustmentPurple                           integer/
     1683  HueAdjustmentRed                              integer/
     1684  HueAdjustmentYellow                           integer/
     1685  IncrementalTemperature                        integer/
     1686  IncrementalTint                               integer/
     1687  JPEGHandling                                  string/
     1688  LensManualDistortionAmount                    integer/
     1689  LensProfileChromaticAberrationScale           integer/
     1690  LensProfileDigest                             string/
     1691  LensProfileDistortionScale                    integer/
     1692  LensProfileEnable                             integer/
     1693  LensProfileFilename                           string/
     1694  LensProfileIsEmbedded                         boolean/
     1695  LensProfileMatchKeyCameraModelName            string/
     1696  LensProfileMatchKeyExifMake                   string/
     1697  LensProfileMatchKeyExifModel                  string/
     1698  LensProfileMatchKeyIsRaw                      boolean/
     1699  LensProfileMatchKeyLensID                     string/
     1700  LensProfileMatchKeyLensInfo                   string/
     1701  LensProfileMatchKeyLensName                   string/
     1702  LensProfileMatchKeySensorFormatFactor         real/
     1703  LensProfileName                               string/
     1704  LensProfileSetup                              string/
     1705  LensProfileVignettingScale                    integer/
     1706  Look                                          Look Struct
     1707  LookAmount                                    string/_
     1708  LookCluster                                   string/_
     1709  LookCopyright                                 string/_
     1710  LookGroup                                     lang-alt/_
     1711  LookName                                      string/
     1712  LookParameters                                LookParms Struct_
     1713  LookParametersCameraProfile                   string/_
     1714  LookParametersClarity2012                     string/_
     1715  LookParametersConvertToGrayscale              string/_
     1716  LookParametersLookTable                       string/_
     1717  LookParametersProcessVersion                  string/_
     1718  LookParametersToneCurvePV2012                 string/_+
     1719  LookParametersVersion                         string/_
     1720  LookSupportsAmount                            string/_
     1721  LookSupportsMonochrome                        string/_
     1722  LookSupportsOutputReferred                    string/_
     1723  LookUUID                                      string/_
     1724  LuminanceAdjustmentAqua                       integer/
     1725  LuminanceAdjustmentBlue                       integer/
     1726  LuminanceAdjustmentGreen                      integer/
     1727  LuminanceAdjustmentMagenta                    integer/
     1728  LuminanceAdjustmentOrange                     integer/
     1729  LuminanceAdjustmentPurple                     integer/
     1730  LuminanceAdjustmentRed                        integer/
     1731  LuminanceAdjustmentYellow                     integer/
     1732  LuminanceNoiseReductionContrast               integer/
     1733  LuminanceNoiseReductionDetail                 integer/
     1734  LuminanceSmoothing                            integer/
     1735  MoireFilter                                   string/
     1736  Name                                          lang-alt/
     1737  NegativeCacheLargePreviewSize                 integer/
     1738  NegativeCacheMaximumSize                      real/
     1739  NegativeCachePath                             string/
     1740  OverrideLookVignette                          boolean/
     1741  PaintBasedCorrections                         Correction Struct+
     1742  PaintCorrectionActive                         boolean/_
     1743  PaintCorrectionAmount                         real/_
     1744  PaintBasedCorrectionMasks                     CorrectionMask Struct_+
     1745  PaintCorrectionMaskAlpha                      real/_
     1746  PaintCorrectionMaskAngle                      real/_
     1747  PaintCorrectionMaskBottom                     real/_
     1748  PaintCorrectionMaskCenterValue                real/_
     1749  PaintCorrectionMaskCenterWeight               real/_
     1750  PaintCorrectionMaskDabs                       string/_
     1751  PaintCorrectionMaskFeather                    real/_
     1752  PaintCorrectionMaskFlipped                    boolean/_
     1753  PaintCorrectionMaskFlow                       real/_
     1754  PaintCorrectionMaskFullX                      real/_
     1755  PaintCorrectionMaskFullY                      real/_
     1756  PaintCorrectionMaskLeft                       real/_
     1757  PaintCorrectionMaskValue                      real/_
     1758  PaintCorrectionMaskMidpoint                   real/_
     1759  PaintCorrectionMaskPerimeterValue             real/_
     1760  PaintCorrectionMaskRadius                     real/_
     1761  PaintCorrectionMaskRight                      real/_
     1762  PaintCorrectionMaskRoundness                  real/_
     1763  PaintCorrectionMaskSizeX                      real/_
     1764  PaintCorrectionMaskSizeY                      real/_
     1765  PaintCorrectionMaskTop                        real/_
     1766  PaintCorrectionMaskVersion                    integer/_
     1767  PaintCorrectionMaskWhat                       string/_
     1768  PaintCorrectionMaskX                          real/_
     1769  PaintCorrectionMaskY                          real/_
     1770  PaintCorrectionMaskZeroX                      real/_
     1771  PaintCorrectionMaskZeroY                      real/_
     1772  PaintCorrectionRangeMask                      CorrectionRangeMask Struct_+
     1773  PaintCorrectionRangeMaskColorAmount           real/_+
     1774  PaintCorrectionRangeMaskDepthFeather          real/_+
     1775  PaintCorrectionRangeMaskDepthMax              real/_+
     1776  PaintCorrectionRangeMaskDepthMin              real/_+
     1777  PaintCorrectionRangeMaskLumFeather            real/_+
     1778  PaintCorrectionRangeMaskLumMax                real/_+
     1779  PaintCorrectionRangeMaskLumMin                real/_+
     1780  PaintCorrectionRangeMaskType                  string/_+
     1781  PaintCorrectionRangeMaskVersion               string/_+
     1782  PaintCorrectionBlacks2012                     real/_
     1783  PaintCorrectionBrightness                     real/_
     1784  PaintCorrectionClarity                        real/_
     1785  PaintCorrectionClarity2012                    real/_
     1786  PaintCorrectionContrast                       real/_
     1787  PaintCorrectionContrast2012                   real/_
     1788  PaintCorrectionDefringe                       real/_
     1789  PaintCorrectionDehaze                         real/_
     1790  PaintCorrectionExposure                       real/_
     1791  PaintCorrectionExposure2012                   real/_
     1792  PaintCorrectionHighlights2012                 real/_
     1793  PaintCorrectionHue                            real/_
     1794  PaintCorrectionLuminanceNoise                 real/_
     1795  PaintCorrectionMoire                          real/_
     1796  PaintCorrectionSaturation                     real/_
     1797  PaintCorrectionShadows2012                    real/_
     1798  PaintCorrectionSharpness                      real/_
     1799  PaintCorrectionTemperature                    real/_
     1800  PaintCorrectionTexture                        real/_
     1801  PaintCorrectionTint                           real/_
     1802  PaintCorrectionHue                            real/_
     1803  PaintCorrectionSaturation                     real/_
     1804  PaintCorrectionWhites2012                     real/_
     1805  PaintCorrectionWhat                           string/_
     1806  ParametricDarks                               integer/
     1807  ParametricHighlights                          integer/
     1808  ParametricHighlightSplit                      integer/
     1809  ParametricLights                              integer/
     1810  ParametricMidtoneSplit                        integer/
     1811  ParametricShadows                             integer/
     1812  ParametricShadowSplit                         integer/
     1813  PerspectiveAspect                             integer/
     1814  PerspectiveHorizontal                         integer/
     1815  PerspectiveRotate                             real/
     1816  PerspectiveScale                              integer/
     1817  PerspectiveUpright                            integer/
     1818  PerspectiveVertical                           integer/
     1819  PerspectiveX                                  real/
     1820  PerspectiveY                                  real/
     1821  PostCropVignetteAmount                        integer/
     1822  PostCropVignetteFeather                       integer/
     1823  PostCropVignetteHighlightContrast             integer/
     1824  PostCropVignetteMidpoint                      integer/
     1825  PostCropVignetteRoundness                     integer/
     1826  PostCropVignetteStyle                         integer/
     1827  PresetType                                    string/
     1828  ProcessVersion                                string/
     1829  RawFileName                                   string/
     1830  RedEyeInfo                                    string/+
     1831  RedHue                                        integer/
     1832  RedSaturation                                 integer/
     1833  RetouchAreas                                  RetouchArea Struct+
     1834  RetouchAreaFeather                            real/_
     1835  RetouchAreaMasks                              CorrectionMask Struct_+
     1836  RetouchAreaMaskAlpha                          real/_
     1837  RetouchAreaMaskAngle                          real/_
     1838  RetouchAreaMaskBottom                         real/_
     1839  RetouchAreaMaskCenterValue                    real/_
     1840  RetouchAreaMaskCenterWeight                   real/_
     1841  RetouchAreaMaskDabs                           string/_
     1842  RetouchAreaMaskFeather                        real/_
     1843  RetouchAreaMaskFlipped                        boolean/_
     1844  RetouchAreaMaskFlow                           real/_
     1845  RetouchAreaMaskFullX                          real/_
     1846  RetouchAreaMaskFullY                          real/_
     1847  RetouchAreaMaskLeft                           real/_
     1848  RetouchAreaMaskValue                          real/_
     1849  RetouchAreaMaskMidpoint                       real/_
     1850  RetouchAreaMaskPerimeterValue                 real/_
     1851  RetouchAreaMaskRadius                         real/_
     1852  RetouchAreaMaskRight                          real/_
     1853  RetouchAreaMaskRoundness                      real/_
     1854  RetouchAreaMaskSizeX                          real/_
     1855  RetouchAreaMaskSizeY                          real/_
     1856  RetouchAreaMaskTop                            real/_
     1857  RetouchAreaMaskVersion                        integer/_
     1858  RetouchAreaMaskWhat                           string/_
     1859  RetouchAreaMaskX                              real/_
     1860  RetouchAreaMaskY                              real/_
     1861  RetouchAreaMaskZeroX                          real/_
     1862  RetouchAreaMaskZeroY                          real/_
     1863  RetouchAreaMethod                             string/_
     1864  RetouchAreaOffsetY                            real/_
     1865  RetouchAreaOpacity                            real/_
     1866  RetouchAreaSeed                               integer/_
     1867  RetouchAreaSourceState                        string/_
     1868  RetouchAreaSourceX                            real/_
     1869  RetouchAreaSpotType                           string/_
     1870  RetouchInfo                                   string/+
     1871  Saturation                                    integer/
     1872  SaturationAdjustmentAqua                      integer/
     1873  SaturationAdjustmentBlue                      integer/
     1874  SaturationAdjustmentGreen                     integer/
     1875  SaturationAdjustmentMagenta                   integer/
     1876  SaturationAdjustmentOrange                    integer/
     1877  SaturationAdjustmentPurple                    integer/
     1878  SaturationAdjustmentRed                       integer/
     1879  SaturationAdjustmentYellow                    integer/
     1880  Shadows                                       integer/
     1881  Shadows2012                                   integer/
     1882  ShadowTint                                    integer/
     1883  SharpenDetail                                 integer/
     1884  SharpenEdgeMasking                            integer/
     1885  SharpenRadius                                 real/
     1886  Sharpness                                     integer/
     1887  ShortName                                     lang-alt/
     1888  Smoothness                                    integer/
     1889  SortName                                      lang-alt/
     1890  SplitToningBalance                            integer/
     1891  SplitToningHighlightHue                       integer/
     1892  SplitToningHighlightSaturation                integer/
     1893  SplitToningShadowHue                          integer/
     1894  SplitToningShadowSaturation                   integer/
     1895  SupportsAmount                                boolean/
     1896  SupportsColor                                 boolean/
     1897  SupportsHighDynamicRange                      boolean/
     1898  SupportsMonochrome                            boolean/
     1899  SupportsNormalDynamicRange                    boolean/
     1900  SupportsOutputReferred                        boolean/
     1901  SupportsSceneReferred                         boolean/
     1902  ColorTemperature                              integer/
     1903  Texture                                       integer/
     1904  TIFFHandling                                  string/
     1905  Tint                                          integer/
     1906  ToggleStyleAmount                             integer/
     1907  ToggleStyleDigest                             string/
     1908  ToneCurve                                     string/+
     1909  ToneCurveBlue                                 string/+
     1910  ToneCurveGreen                                string/+
     1911  ToneCurveName                                 string/
     1912  ToneCurveName2012                             string/
     1913  ToneCurvePV2012                               string/+
     1914  ToneCurvePV2012Blue                           string/+
     1915  ToneCurvePV2012Green                          string/+
     1916  ToneCurvePV2012Red                            string/+
     1917  ToneCurveRed                                  string/+
     1918  ToneMapStrength                               real/
     1919  UprightCenterMode                             integer/
     1920  UprightCenterNormX                            real/
     1921  UprightCenterNormY                            real/
     1922  UprightDependentDigest                        string/
     1923  UprightFocalLength35mm                        real/
     1924  UprightFocalMode                              integer/
     1925  UprightFourSegmentsCount                      integer/
     1926  UprightPreview                                boolean/
     1927  UprightTransform_0                            string/
     1928  UprightTransform_1                            string/
     1929  UprightTransform_2                            string/
     1930  UprightTransform_3                            string/
     1931  UprightTransform_4                            string/
     1932  UprightTransform_5                            string/
     1933  UprightTransformCount                         integer/
     1934  UprightVersion                                integer/
     1935  UUID                                          string/
     1936  Version                                       string/
     1937  Vibrance                                      integer/
     1938  VignetteAmount                                integer/
     1939  VignetteMidpoint                              integer/
     1940  What                                          string/
     1941  WhiteBalance                                  string/
     1942  Whites2012                                    integer/
     1943
     1944=head3 XMP Correction Struct
     1945
     1946  Field Name                                    Writable
     1947  ----------                                    --------
     1948  CorrectionActive                              boolean
     1949  CorrectionAmount                              real
     1950  CorrectionMasks                               CorrectionMask Struct+
     1951  CorrectionRangeMask                           CorrectionRangeMask Struct
     1952  LocalBlacks2012                               real
     1953  LocalBrightness                               real
     1954  LocalClarity                                  real
     1955  LocalClarity2012                              real
     1956  LocalContrast                                 real
     1957  LocalContrast2012                             real
     1958  LocalDefringe                                 real
     1959  LocalDehaze                                   real
     1960  LocalExposure                                 real
     1961  LocalExposure2012                             real
     1962  LocalHighlights2012                           real
     1963  LocalHue                                      real
     1964  LocalLuminanceNoise                           real
     1965  LocalMoire                                    real
     1966  LocalSaturation                               real
     1967  LocalShadows2012                              real
     1968  LocalSharpness                                real
     1969  LocalTemperature                              real
     1970  LocalTexture                                  real
     1971  LocalTint                                     real
     1972  LocalToningHue                                real
     1973  LocalToningSaturation                         real
     1974  LocalWhites2012                               real
     1975  What                                          string
     1976
     1977=head3 XMP CorrectionMask Struct
     1978
     1979  Field Name                                    Writable
     1980  ----------                                    --------
     1981  Alpha                                         real
     1982  Angle                                         real
     1983  Bottom                                        real
     1984  CenterValue                                   real
     1985  CenterWeight                                  real
     1986  Dabs                                          string+
     1987  Feather                                       real
     1988  Flipped                                       boolean
     1989  Flow                                          real
     1990  FullX                                         real
     1991  FullY                                         real
     1992  Left                                          real
     1993  MaskValue                                     real
     1994  Midpoint                                      real
     1995  PerimeterValue                                real
     1996  Radius                                        real
     1997  Right                                         real
     1998  Roundness                                     real
     1999  SizeX                                         real
     2000  SizeY                                         real
     2001  Top                                           real
     2002  Version                                       integer
     2003  What                                          string
     2004  X                                             real
     2005  Y                                             real
     2006  ZeroX                                         real
     2007  ZeroY                                         real
     2008
     2009=head3 XMP CorrectionRangeMask Struct
     2010
     2011  Field Name                                    Writable
     2012  ----------                                    --------
     2013  ColorAmount                                   real
     2014  DepthFeather                                  real
     2015  DepthMax                                      real
     2016  DepthMin                                      real
     2017  LumFeather                                    real
     2018  LumMax                                        real
     2019  LumMin                                        real
     2020  Type                                          string
     2021  Version                                       string
     2022
     2023=head3 XMP Look Struct
     2024
     2025  Field Name                                    Writable
     2026  ----------                                    --------
     2027  Amount                                        string
     2028  Cluster                                       string
     2029  Copyright                                     string
     2030  Group                                         lang-alt
     2031  Name                                          string
     2032  Parameters                                    LookParms Struct
     2033  SupportsAmount                                string
     2034  SupportsMonochrome                            string
     2035  SupportsOutputReferred                        string
     2036  UUID                                          string
     2037
     2038=head3 XMP LookParms Struct
     2039
     2040  Field Name                                    Writable
     2041  ----------                                    --------
     2042  CameraProfile                                 string
     2043  Clarity2012                                   string
     2044  ConvertToGrayscale                            string
     2045  LookTable                                     string
     2046  ProcessVersion                                string
     2047  ToneCurvePV2012                               string+
     2048  Version                                       string
     2049
     2050=head3 XMP RetouchArea Struct
     2051
     2052  Field Name                                    Writable
     2053  ----------                                    --------
     2054  Feather                                       real
     2055  Masks                                         CorrectionMask Struct+
     2056  Method                                        string
     2057  OffsetY                                       real
     2058  Opacity                                       real
     2059  Seed                                          integer
     2060  SourceState                                   string
     2061  SourceX                                       real
     2062  SpotType                                      string
     2063
     2064=head3 XMP creatorAtom Tags
     2065
     2066Adobe creatorAtom tags, written by After Effects.
     2067
     2068These tags belong to the ExifTool XMP-creatorAtom family 1 group.
     2069
     2070  Tag Name                                      Writable
     2071  --------                                      --------
     2072  AeProjectLink                                 AEProjectLink Struct
     2073  AeProjectLinkCompositionID                    string_
     2074  AeProjectLinkFullPath                         string_
     2075  AeProjectLinkRenderOutputModuleIndex          string_
     2076  AeProjectLinkRenderQueueItemID                string_
     2077  AeProjectLinkRenderTimeStamp                  integer_
     2078  MacAtom                                       MacAtom Struct
     2079  MacAtomApplicationCode                        string_
     2080  MacAtomInvocationAppleEvent                   string_
     2081  MacAtomPosixProjectPath                       string_
     2082  WindowsAtom                                   WindowsAtom Struct
     2083  WindowsAtomExtension                          string_
     2084  WindowsAtomInvocationFlags                    string_
     2085  WindowsAtomUncProjectPath                     string_
     2086
     2087=head3 XMP AEProjectLink Struct
     2088
     2089  Field Name                                    Writable
     2090  ----------                                    --------
     2091  CompositionID                                 string
     2092  FullPath                                      string
     2093  RenderOutputModuleIndex                       string
     2094  RenderQueueItemID                             string
     2095  RenderTimeStamp                               integer
     2096
     2097=head3 XMP MacAtom Struct
     2098
     2099  Field Name                                    Writable
     2100  ----------                                    --------
     2101  ApplicationCode                               string
     2102  InvocationAppleEvent                          string
     2103  PosixProjectPath                              string
     2104
     2105=head3 XMP WindowsAtom Struct
     2106
     2107  Field Name                                    Writable
     2108  ----------                                    --------
     2109  Extension                                     string
     2110  InvocationFlags                               string
     2111  UncProjectPath                                string
     2112
    11492113=head3 XMP crs Tags
    11502114
    1151 Photoshop Camera Raw Schema tags.
     2115Photoshop Camera Raw namespace tags.  It is a shame that Adobe pollutes the
     2116metadata space with these incredibly bulky image editing parameters.
     2117
     2118These tags belong to the ExifTool XMP-crs family 1 group.
    11522119
    11532120  Tag Name                                      Writable
     
    11572124  AutoContrast                                  boolean
    11582125  AutoExposure                                  boolean
     2126  AutoLateralCA                                 integer
    11592127  AutoShadows                                   boolean
     2128  AutoTone                                      boolean
     2129  AutoToneDigest                                string
     2130  AutoToneDigestNoSat                           string
     2131  AutoWhiteVersion                              integer
     2132  Blacks2012                                    integer
    11602133  BlueHue                                       integer
    11612134  BlueSaturation                                integer
    11622135  Brightness                                    integer
     2136  CameraModelRestriction                        string
    11632137  CameraProfile                                 string
    11642138  CameraProfileDigest                           string
    11652139  ChromaticAberrationB                          integer
    11662140  ChromaticAberrationR                          integer
     2141  CircularGradientBasedCorrections              Correction Struct+
     2142  CircGradBasedCorrActive                       boolean_
     2143  CircGradBasedCorrAmount                       real_
     2144  CircGradBasedCorrMasks                        CorrectionMask Struct_+
     2145  CircGradBasedCorrMaskAlpha                    real_
     2146  CircGradBasedCorrMaskAngle                    real_
     2147  CircGradBasedCorrMaskBottom                   real_
     2148  CircGradBasedCorrMaskCenterValue              real_
     2149  CircGradBasedCorrMaskCenterWeight             real_
     2150  CircGradBasedCorrMaskDabs                     string_
     2151  CircGradBasedCorrMaskFeather                  real_
     2152  CircGradBasedCorrMaskFlipped                  boolean_
     2153  CircGradBasedCorrMaskFlow                     real_
     2154  CircGradBasedCorrMaskFullX                    real_
     2155  CircGradBasedCorrMaskFullY                    real_
     2156  CircGradBasedCorrMaskLeft                     real_
     2157  CircGradBasedCorrMaskValue                    real_
     2158  CircGradBasedCorrMaskMidpoint                 real_
     2159  CircGradBasedCorrMaskPerimeterValue           real_
     2160  CircGradBasedCorrMaskRadius                   real_
     2161  CircGradBasedCorrMaskRight                    real_
     2162  CircGradBasedCorrMaskRoundness                real_
     2163  CircGradBasedCorrMaskSizeX                    real_
     2164  CircGradBasedCorrMaskSizeY                    real_
     2165  CircGradBasedCorrMaskTop                      real_
     2166  CircGradBasedCorrMaskVersion                  integer_
     2167  CircGradBasedCorrMaskWhat                     string_
     2168  CircGradBasedCorrMaskX                        real_
     2169  CircGradBasedCorrMaskY                        real_
     2170  CircGradBasedCorrMaskZeroX                    real_
     2171  CircGradBasedCorrMaskZeroY                    real_
     2172  CircGradBasedCorrRangeMask                    CorrectionRangeMask Struct_+
     2173  CircGradBasedCorrRangeMaskColorAmount         real_+
     2174  CircGradBasedCorrRangeMaskDepthFeather        real_+
     2175  CircGradBasedCorrRangeMaskDepthMax            real_+
     2176  CircGradBasedCorrRangeMaskDepthMin            real_+
     2177  CircGradBasedCorrRangeMaskLumFeather          real_+
     2178  CircGradBasedCorrRangeMaskLumMax              real_+
     2179  CircGradBasedCorrRangeMaskLumMin              real_+
     2180  CircGradBasedCorrRangeMaskType                string_+
     2181  CircGradBasedCorrRangeMaskVersion             string_+
     2182  CircGradBasedCorrBlacks2012                   real_
     2183  CircGradBasedCorrBrightness                   real_
     2184  CircGradBasedCorrClarity                      real_
     2185  CircGradBasedCorrClarity2012                  real_
     2186  CircGradBasedCorrContrast                     real_
     2187  CircGradBasedCorrContrast2012                 real_
     2188  CircGradBasedCorrDefringe                     real_
     2189  CircGradBasedCorrDehaze                       real_
     2190  CircGradBasedCorrExposure                     real_
     2191  CircGradBasedCorrExposure2012                 real_
     2192  CircGradBasedCorrHighlights2012               real_
     2193  CircGradBasedCorrHue                          real_
     2194  CircGradBasedCorrLuminanceNoise               real_
     2195  CircGradBasedCorrMoire                        real_
     2196  CircGradBasedCorrSaturation                   real_
     2197  CircGradBasedCorrShadows2012                  real_
     2198  CircGradBasedCorrSharpness                    real_
     2199  CircGradBasedCorrTemperature                  real_
     2200  CircGradBasedCorrTexture                      real_
     2201  CircGradBasedCorrTint                         real_
     2202  CircGradBasedCorrHue                          real_
     2203  CircGradBasedCorrSaturation                   real_
     2204  CircGradBasedCorrWhites2012                   real_
     2205  CircGradBasedCorrWhat                         string_
    11672206  Clarity                                       integer
     2207  Clarity2012                                   integer
     2208  ClipboardAspectRatio                          integer
     2209  ClipboardOrientation                          integer
     2210  Cluster                                       string
     2211  ColorGradeBlending                            integer
     2212  ColorGradeGlobalHue                           integer
     2213  ColorGradeGlobalLum                           integer
     2214  ColorGradeGlobalSat                           integer
     2215  ColorGradeHighlightLum                        integer
     2216  ColorGradeMidtoneHue                          integer
     2217  ColorGradeMidtoneLum                          integer
     2218  ColorGradeMidtoneSat                          integer
     2219  ColorGradeShadowLum                           integer
    11682220  ColorNoiseReduction                           integer
    11692221  ColorNoiseReductionDetail                     integer
     2222  ColorNoiseReductionSmoothness                 integer
     2223  ContactInfo                                   string
    11702224  Contrast                                      integer/
     2225  Contrast2012                                  integer
    11712226  Converter                                     string
    11722227  ConvertToGrayscale                            boolean
     2228  Copyright                                     string/
    11732229  CropAngle                                     real
    11742230  CropBottom                                    real
     
    11812237  CropUnits                                     integer
    11822238  CropWidth                                     real
     2239  DefaultAutoGray                               boolean
     2240  DefaultAutoTone                               boolean
     2241  DefaultsSpecificToISO                         boolean
     2242  DefaultsSpecificToSerial                      boolean
    11832243  Defringe                                      integer
     2244  DefringeGreenAmount                           integer
     2245  DefringeGreenHueHi                            integer
     2246  DefringeGreenHueLo                            integer
     2247  DefringePurpleAmount                          integer
     2248  DefringePurpleHueHi                           integer
     2249  DefringePurpleHueLo                           integer
     2250  Dehaze                                        real
     2251  Description                                   lang-alt/
     2252  DNGIgnoreSidecars                             boolean
    11842253  Exposure                                      real
     2254  Exposure2012                                  real
    11852255  FillLight                                     integer
    11862256  GradientBasedCorrections                      Correction Struct+
     
    11882258  GradientBasedCorrAmount                       real_
    11892259  GradientBasedCorrMasks                        CorrectionMask Struct_+
     2260  GradientBasedCorrMaskAlpha                    real_
     2261  GradientBasedCorrMaskAngle                    real_
     2262  GradientBasedCorrMaskBottom                   real_
     2263  GradientBasedCorrMaskCenterValue              real_
    11902264  GradientBasedCorrMaskCenterWeight             real_
    11912265  GradientBasedCorrMaskDabs                     string_
     2266  GradientBasedCorrMaskFeather                  real_
     2267  GradientBasedCorrMaskFlipped                  boolean_
    11922268  GradientBasedCorrMaskFlow                     real_
    11932269  GradientBasedCorrMaskFullX                    real_
    11942270  GradientBasedCorrMaskFullY                    real_
     2271  GradientBasedCorrMaskLeft                     real_
    11952272  GradientBasedCorrMaskValue                    real_
     2273  GradientBasedCorrMaskMidpoint                 real_
     2274  GradientBasedCorrMaskPerimeterValue           real_
    11962275  GradientBasedCorrMaskRadius                   real_
     2276  GradientBasedCorrMaskRight                    real_
     2277  GradientBasedCorrMaskRoundness                real_
     2278  GradientBasedCorrMaskSizeX                    real_
     2279  GradientBasedCorrMaskSizeY                    real_
     2280  GradientBasedCorrMaskTop                      real_
     2281  GradientBasedCorrMaskVersion                  integer_
    11972282  GradientBasedCorrMaskWhat                     string_
     2283  GradientBasedCorrMaskX                        real_
     2284  GradientBasedCorrMaskY                        real_
    11982285  GradientBasedCorrMaskZeroX                    real_
    11992286  GradientBasedCorrMaskZeroY                    real_
     2287  GradientBasedCorrRangeMask                    CorrectionRangeMask Struct_+
     2288  GradientBasedCorrRangeMaskColorAmount         real_+
     2289  GradientBasedCorrRangeMaskDepthFeather        real_+
     2290  GradientBasedCorrRangeMaskDepthMax            real_+
     2291  GradientBasedCorrRangeMaskDepthMin            real_+
     2292  GradientBasedCorrRangeMaskLumFeather          real_+
     2293  GradientBasedCorrRangeMaskLumMax              real_+
     2294  GradientBasedCorrRangeMaskLumMin              real_+
     2295  GradientBasedCorrRangeMaskType                string_+
     2296  GradientBasedCorrRangeMaskVersion             string_+
     2297  GradientBasedCorrBlacks2012                   real_
    12002298  GradientBasedCorrBrightness                   real_
    12012299  GradientBasedCorrClarity                      real_
     2300  GradientBasedCorrClarity2012                  real_
    12022301  GradientBasedCorrContrast                     real_
     2302  GradientBasedCorrContrast2012                 real_
     2303  GradientBasedCorrDefringe                     real_
     2304  GradientBasedCorrDehaze                       real_
    12032305  GradientBasedCorrExposure                     real_
     2306  GradientBasedCorrExposure2012                 real_
     2307  GradientBasedCorrHighlights2012               real_
     2308  GradientBasedCorrHue                          real_
     2309  GradientBasedCorrLuminanceNoise               real_
     2310  GradientBasedCorrMoire                        real_
    12042311  GradientBasedCorrSaturation                   real_
     2312  GradientBasedCorrShadows2012                  real_
    12052313  GradientBasedCorrSharpness                    real_
     2314  GradientBasedCorrTemperature                  real_
     2315  GradientBasedCorrTexture                      real_
     2316  GradientBasedCorrTint                         real_
    12062317  GradientBasedCorrHue                          real_
    12072318  GradientBasedCorrSaturation                   real_
     2319  GradientBasedCorrWhites2012                   real_
    12082320  GradientBasedCorrWhat                         string_
    12092321  GrainAmount                                   integer
    12102322  GrainFrequency                                integer
     2323  GrainSeed                                     integer
    12112324  GrainSize                                     integer
    12122325  GrayMixerAqua                                 integer
     
    12202333  GreenHue                                      integer
    12212334  GreenSaturation                               integer
     2335  Group                                         lang-alt/
    12222336  HasCrop                                       boolean
    12232337  HasSettings                                   boolean
     2338  Highlight2012                                 integer
    12242339  HighlightRecovery                             integer
     2340  Highlights2012                                integer
    12252341  HueAdjustmentAqua                             integer
    12262342  HueAdjustmentBlue                             integer
     
    12332349  IncrementalTemperature                        integer
    12342350  IncrementalTint                               integer
     2351  JPEGHandling                                  string
    12352352  LensManualDistortionAmount                    integer
    12362353  LensProfileChromaticAberrationScale           integer
     
    12392356  LensProfileEnable                             integer
    12402357  LensProfileFilename                           string
     2358  LensProfileIsEmbedded                         boolean
     2359  LensProfileMatchKeyCameraModelName            string
     2360  LensProfileMatchKeyExifMake                   string
     2361  LensProfileMatchKeyExifModel                  string
     2362  LensProfileMatchKeyIsRaw                      boolean
     2363  LensProfileMatchKeyLensID                     string
     2364  LensProfileMatchKeyLensInfo                   string
     2365  LensProfileMatchKeyLensName                   string
     2366  LensProfileMatchKeySensorFormatFactor         real
    12412367  LensProfileName                               string
    12422368  LensProfileSetup                              string
    12432369  LensProfileVignettingScale                    integer
     2370  Look                                          Look Struct
     2371  LookAmount                                    string_
     2372  LookCluster                                   string_
     2373  LookCopyright                                 string_
     2374  LookGroup                                     lang-alt_
     2375  LookName                                      string
     2376  LookParameters                                LookParms Struct_
     2377  LookParametersCameraProfile                   string_
     2378  LookParametersClarity2012                     string_
     2379  LookParametersConvertToGrayscale              string_
     2380  LookParametersLookTable                       string_
     2381  LookParametersProcessVersion                  string_
     2382  LookParametersToneCurvePV2012                 string_+
     2383  LookParametersVersion                         string_
     2384  LookSupportsAmount                            string_
     2385  LookSupportsMonochrome                        string_
     2386  LookSupportsOutputReferred                    string_
     2387  LookUUID                                      string_
    12442388  LuminanceAdjustmentAqua                       integer
    12452389  LuminanceAdjustmentBlue                       integer
     
    12542398  LuminanceSmoothing                            integer
    12552399  MoireFilter                                   string
     2400  Name                                          lang-alt/
     2401  NegativeCacheLargePreviewSize                 integer
     2402  NegativeCacheMaximumSize                      real
     2403  NegativeCachePath                             string
     2404  OverrideLookVignette                          boolean
    12562405  PaintBasedCorrections                         Correction Struct+
    12572406  PaintCorrectionActive                         boolean_
    12582407  PaintCorrectionAmount                         real_
    12592408  PaintBasedCorrectionMasks                     CorrectionMask Struct_+
     2409  PaintCorrectionMaskAlpha                      real_
     2410  PaintCorrectionMaskAngle                      real_
     2411  PaintCorrectionMaskBottom                     real_
     2412  PaintCorrectionMaskCenterValue                real_
    12602413  PaintCorrectionMaskCenterWeight               real_
    12612414  PaintCorrectionMaskDabs                       string_
     2415  PaintCorrectionMaskFeather                    real_
     2416  PaintCorrectionMaskFlipped                    boolean_
    12622417  PaintCorrectionMaskFlow                       real_
    12632418  PaintCorrectionMaskFullX                      real_
    12642419  PaintCorrectionMaskFullY                      real_
     2420  PaintCorrectionMaskLeft                       real_
    12652421  PaintCorrectionMaskValue                      real_
     2422  PaintCorrectionMaskMidpoint                   real_
     2423  PaintCorrectionMaskPerimeterValue             real_
    12662424  PaintCorrectionMaskRadius                     real_
     2425  PaintCorrectionMaskRight                      real_
     2426  PaintCorrectionMaskRoundness                  real_
     2427  PaintCorrectionMaskSizeX                      real_
     2428  PaintCorrectionMaskSizeY                      real_
     2429  PaintCorrectionMaskTop                        real_
     2430  PaintCorrectionMaskVersion                    integer_
    12672431  PaintCorrectionMaskWhat                       string_
     2432  PaintCorrectionMaskX                          real_
     2433  PaintCorrectionMaskY                          real_
    12682434  PaintCorrectionMaskZeroX                      real_
    12692435  PaintCorrectionMaskZeroY                      real_
     2436  PaintCorrectionRangeMask                      CorrectionRangeMask Struct_+
     2437  PaintCorrectionRangeMaskColorAmount           real_+
     2438  PaintCorrectionRangeMaskDepthFeather          real_+
     2439  PaintCorrectionRangeMaskDepthMax              real_+
     2440  PaintCorrectionRangeMaskDepthMin              real_+
     2441  PaintCorrectionRangeMaskLumFeather            real_+
     2442  PaintCorrectionRangeMaskLumMax                real_+
     2443  PaintCorrectionRangeMaskLumMin                real_+
     2444  PaintCorrectionRangeMaskType                  string_+
     2445  PaintCorrectionRangeMaskVersion               string_+
     2446  PaintCorrectionBlacks2012                     real_
    12702447  PaintCorrectionBrightness                     real_
    12712448  PaintCorrectionClarity                        real_
     2449  PaintCorrectionClarity2012                    real_
    12722450  PaintCorrectionContrast                       real_
     2451  PaintCorrectionContrast2012                   real_
     2452  PaintCorrectionDefringe                       real_
     2453  PaintCorrectionDehaze                         real_
    12732454  PaintCorrectionExposure                       real_
     2455  PaintCorrectionExposure2012                   real_
     2456  PaintCorrectionHighlights2012                 real_
     2457  PaintCorrectionHue                            real_
     2458  PaintCorrectionLuminanceNoise                 real_
     2459  PaintCorrectionMoire                          real_
    12742460  PaintCorrectionSaturation                     real_
     2461  PaintCorrectionShadows2012                    real_
    12752462  PaintCorrectionSharpness                      real_
     2463  PaintCorrectionTemperature                    real_
     2464  PaintCorrectionTexture                        real_
     2465  PaintCorrectionTint                           real_
    12762466  PaintCorrectionHue                            real_
    12772467  PaintCorrectionSaturation                     real_
     2468  PaintCorrectionWhites2012                     real_
    12782469  PaintCorrectionWhat                           string_
    12792470  ParametricDarks                               integer
     
    12842475  ParametricShadows                             integer
    12852476  ParametricShadowSplit                         integer
     2477  PerspectiveAspect                             integer
    12862478  PerspectiveHorizontal                         integer
    12872479  PerspectiveRotate                             real
    12882480  PerspectiveScale                              integer
     2481  PerspectiveUpright                            integer
    12892482  PerspectiveVertical                           integer
     2483  PerspectiveX                                  real
     2484  PerspectiveY                                  real
    12902485  PostCropVignetteAmount                        integer
    12912486  PostCropVignetteFeather                       integer
     2487  PostCropVignetteHighlightContrast             integer
    12922488  PostCropVignetteMidpoint                      integer
    12932489  PostCropVignetteRoundness                     integer
    12942490  PostCropVignetteStyle                         integer
     2491  PresetType                                    string
    12952492  ProcessVersion                                string
    12962493  RawFileName                                   string
     
    12982495  RedHue                                        integer
    12992496  RedSaturation                                 integer
     2497  RetouchAreas                                  RetouchArea Struct+
     2498  RetouchAreaFeather                            real_
     2499  RetouchAreaMasks                              CorrectionMask Struct_+
     2500  RetouchAreaMaskAlpha                          real_
     2501  RetouchAreaMaskAngle                          real_
     2502  RetouchAreaMaskBottom                         real_
     2503  RetouchAreaMaskCenterValue                    real_
     2504  RetouchAreaMaskCenterWeight                   real_
     2505  RetouchAreaMaskDabs                           string_
     2506  RetouchAreaMaskFeather                        real_
     2507  RetouchAreaMaskFlipped                        boolean_
     2508  RetouchAreaMaskFlow                           real_
     2509  RetouchAreaMaskFullX                          real_
     2510  RetouchAreaMaskFullY                          real_
     2511  RetouchAreaMaskLeft                           real_
     2512  RetouchAreaMaskValue                          real_
     2513  RetouchAreaMaskMidpoint                       real_
     2514  RetouchAreaMaskPerimeterValue                 real_
     2515  RetouchAreaMaskRadius                         real_
     2516  RetouchAreaMaskRight                          real_
     2517  RetouchAreaMaskRoundness                      real_
     2518  RetouchAreaMaskSizeX                          real_
     2519  RetouchAreaMaskSizeY                          real_
     2520  RetouchAreaMaskTop                            real_
     2521  RetouchAreaMaskVersion                        integer_
     2522  RetouchAreaMaskWhat                           string_
     2523  RetouchAreaMaskX                              real_
     2524  RetouchAreaMaskY                              real_
     2525  RetouchAreaMaskZeroX                          real_
     2526  RetouchAreaMaskZeroY                          real_
     2527  RetouchAreaMethod                             string_
     2528  RetouchAreaOffsetY                            real_
     2529  RetouchAreaOpacity                            real_
     2530  RetouchAreaSeed                               integer_
     2531  RetouchAreaSourceState                        string_
     2532  RetouchAreaSourceX                            real_
     2533  RetouchAreaSpotType                           string_
    13002534  RetouchInfo                                   string+
    13012535  Saturation                                    integer/
     
    13092543  SaturationAdjustmentYellow                    integer
    13102544  Shadows                                       integer
     2545  Shadows2012                                   integer
    13112546  ShadowTint                                    integer
    13122547  SharpenDetail                                 integer
     
    13142549  SharpenRadius                                 real
    13152550  Sharpness                                     integer/
     2551  ShortName                                     lang-alt
    13162552  Smoothness                                    integer
     2553  SortName                                      lang-alt
    13172554  SplitToningBalance                            integer
    13182555  SplitToningHighlightHue                       integer
     
    13202557  SplitToningShadowHue                          integer
    13212558  SplitToningShadowSaturation                   integer
    1322   ColorTemperature                              integer/
     2559  SupportsAmount                                boolean
     2560  SupportsColor                                 boolean
     2561  SupportsHighDynamicRange                      boolean
     2562  SupportsMonochrome                            boolean
     2563  SupportsNormalDynamicRange                    boolean
     2564  SupportsOutputReferred                        boolean
     2565  SupportsSceneReferred                         boolean
     2566  ColorTemperature                              integer
     2567  Texture                                       integer
     2568  TIFFHandling                                  string
    13232569  Tint                                          integer
     2570  ToggleStyleAmount                             integer
     2571  ToggleStyleDigest                             string
    13242572  ToneCurve                                     string+
     2573  ToneCurveBlue                                 string+
     2574  ToneCurveGreen                                string+
    13252575  ToneCurveName                                 string
     2576  ToneCurveName2012                             string
     2577  ToneCurvePV2012                               string+
     2578  ToneCurvePV2012Blue                           string+
     2579  ToneCurvePV2012Green                          string+
     2580  ToneCurvePV2012Red                            string+
     2581  ToneCurveRed                                  string+
     2582  ToneMapStrength                               real
     2583  UprightCenterMode                             integer
     2584  UprightCenterNormX                            real
     2585  UprightCenterNormY                            real
     2586  UprightDependentDigest                        string
     2587  UprightFocalLength35mm                        real
     2588  UprightFocalMode                              integer
     2589  UprightFourSegmentsCount                      integer
     2590  UprightPreview                                boolean
     2591  UprightTransform_0                            string
     2592  UprightTransform_1                            string
     2593  UprightTransform_2                            string
     2594  UprightTransform_3                            string
     2595  UprightTransform_4                            string
     2596  UprightTransform_5                            string
     2597  UprightTransformCount                         integer
     2598  UprightVersion                                integer
     2599  UUID                                          string/
    13262600  Version                                       string
    13272601  Vibrance                                      integer
    13282602  VignetteAmount                                integer
    13292603  VignetteMidpoint                              integer
     2604  What                                          string
    13302605  WhiteBalance                                  string/
    1331 
    1332 =head3 XMP Correction Struct
    1333 
    1334   Field Name                                    Writable
    1335   ----------                                    --------
    1336   CorrectionActive                              boolean
    1337   CorrectionAmount                              real
    1338   CorrectionMasks                               CorrectionMask Struct+
    1339   LocalBrightness                               real
    1340   LocalClarity                                  real
    1341   LocalContrast                                 real
    1342   LocalExposure                                 real
    1343   LocalSaturation                               real
    1344   LocalSharpness                                real
    1345   LocalToningHue                                real
    1346   LocalToningSaturation                         real
    1347   What                                          string
    1348 
    1349 =head3 XMP CorrectionMask Struct
    1350 
    1351   Field Name                                    Writable
    1352   ----------                                    --------
    1353   CenterWeight                                  real
    1354   Dabs                                          string+
    1355   Flow                                          real
    1356   FullX                                         real
    1357   FullY                                         real
    1358   MaskValue                                     real
    1359   Radius                                        real
    1360   What                                          string
    1361   ZeroX                                         real
    1362   ZeroY                                         real
     2606  Whites2012                                    integer
    13632607
    13642608=head3 XMP dc Tags
    13652609
    1366 Dublin Core schema tags.
     2610Dublin Core namespace tags.
     2611
     2612These tags belong to the ExifTool XMP-dc family 1 group.
    13672613
    13682614  Tag Name                                      Writable
     
    13842630  Type                                          string+
    13852631
     2632=head3 XMP Device Tags
     2633
     2634Google depth-map Device tags.  See
     2635L<https://developer.android.com/training/camera2/Dynamic-depth-v1.0.pdf> for
     2636the specification.
     2637
     2638These tags belong to the ExifTool XMP-Device family 1 group.
     2639
     2640  Tag Name                                      Writable
     2641  --------                                      --------
     2642  AppInfo                                       AppInfo Struct
     2643  AppInfoApplication                            string_
     2644  AppInfoItemURI                                string_
     2645  AppInfoVersion                                string_
     2646  Cameras                                       DeviceCameras Struct+
     2647  Camera                                        DeviceCamera Struct_+
     2648  CameraAppInfo                                 AppInfo Struct_+
     2649  CameraAppInfoApplication                      string_+
     2650  CameraAppInfoItemURI                          string_+
     2651  CameraAppInfoVersion                          string_+
     2652  CameraDepthMap                                DeviceDepthMap Struct_+
     2653  CameraDepthMapConfidenceURI                   string_+
     2654  CameraDepthMapDepthURI                        string_+
     2655  CameraDepthMapFar                             real_+
     2656  CameraDepthMapFocalTable                      string_+
     2657  CameraDepthMapFocalTableEntryCount            integer_+
     2658  CameraDepthMapFormat                          string_+
     2659  CameraDepthMapItemSemantic                    string_+
     2660  CameraDepthMapMeasureType                     string_+
     2661  CameraDepthMapNear                            real_+
     2662  CameraDepthMapSoftware                        string_+
     2663  CameraDepthMapUnits                           string_+
     2664  CameraImage                                   DeviceImage Struct_+
     2665  CameraImageItemSemantic                       string_+
     2666  CameraImageItemURI                            string_+
     2667  CameraImagingModel                            DeviceImagingModel Struct_+
     2668  CameraImagingModelDistortion                  string_+
     2669  CameraImagingModelDistortionCount             integer_+
     2670  CameraImagingModelFocalLengthX                real_+
     2671  CameraImagingModelFocalLengthY                real_+
     2672  CameraImagingModelImageHeight                 integer_+
     2673  CameraImagingModelImageWidth                  integer_+
     2674  CameraImagingModelPixelAspectRatio            real_+
     2675  CameraImagingModelPrincipalPointX             real_+
     2676  CameraImagingModelPrincipalPointY             real_+
     2677  CameraImagingModelSkew                        real_+
     2678  CameraLightEstimate                           DeviceLightEstimate Struct_+
     2679  CameraLightEstimateColorCorrectionB           real_+
     2680  CameraLightEstimateColorCorrectionG           real_+
     2681  CameraLightEstimateColorCorrectionR           real_+
     2682  CameraLightEstimatePixelIntensity             real_+
     2683  CameraPointCloud                              DevicePointCloud Struct_+
     2684  CameraPointCloudMetric                        boolean_+
     2685  CameraPointCloudPointCloud                    integer_+
     2686  CameraPointCloudPoints                        string_+
     2687  CameraPose                                    Pose Struct_+
     2688  CameraPosePositionX                           real_+
     2689  CameraPosePositionY                           real_+
     2690  CameraPosePositionZ                           real_+
     2691  CameraPoseRotationW                           real_+
     2692  CameraPoseRotationX                           real_+
     2693  CameraPoseRotationY                           real_+
     2694  CameraPoseRotationZ                           real_+
     2695  CameraPoseTimestamp                           integer_+
     2696  CameraTrait                                   string_+
     2697  CameraVendorInfo                              VendorInfo Struct_+
     2698  CameraVendorInfoManufacturer                  string_+
     2699  CameraVendorInfoModel                         string_+
     2700  CameraVendorInfoNotes                         string_+
     2701  Container                                     DeviceContainer Struct
     2702  ContainerDirectory                            DeviceDirectory Struct_+
     2703  ContainerDirectoryItem                        DeviceItem Struct_+
     2704  ContainerDirectoryItemDataURI                 string_+
     2705  ContainerDirectoryItemLength                  integer_+
     2706  ContainerDirectoryItemMime                    string_+
     2707  ContainerDirectoryItemPadding                 integer_+
     2708  EarthPos                                      EarthPose Struct
     2709  EarthPosAltitude                              real_
     2710  EarthPosLatitude                              real_
     2711  EarthPosLongitude                             real_
     2712  EarthPosRotationW                             real_
     2713  EarthPosRotationX                             real_
     2714  EarthPosRotationY                             real_
     2715  EarthPosRotationZ                             real_
     2716  EarthPosTimestamp                             integer_
     2717  Planes                                        DevicePlanes Struct+
     2718  Plane                                         DevicePlane Struct_+
     2719  PlaneBoundary                                 string_+
     2720  PlaneBoundaryVertexCount                      integer_+
     2721  PlaneExtentX                                  real_+
     2722  PlaneExtentZ                                  real_+
     2723  PlanePose                                     Pose Struct_+
     2724  PlanePosePositionX                            real_+
     2725  PlanePosePositionY                            real_+
     2726  PlanePosePositionZ                            real_+
     2727  PlanePoseRotationW                            real_+
     2728  PlanePoseRotationX                            real_+
     2729  PlanePoseRotationY                            real_+
     2730  PlanePoseRotationZ                            real_+
     2731  PlanePoseTimestamp                            integer_+
     2732  Pose                                          Pose Struct
     2733  PosePositionX                                 real_
     2734  PosePositionY                                 real_
     2735  PosePositionZ                                 real_
     2736  PoseRotationW                                 real_
     2737  PoseRotationX                                 real_
     2738  PoseRotationY                                 real_
     2739  PoseRotationZ                                 real_
     2740  PoseTimestamp                                 integer_
     2741  Profiles                                      DeviceProfiles Struct+
     2742  Profile                                       DeviceProfile Struct_+
     2743  ProfileCameraIndices                          integer_+
     2744  ProfileType                                   string_+
     2745  VendorInfo                                    VendorInfo Struct
     2746  VendorInfoManufacturer                        string_
     2747  VendorInfoModel                               string_
     2748  VendorInfoNotes                               string_
     2749
     2750=head3 XMP AppInfo Struct
     2751
     2752  Field Name                                    Writable
     2753  ----------                                    --------
     2754  Application                                   string
     2755  ItemURI                                       string
     2756  Version                                       string
     2757
     2758=head3 XMP DeviceCameras Struct
     2759
     2760  Field Name                                    Writable
     2761  ----------                                    --------
     2762  Camera                                        DeviceCamera Struct
     2763
     2764=head3 XMP DeviceCamera Struct
     2765
     2766  Field Name                                    Writable
     2767  ----------                                    --------
     2768  AppInfo                                       AppInfo Struct
     2769  DepthMap                                      DeviceDepthMap Struct
     2770  Image                                         DeviceImage Struct
     2771  ImagingModel                                  DeviceImagingModel Struct
     2772  LightEstimate                                 DeviceLightEstimate Struct
     2773  PointCloud                                    DevicePointCloud Struct
     2774  Pose                                          Pose Struct
     2775  Trait                                         string
     2776  VendorInfo                                    VendorInfo Struct
     2777
     2778=head3 XMP DeviceDepthMap Struct
     2779
     2780  Field Name                                    Writable
     2781  ----------                                    --------
     2782  ConfidenceURI                                 string
     2783  DepthURI                                      string
     2784  Far                                           real
     2785  FocalTable                                    string
     2786  FocalTableEntryCount                          integer
     2787  Format                                        string
     2788  ItemSemantic                                  string
     2789  MeasureType                                   string
     2790  Near                                          real
     2791  Software                                      string
     2792  Units                                         string
     2793
     2794=head3 XMP DeviceImage Struct
     2795
     2796  Field Name                                    Writable
     2797  ----------                                    --------
     2798  ItemSemantic                                  string
     2799  ItemURI                                       string
     2800
     2801=head3 XMP DeviceImagingModel Struct
     2802
     2803  Field Name                                    Writable
     2804  ----------                                    --------
     2805  Distortion                                    string
     2806  DistortionCount                               integer
     2807  FocalLengthX                                  real
     2808  FocalLengthY                                  real
     2809  ImageHeight                                   integer
     2810  ImageWidth                                    integer
     2811  PixelAspectRatio                              real
     2812  PrincipalPointX                               real
     2813  PrincipalPointY                               real
     2814  Skew                                          real
     2815
     2816=head3 XMP DeviceLightEstimate Struct
     2817
     2818  Field Name                                    Writable
     2819  ----------                                    --------
     2820  ColorCorrectionB                              real
     2821  ColorCorrectionG                              real
     2822  ColorCorrectionR                              real
     2823  PixelIntensity                                real
     2824
     2825=head3 XMP DevicePointCloud Struct
     2826
     2827  Field Name                                    Writable
     2828  ----------                                    --------
     2829  Metric                                        boolean
     2830  PointCloud                                    integer
     2831  Points                                        string
     2832
     2833=head3 XMP Pose Struct
     2834
     2835  Field Name                                    Writable
     2836  ----------                                    --------
     2837  PositionX                                     real
     2838  PositionY                                     real
     2839  PositionZ                                     real
     2840  RotationW                                     real
     2841  RotationX                                     real
     2842  RotationY                                     real
     2843  RotationZ                                     real
     2844  Timestamp                                     integer
     2845
     2846=head3 XMP VendorInfo Struct
     2847
     2848  Field Name                                    Writable
     2849  ----------                                    --------
     2850  Manufacturer                                  string
     2851  Model                                         string
     2852  Notes                                         string
     2853
     2854=head3 XMP DeviceContainer Struct
     2855
     2856  Field Name                                    Writable
     2857  ----------                                    --------
     2858  Directory                                     DeviceDirectory Struct+
     2859
     2860=head3 XMP DeviceDirectory Struct
     2861
     2862  Field Name                                    Writable
     2863  ----------                                    --------
     2864  Item                                          DeviceItem Struct
     2865
     2866=head3 XMP DeviceItem Struct
     2867
     2868  Field Name                                    Writable
     2869  ----------                                    --------
     2870  DataURI                                       string
     2871  Length                                        integer
     2872  Mime                                          string
     2873  Padding                                       integer
     2874
     2875=head3 XMP EarthPose Struct
     2876
     2877  Field Name                                    Writable
     2878  ----------                                    --------
     2879  Altitude                                      real
     2880  Latitude                                      real
     2881  Longitude                                     real
     2882  RotationW                                     real
     2883  RotationX                                     real
     2884  RotationY                                     real
     2885  RotationZ                                     real
     2886  Timestamp                                     integer
     2887
     2888=head3 XMP DevicePlanes Struct
     2889
     2890  Field Name                                    Writable
     2891  ----------                                    --------
     2892  Plane                                         DevicePlane Struct
     2893
     2894=head3 XMP DevicePlane Struct
     2895
     2896  Field Name                                    Writable
     2897  ----------                                    --------
     2898  Boundary                                      string
     2899  BoundaryVertexCount                           integer
     2900  ExtentX                                       real
     2901  ExtentZ                                       real
     2902  Pose                                          Pose Struct
     2903
     2904=head3 XMP DeviceProfiles Struct
     2905
     2906  Field Name                                    Writable
     2907  ----------                                    --------
     2908  Profile                                       DeviceProfile Struct
     2909
     2910=head3 XMP DeviceProfile Struct
     2911
     2912  Field Name                                    Writable
     2913  ----------                                    --------
     2914  CameraIndices                                 integer+
     2915  Type                                          string
     2916
    13862917=head3 XMP dex Tags
    13872918
    1388 Description Explorer schema tags.  These tags are not very common.  The
     2919Description Explorer namespace tags.  These tags are not very common.  The
    13892920Source and Rating tags are avoided when writing due to name conflicts with
    13902921other XMP tags.  (see L<http://www.optimasc.com/products/fileid/>)
     2922
     2923These tags belong to the ExifTool XMP-dex family 1 group.
    13912924
    13922925  Tag Name                                      Writable
     
    14032936=head3 XMP DICOM Tags
    14042937
    1405 DICOM schema tags.
     2938DICOM namespace tags.  These XMP tags allow some DICOM information to be
     2939stored in files of other than DICOM format.  See the
     2940L<DICOM Tags documentation|Image::ExifTool::TagNames/DICOM Tags> for a list
     2941of tags available in DICOM-format files.
     2942
     2943These tags belong to the ExifTool XMP-DICOM family 1 group.
    14062944
    14072945  Tag Name                                      Writable
     
    14242962=head3 XMP digiKam Tags
    14252963
    1426 DigiKam schema tags.
     2964DigiKam namespace tags.
     2965
     2966These tags belong to the ExifTool XMP-digiKam family 1 group.
    14272967
    14282968  Tag Name                                      Writable
     
    14302970  CaptionsAuthorNames                           lang-alt
    14312971  CaptionsDateTimeStamps                        lang-alt
     2972  ColorLabel                                    string
     2973  ImageHistory                                  string/
     2974  ImageUniqueID                                 string/
     2975  LensCorrectionSettings                        string
     2976  PickLabel                                     string
    14322977  TagsList                                      string+
    14332978
    14342979=head3 XMP exif Tags
    14352980
    1436 EXIF schema for EXIF tags.
     2981EXIF namespace for EXIF tags.  See
     2982L<https://web.archive.org/web/20180921145139if_/http://www.cipa.jp:80/std/documents/e/DC-010-2017_E.pdf>
     2983for the specification.
     2984
     2985These tags belong to the ExifTool XMP-exif family 1 group.
    14372986
    14382987  Tag Name                                      Writable
     
    14893038  GPSDifferential                               integer
    14903039  GPSDOP                                        rational
     3040  GPSHPositioningError                          rational
    14913041  GPSImgDirection                               rational
    14923042  GPSImgDirectionRef                            string
     
    15733123  Values                                        rational+
    15743124
     3125=head3 XMP exifEX Tags
     3126
     3127EXIF tags added by the EXIF 2.31 for XMP specification (see
     3128L<http://www.cipa.jp/std/documents/e/DC-X010-2017.pdf>).
     3129
     3130These tags belong to the ExifTool XMP-exifEX family 1 group.
     3131
     3132  Tag Name                                      Writable
     3133  --------                                      --------
     3134  Acceleration                                  rational
     3135  SerialNumber                                  string
     3136  CameraElevationAngle                          rational
     3137  OwnerName                                     string
     3138  CompositeImage                                integer
     3139  CompositeImageCount                           integer+
     3140  CompositeImageExposureTimes                   CompImageExp Struct
     3141  CompImageMaxExposureAll                       rational_
     3142  CompImageMaxExposureUsed                      rational_
     3143  CompImageMinExposureAll                       rational_
     3144  CompImageMinExposureUsed                      rational_
     3145  CompImageImagesPerSequence                    integer_
     3146  CompImageNumSequences                         integer_
     3147  CompImageSumExposureAll                       rational_
     3148  CompImageSumExposureUsed                      rational_
     3149  CompImageTotalExposurePeriod                  rational_
     3150  CompImageValues                               rational_+
     3151  Gamma                                         rational
     3152  Humidity                                      rational
     3153  InteropIndex                                  string
     3154  ISOSpeed                                      integer
     3155  ISOSpeedLatitudeyyy                           integer
     3156  ISOSpeedLatitudezzz                           integer
     3157  LensMake                                      string
     3158  LensModel                                     string
     3159  LensSerialNumber                              string
     3160  LensInfo                                      rational+
     3161  PhotographicSensitivity                       integer
     3162  Pressure                                      rational
     3163  RecommendedExposureIndex                      integer
     3164  SensitivityType                               integer
     3165  StandardOutputSensitivity                     integer
     3166  AmbientTemperature                            rational
     3167  WaterDepth                                    rational
     3168
     3169=head3 XMP CompImageExp Struct
     3170
     3171  Field Name                                    Writable
     3172  ----------                                    --------
     3173  MaxExposureTimesOfAll                         rational
     3174  MaxExposureTimesOfUsed                        rational
     3175  MinExposureTimesOfAll                         rational
     3176  MinExposureTimesOfUsed                        rational
     3177  NumberOfImagesInSequences                     integer
     3178  NumberOfSequences                             integer
     3179  SumOfExposureTimesOfAll                       rational
     3180  SumOfExposureTimesOfUsed                      rational
     3181  TotalExposurePeriod                           rational
     3182  Values                                        rational+
     3183
     3184=head3 XMP ExpressionMedia Tags
     3185
     3186Microsoft Expression Media namespace tags.  These tags are avoided when
     3187writing due to name conflicts with tags in other schemas.
     3188
     3189These tags belong to the ExifTool XMP-expressionmedia family 1 group.
     3190
     3191  Tag Name                                      Writable
     3192  --------                                      --------
     3193  CatalogSets                                   string/+
     3194  Event                                         string/
     3195  People                                        string/+
     3196  Status                                        string/
     3197
     3198=head3 XMP extensis Tags
     3199
     3200Tags used by Extensis Portfolio.
     3201
     3202These tags belong to the ExifTool XMP-extensis family 1 group.
     3203
     3204  Tag Name                                      Writable
     3205  --------                                      --------
     3206  Approved                                      boolean
     3207  ApprovedBy                                    string
     3208  ClientName                                    string
     3209  JobName                                       string
     3210  JobStatus                                     string
     3211  RoutedTo                                      string
     3212  RoutingNotes                                  string
     3213  WorkToDo                                      string
     3214
     3215=head3 XMP fpv Tags
     3216
     3217Fast Picture Viewer tags (see
     3218L<http://www.fastpictureviewer.com/help/#rtfcomments>).
     3219
     3220These tags belong to the ExifTool XMP-fpv family 1 group.
     3221
     3222  Tag Name                                      Writable
     3223  --------                                      --------
     3224  RichTextComment                               string
     3225
     3226=head3 XMP GAudio Tags
     3227
     3228These tags belong to the ExifTool XMP-GAudio family 1 group.
     3229
     3230  Tag Name                                      Writable
     3231  --------                                      --------
     3232  AudioData                                     string
     3233  AudioMimeType                                 string
     3234
     3235=head3 XMP GCamera Tags
     3236
     3237Camera information found in Google panorama images.
     3238
     3239These tags belong to the ExifTool XMP-GCamera family 1 group.
     3240
     3241  Tag Name                                      Writable
     3242  --------                                      --------
     3243  BurstID                                       string
     3244  BurstPrimary                                  string
     3245  DisableAutoCreation                           string+
     3246  HDRPMakerNote                                 string
     3247  MicroVideo                                    integer
     3248  MicroVideoOffset                              integer
     3249  MicroVideoPresentationTimestampUs             integer
     3250  MicroVideoVersion                             integer
     3251  PortraitNote                                  string
     3252  PortraitRequest                               string
     3253  PortraitVersion                               string
     3254  SpecialTypeID                                 string+
     3255
     3256=head3 XMP GCreations Tags
     3257
     3258Google creations tags.
     3259
     3260These tags belong to the ExifTool XMP-GCreations family 1 group.
     3261
     3262  Tag Name                                      Writable
     3263  --------                                      --------
     3264  CameraBurstID                                 string
     3265
     3266=head3 XMP GDepth Tags
     3267
     3268Google depthmap information. See
     3269L<https://developers.google.com/depthmap-metadata/> for the specification.
     3270
     3271These tags belong to the ExifTool XMP-GDepth family 1 group.
     3272
     3273  Tag Name                                      Writable
     3274  --------                                      --------
     3275  Confidence                                    string/
     3276  ConfidenceMime                                string/
     3277  DepthImage                                    string/
     3278  Far                                           real/
     3279  Format                                        string/
     3280  ImageHeight                                   real/
     3281  ImageWidth                                    real/
     3282  Manufacturer                                  string/
     3283  MeasureType                                   string/
     3284  Mime                                          string/
     3285  Model                                         string/
     3286  Near                                          real/
     3287  Software                                      string/
     3288  Units                                         string/
     3289
     3290=head3 XMP GettyImages Tags
     3291
     3292The actual Getty Images namespace prefix is "GettyImagesGIFT", which is the
     3293prefix recorded in the file, but ExifTool shortens this for the family 1
     3294group name.
     3295
     3296These tags belong to the ExifTool XMP-getty family 1 group.
     3297
     3298  Tag Name                                      Writable
     3299  --------                                      --------
     3300  AssetID                                       string
     3301  CallForImage                                  string
     3302  CameraFilename                                string
     3303  CameraMakeModel                               string/
     3304  CameraSerialNumber                            string/
     3305  Composition                                   string
     3306  ExclusiveCoverage                             string
     3307  GIFTFtpPriority                               string
     3308  ImageRank                                     string
     3309  MediaEventIdDate                              string
     3310  OriginalCreateDateTime                        date/
     3311  OriginalFileName                              string
     3312  ParentMediaEventID                            string
     3313  ParentMEID                                    string
     3314  Personality                                   string+
     3315  PrimaryFTP                                    string+
     3316  RoutingDestinations                           string+
     3317  RoutingExclusions                             string+
     3318  SecondaryFTP                                  string+
     3319  TimeShot                                      string
     3320
     3321=head3 XMP GFocus Tags
     3322
     3323Focus information found in Google depthmap images.
     3324
     3325These tags belong to the ExifTool XMP-GFocus family 1 group.
     3326
     3327  Tag Name                                      Writable
     3328  --------                                      --------
     3329  BlurAtInfinity                                real
     3330  FocalDistance                                 real
     3331  FocalPointX                                   real
     3332  FocalPointY                                   real
     3333
     3334=head3 XMP GImage Tags
     3335
     3336These tags belong to the ExifTool XMP-GImage family 1 group.
     3337
     3338  Tag Name                                      Writable
     3339  --------                                      --------
     3340  ImageData                                     string
     3341  ImageMimeType                                 string
     3342
     3343=head3 XMP GPano Tags
     3344
     3345Panorama tags written by Google Photosphere. See
     3346L<https://developers.google.com/panorama/metadata/> for the specification.
     3347
     3348These tags belong to the ExifTool XMP-GPano family 1 group.
     3349
     3350  Tag Name                                      Writable
     3351  --------                                      --------
     3352  CaptureSoftware                               string
     3353  CroppedAreaImageHeightPixels                  real
     3354  CroppedAreaImageWidthPixels                   real
     3355  CroppedAreaLeftPixels                         real
     3356  CroppedAreaTopPixels                          real
     3357  ExposureLockUsed                              boolean
     3358  FirstPhotoDate                                date
     3359  FullPanoHeightPixels                          real
     3360  FullPanoWidthPixels                           real
     3361  InitialCameraDolly                            real
     3362  InitialHorizontalFOVDegrees                   real
     3363  InitialVerticalFOVDegrees                     real
     3364  InitialViewHeadingDegrees                     real
     3365  InitialViewPitchDegrees                       real
     3366  InitialViewRollDegrees                        real
     3367  LargestValidInteriorRectHeight                real
     3368  LargestValidInteriorRectLeft                  real
     3369  LargestValidInteriorRectTop                   real
     3370  LargestValidInteriorRectWidth                 real
     3371  LastPhotoDate                                 date
     3372  PoseHeadingDegrees                            real
     3373  PosePitchDegrees                              real
     3374  PoseRollDegrees                               real
     3375  ProjectionType                                string
     3376  SourcePhotosCount                             integer
     3377  StitchingSoftware                             string
     3378  UsePanoramaViewer                             boolean
     3379
     3380=head3 XMP GSpherical Tags
     3381
     3382Not actually XMP.  These RDF/XML tags are used in Google spherical MP4
     3383videos.  These tags are written into the video track of MOV/MP4 files, and
     3384not at the top level like other XMP tags.  See
     3385L<https://github.com/google/spatial-media/blob/master/docs/spherical-video-rfc.md>
     3386for the specification.
     3387
     3388These tags belong to the ExifTool XMP-GSpherical family 1 group.
     3389
     3390  Tag Name                                      Writable
     3391  --------                                      --------
     3392  CroppedAreaImageHeightPixels                  integer/
     3393  CroppedAreaImageWidthPixels                   integer/
     3394  CroppedAreaLeftPixels                         integer/
     3395  CroppedAreaTopPixels                          integer/
     3396  FullPanoHeightPixels                          integer/
     3397  FullPanoWidthPixels                           integer/
     3398  InitialViewHeadingDegrees                     real/
     3399  InitialViewPitchDegrees                       real/
     3400  InitialViewRollDegrees                        real/
     3401  ProjectionType                                string/
     3402  SourceCount                                   integer/
     3403  Spherical                                     boolean/
     3404  StereoMode                                    string/
     3405  Stitched                                      boolean/
     3406  StitchingSoftware                             string/
     3407  TimeStamp                                     integer/
     3408
     3409=head3 XMP ics Tags
     3410
     3411Tags used by IDimager.  Nested TagStructure structures are unrolled to an
     3412arbitrary depth of 6 to avoid infinite recursion.
     3413
     3414These tags belong to the ExifTool XMP-ics family 1 group.
     3415
     3416  Tag Name                                      Writable
     3417  --------                                      --------
     3418  AppVersion                                    string/
     3419  ImageRef                                      string
     3420  SubVersions                                   SubVersion Struct+
     3421  SubVersionFileName                            string_+
     3422  SubVersionReference                           string_+
     3423  TagStructure                                  TagStructure Struct+
     3424  LabelName1                                    string_+
     3425  ParentReference1                              string_+
     3426  Reference1                                    string_+
     3427  SubLabels1                                    TagStructure Struct_+
     3428  LabelName2                                    string_+
     3429  ParentReference2                              string_+
     3430  Reference2                                    string_+
     3431  SubLabels2                                    TagStructure Struct_+
     3432  LabelName3                                    string_+
     3433  ParentReference3                              string_+
     3434  Reference3                                    string_+
     3435  SubLabels3                                    TagStructure Struct_+
     3436  LabelName4                                    string_+
     3437  ParentReference4                              string_+
     3438  Reference4                                    string_+
     3439  SubLabels4                                    TagStructure Struct_+
     3440  LabelName5                                    string_+
     3441  ParentReference5                              string_+
     3442  Reference5                                    string_+
     3443  SubLabels5                                    TagStructure Struct_+
     3444  LabelName6                                    string_+
     3445  ParentReference6                              string_+
     3446  Reference6                                    string_+
     3447  TimeStamp                                     date/
     3448
     3449=head3 XMP SubVersion Struct
     3450
     3451  Field Name                                    Writable
     3452  ----------                                    --------
     3453  FileName                                      string
     3454  VersRef                                       string
     3455
     3456=head3 XMP TagStructure Struct
     3457
     3458  Field Name                                    Writable
     3459  ----------                                    --------
     3460  LabelName                                     string
     3461  ParentReference                               string
     3462  Reference                                     string
     3463  SubLabels                                     TagStructure Struct+
     3464
    15753465=head3 XMP iptcCore Tags
    15763466
    1577 IPTC Core schema tags.  The actual IPTC Core namespace prefix is
     3467IPTC Core namespace tags.  The actual IPTC Core namespace prefix is
    15783468"Iptc4xmpCore", which is the prefix recorded in the file, but ExifTool
    1579 shortens this for the "XMP-iptcCore" family 1 group name. (see
     3469shortens this for the family 1 group name. (see
    15803470L<http://www.iptc.org/IPTC4XMP/>)
     3471
     3472These tags belong to the ExifTool XMP-iptcCore family 1 group.
    15813473
    15823474  Tag Name                                      Writable
     
    16123504=head3 XMP iptcExt Tags
    16133505
    1614 IPTC Extension schema tags.  The actual namespace prefix is "Iptc4xmpExt",
    1615 but ExifTool shortens this for the "XMP-iptcExt" family 1 group name.
    1616 (see L<http://www.iptc.org/IPTC4XMP/>)
     3506This table contains tags defined by the IPTC Extension schema version 1.5.
     3507The actual namespace prefix is "Iptc4xmpExt", but ExifTool shortens this for
     3508the family 1 group name. (see L<http://www.iptc.org/IPTC4XMP/>)
     3509
     3510These tags belong to the ExifTool XMP-iptcExt family 1 group.
    16173511
    16183512  Tag Name                                      Writable
    16193513  --------                                      --------
     3514  AboutCvTerm                                   CVTermDetails Struct+
     3515  AboutCvTermCvId                               string_+
     3516  AboutCvTermId                                 string_+
     3517  AboutCvTermName                               lang-alt_+
     3518  AboutCvTermRefinedAbout                       string_+
    16203519  AdditionalModelInformation                    string
    16213520  ArtworkOrObject                               ArtworkOrObjectDetails Struct+
     3521  ArtworkCircaDateCreated                       string!_+
     3522  ArtworkContentDescription                     lang-alt_+
     3523  ArtworkContributionDescription                lang-alt_+
    16223524  ArtworkCopyrightNotice                        string_+
    16233525  ArtworkCreator                                string_+
     3526  ArtworkCreatorID                              string_+
     3527  ArtworkCopyrightOwnerID                       string_+
     3528  ArtworkCopyrightOwnerName                     string_+
     3529  ArtworkLicensorID                             string_+
     3530  ArtworkLicensorName                           string_+
    16243531  ArtworkDateCreated                            date_+
     3532  ArtworkPhysicalDescription                    lang-alt_+
    16253533  ArtworkSource                                 string_+
    16263534  ArtworkSourceInventoryNo                      string_+
     3535  ArtworkSourceInvURL                           string_+
     3536  ArtworkStylePeriod                            string_+
    16273537  ArtworkTitle                                  lang-alt_+
     3538  AudioBitrate                                  integer
     3539  AudioBitrateMode                              string
     3540  AudioBitsPerSample                            integer
     3541  AudioChannelCount                             integer
     3542  CircaDateCreated                              string
     3543  ContainerFormat                               Entity Struct
     3544  ContainerFormatIdentifier                     string_+
     3545  ContainerFormatName                           lang-alt_
     3546  Contributor                                   EntityWithRole Struct+
     3547  ContributorIdentifier                         string_+
     3548  ContributorName                               lang-alt_+
     3549  ContributorRole                               string_+
     3550  CopyrightYear                                 integer
     3551  Creator                                       EntityWithRole Struct+
     3552  CreatorIdentifier                             string_+
     3553  CreatorName                                   lang-alt_+
     3554  CreatorRole                                   string_+
    16283555  ControlledVocabularyTerm                      string+
     3556  DataOnScreen                                  TextRegion Struct+
     3557  DataOnScreenRegion                            Area Struct_+
     3558  DataOnScreenRegionD                           real_+
     3559  DataOnScreenRegionH                           real_+
     3560  DataOnScreenRegionText                        string_+
     3561  DataOnScreenRegionUnit                        string_+
     3562  DataOnScreenRegionW                           real_+
     3563  DataOnScreenRegionX                           real_+
     3564  DataOnScreenRegionY                           real_+
    16293565  DigitalImageGUID                              string
    16303566  DigitalSourceFileType                         string
    16313567  DigitalSourceType                             string
     3568  Dopesheet                                     lang-alt
     3569  DopesheetLink                                 QualifiedLink Struct+
     3570  DopesheetLinkLink                             string_+
     3571  DopesheetLinkLinkQualifier                    string_+
     3572  EmbdEncRightsExpr                             EEREDetails Struct+
     3573  EmbeddedEncodedRightsExpr                     string_+
     3574  EmbeddedEncodedRightsExprType                 string_+
     3575  EmbeddedEncodedRightsExprLangID               string_+
     3576  Episode                                       EpisodeOrSeason Struct
     3577  EpisodeIdentifier                             string_
     3578  EpisodeName                                   string_
     3579  EpisodeNumber                                 string_
    16323580  Event                                         lang-alt
    1633   IptcLastEdited                                date
     3581  ShownEvent                                    Entity Struct+
     3582  ShownEventIdentifier                          string_+
     3583  ShownEventName                                lang-alt_+
     3584  ExternalMetadataLink                          string+
     3585  FeedIdentifier                                string
     3586  Genre                                         CVTermDetails Struct+
     3587  GenreCvId                                     string_+
     3588  GenreCvTermId                                 string_+
     3589  GenreCvTermName                               lang-alt_+
     3590  GenreCvTermRefinedAbout                       string_+
     3591  Headline                                      lang-alt/
     3592  ImageRegion                                   ImageRegion Struct+
     3593  ImageRegionName                               lang-alt_+
     3594  ImageRegionCtype                              Entity Struct_+
     3595  ImageRegionCtypeIdentifier                    string_+
     3596  ImageRegionCtypeName                          lang-alt_+
     3597  ImageRegionBoundary                           RegionBoundary Struct_+
     3598  ImageRegionBoundaryH                          real_+
     3599  ImageRegionBoundaryRx                         real_+
     3600  ImageRegionBoundaryShape                      string_+
     3601  ImageRegionBoundaryUnit                       string_+
     3602  ImageRegionBoundaryVertices                   BoundaryPoint Struct_+
     3603  ImageRegionBoundaryVerticesX                  real_+
     3604  ImageRegionBoundaryVerticesY                  real_+
     3605  ImageRegionBoundaryW                          real_+
     3606  ImageRegionBoundaryX                          real_+
     3607  ImageRegionBoundaryY                          real_+
     3608  ImageRegionID                                 string_+
     3609  ImageRegionRole                               Entity Struct_+
     3610  ImageRegionRoleIdentifier                     string_+
     3611  ImageRegionRoleName                           lang-alt_+
     3612  IPTCLastEdited                                date
     3613  LinkedEncRightsExpr                           LEREDetails Struct+
     3614  LinkedEncodedRightsExpr                       string_+
     3615  LinkedEncodedRightsExprType                   string_+
     3616  LinkedEncodedRightsExprLangID                 string_+
    16343617  LocationCreated                               LocationDetails Struct+
    16353618  LocationCreatedCity                           string_+
    16363619  LocationCreatedCountryCode                    string_+
    16373620  LocationCreatedCountryName                    string_+
     3621  LocationCreatedGPSAltitude                    rational_+
     3622  LocationCreatedGPSLatitude                    string_+
     3623  LocationCreatedGPSLongitude                   string_+
     3624  LocationCreatedIdentifier                     string_+
     3625  LocationCreatedLocationId                     string_+
     3626  LocationCreatedLocationName                   lang-alt_+
    16383627  LocationCreatedProvinceState                  string_+
    16393628  LocationCreatedSublocation                    string_+
     
    16433632  LocationShownCountryCode                      string_+
    16443633  LocationShownCountryName                      string_+
     3634  LocationShownGPSAltitude                      rational_+
     3635  LocationShownGPSLatitude                      string_+
     3636  LocationShownGPSLongitude                     string_+
     3637  LocationShownIdentifier                       string_+
     3638  LocationShownLocationId                       string_+
     3639  LocationShownLocationName                     lang-alt_+
    16453640  LocationShownProvinceState                    string_+
    16463641  LocationShownSublocation                      string_+
     
    16513646  OrganisationInImageCode                       string+
    16523647  OrganisationInImageName                       string+
     3648  PersonHeard                                   Entity Struct+
     3649  PersonHeardIdentifier                         string_+
     3650  PersonHeardName                               lang-alt_+
    16533651  PersonInImage                                 string+
    1654   RegistryId                                    RegistryEntryDetails Struct+
     3652  PersonInImageWDetails                         PersonDetails Struct+
     3653  PersonInImageCharacteristic                   CVTermDetails Struct_+
     3654  PersonInImageCvTermCvId                       string_+
     3655  PersonInImageCvTermId                         string_+
     3656  PersonInImageCvTermName                       lang-alt_+
     3657  PersonInImageCvTermRefinedAbout               string_+
     3658  PersonInImageDescription                      lang-alt_+
     3659  PersonInImageId                               string_+
     3660  PersonInImageName                             lang-alt_+
     3661  PlanningRef                                   EntityWithRole Struct+
     3662  PlanningRefIdentifier                         string_+
     3663  PlanningRefName                               lang-alt_+
     3664  PlanningRefRole                               string_+
     3665  ProductInImage                                ProductDetails Struct+
     3666  ProductInImageDescription                     lang-alt_+
     3667  ProductInImageGTIN                            string_+
     3668  ProductInImageName                            lang-alt_+
     3669  PublicationEvent                              PublicationEvent Struct+
     3670  PublicationEventDate                          date_+
     3671  PublicationEventIdentifier                    string_+
     3672  PublicationEventName                          string_+
     3673  Rating                                        Rating Struct+
     3674  RatingRegion                                  LocationDetails Struct_+
     3675  RatingRegionCity                              string_+
     3676  RatingRegionCountryCode                       string_+
     3677  RatingRegionCountryName                       string_+
     3678  RatingRegionGPSAltitude                       rational_+
     3679  RatingRegionGPSLatitude                       string_+
     3680  RatingRegionGPSLongitude                      string_+
     3681  RatingRegionIdentifier                        string_+
     3682  RatingRegionLocationId                        string_+
     3683  RatingRegionLocationName                      lang-alt_+
     3684  RatingRegionProvinceState                     string_+
     3685  RatingRegionSublocation                       string_+
     3686  RatingRegionWorldRegion                       string_+
     3687  RatingScaleMaxValue                           string_+
     3688  RatingScaleMinValue                           string_+
     3689  RatingSourceLink                              string_+
     3690  RatingValue                                   string_+
     3691  RatingValueLogoLink                           string_+
     3692  RecDevice                                     Device Struct
     3693  RecDeviceAttLensDescription                   string_
     3694  RecDeviceManufacturer                         string_
     3695  RecDeviceModelName                            string_
     3696  RecDeviceOwnersDeviceId                       string_
     3697  RecDeviceSerialNumber                         string_
     3698  RegistryID                                    RegistryEntryDetails Struct+
     3699  RegistryEntryRole                             string_+
    16553700  RegistryItemID                                string_+
    16563701  RegistryOrganisationID                        string_+
    1657 
    1658 =head3 XMP ArtworkOrObjectDetails Struct
     3702  ReleaseReady                                  boolean
     3703  Season                                        EpisodeOrSeason Struct
     3704  SeasonIdentifier                              string_
     3705  SeasonName                                    string_
     3706  SeasonNumber                                  string_
     3707  Series                                        Series Struct
     3708  SeriesIdentifier                              string_
     3709  SeriesName                                    string_
     3710  Snapshot                                      LinkedImage Struct+
     3711  SnapshotFormat                                string_+
     3712  SnapshotHeightPixels                          integer_+
     3713  SnapshotImageRole                             string_+
     3714  SnapshotLink                                  string_+
     3715  SnapshotLinkQualifier                         string_+
     3716  SnapshotUsedVideoFrame                        Timecode Struct_+
     3717  SnapshotUsedVideoFrameTimeFormat              string_+
     3718  SnapshotUsedVideoFrameTimeValue               string_+
     3719  SnapshotUsedVideoFrameValue                   integer_+
     3720  SnapshotWidthPixels                           integer_+
     3721  StorylineIdentifier                           string+
     3722  StreamReady                                   string
     3723  StylePeriod                                   string
     3724  SupplyChainSource                             Entity Struct+
     3725  SupplyChainSourceIdentifier                   string_+
     3726  SupplyChainSourceName                         lang-alt_+
     3727  TemporalCoverage                              TemporalCoverage Struct
     3728  TemporalCoverageFrom                          date_
     3729  TemporalCoverageTo                            date_
     3730  Transcript                                    lang-alt
     3731  TranscriptLink                                QualifiedLink Struct+
     3732  TranscriptLinkLink                            string_+
     3733  TranscriptLinkLinkQualifier                   string_+
     3734  VideoBitrate                                  integer
     3735  VideoBitrateMode                              string
     3736  VideoDisplayAspectRatio                       rational
     3737  VideoEncodingProfile                          string
     3738  VideoShotType                                 Entity Struct+
     3739  VideoShotTypeIdentifier                       string_+
     3740  VideoShotTypeName                             lang-alt_+
     3741  VideoStreamsCount                             integer
     3742  VisualColor                                   string
     3743  WorkflowTag                                   CVTermDetails Struct
     3744  WorkflowTagCvId                               string_
     3745  WorkflowTagCvTermId                           string_
     3746  WorkflowTagCvTermName                         lang-alt_
     3747  WorkflowTagCvTermRefinedAbout                 string_
     3748
     3749=head3 XMP CVTermDetails Struct
    16593750
    16603751  Field Name                                    Writable
    16613752  ----------                                    --------
     3753  CvId                                          string
     3754  CvTermId                                      string
     3755  CvTermName                                    lang-alt
     3756  CvTermRefinedAbout                            string
     3757
     3758=head3 XMP ArtworkOrObjectDetails Struct
     3759
     3760  Field Name                                    Writable
     3761  ----------                                    --------
     3762  AOCircaDateCreated                            string
     3763  AOContentDescription                          lang-alt
     3764  AOContributionDescription                     lang-alt
    16623765  AOCopyrightNotice                             string
    16633766  AOCreator                                     string+
     3767  AOCreatorId                                   string+
     3768  AOCurrentCopyrightOwnerId                     string
     3769  AOCurrentCopyrightOwnerName                   string
     3770  AOCurrentLicensorId                           string
     3771  AOCurrentLicensorName                         string
    16643772  AODateCreated                                 date
     3773  AOPhysicalDescription                         lang-alt
    16653774  AOSource                                      string
    16663775  AOSourceInvNo                                 string
     3776  AOSourceInvURL                                string
     3777  AOStylePeriod                                 string+
    16673778  AOTitle                                       lang-alt
    16683779
    1669 =head3 XMP LocationDetails Struct
     3780=head3 XMP Entity Struct
    16703781
    16713782  Field Name                                    Writable
    16723783  ----------                                    --------
    1673   City                                          string
    1674   CountryCode                                   string
    1675   CountryName                                   string
    1676   ProvinceState                                 string
    1677   Sublocation                                   string
    1678   WorldRegion                                   string
    1679 
    1680 =head3 XMP RegistryEntryDetails Struct
     3784  Identifier                                    string+
     3785  Name                                          lang-alt
     3786
     3787=head3 XMP EntityWithRole Struct
    16813788
    16823789  Field Name                                    Writable
    16833790  ----------                                    --------
    1684   RegItemId                                     string
    1685   RegOrgId                                      string
    1686 
    1687 =head3 XMP Lightroom Tags
    1688 
    1689 Adobe Lightroom "lr" schema tags.
    1690 
    1691   Tag Name                                      Writable
    1692   --------                                      --------
    1693   HierarchicalSubject                           string+
    1694   PrivateRTKInfo                                string
    1695 
    1696 =head3 XMP MediaPro Tags
    1697 
    1698 iView MediaPro schema tags.
    1699 
    1700   Tag Name                                      Writable
    1701   --------                                      --------
    1702   CatalogSets                                   string+
    1703   Event                                         string
    1704   Location                                      string/
    1705   People                                        string+
    1706   Status                                        string
    1707   UserFields                                    string+
    1708 
    1709 =head3 XMP mwg_coll Tags
    1710 
    1711 Collections metadata defined by the MWG 2.0 specification.  See
    1712 L<http://www.metadataworkinggroup.org/> for the official specification.
    1713 
    1714   Tag Name                                      Writable
    1715   --------                                      --------
    1716   Collections                                   CollectionInfo Struct+
    1717   CollectionName                                string_+
    1718   CollectionURI                                 string_+
    1719 
    1720 =head3 XMP CollectionInfo Struct
     3791  Identifier                                    string+
     3792  Name                                          lang-alt
     3793  Role                                          string+
     3794
     3795=head3 XMP TextRegion Struct
    17213796
    17223797  Field Name                                    Writable
    17233798  ----------                                    --------
    1724   CollectionName                                string
    1725   CollectionURI                                 string
    1726 
    1727 =head3 XMP mwg_kw Tags
    1728 
    1729 Hierarchical keywords metadata defined by the MWG 2.0 specification.
    1730 ExifTool unrolls keyword structures to an arbitrary depth of 4 to allow
    1731 individual levels to be accessed with different tag names, and to avoid
    1732 infinite recursion.  See L<http://www.metadataworkinggroup.org/> for the
    1733 official specification.
    1734 
    1735   Tag Name                                      Writable
    1736   --------                                      --------
    1737   KeywordInfo                                   KeywordInfo Struct
    1738   HierarchicalKeywords                          KeywordStruct1 Struct_+
    1739   HierarchicalKeywords1Applied                  boolean_+
    1740   HierarchicalKeywords1Children                 KeywordStruct2 Struct_+
    1741   HierarchicalKeywords2Applied                  boolean_+
    1742   HierarchicalKeywords2Children                 KeywordStruct3 Struct_+
    1743   HierarchicalKeywords3Applied                  boolean_+
    1744   HierarchicalKeywords3Children                 KeywordStruct4 Struct_+
    1745   HierarchicalKeywords4Applied                  boolean_+
    1746   HierarchicalKeywords4                         string_+
    1747   HierarchicalKeywords3                         string_+
    1748   HierarchicalKeywords2                         string_+
    1749   HierarchicalKeywords1                         string_+
    1750 
    1751 =head3 XMP KeywordInfo Struct
    1752 
    1753   Field Name                                    Writable
    1754   ----------                                    --------
    1755   Hierarchy                                     KeywordStruct1 Struct+
    1756 
    1757 =head3 XMP KeywordStruct1 Struct
    1758 
    1759   Field Name                                    Writable
    1760   ----------                                    --------
    1761   Applied                                       boolean
    1762   Children                                      KeywordStruct2 Struct+
    1763   Keyword                                       string
    1764 
    1765 =head3 XMP KeywordStruct2 Struct
    1766 
    1767   Field Name                                    Writable
    1768   ----------                                    --------
    1769   Applied                                       boolean
    1770   Children                                      KeywordStruct3 Struct+
    1771   Keyword                                       string
    1772 
    1773 =head3 XMP KeywordStruct3 Struct
    1774 
    1775   Field Name                                    Writable
    1776   ----------                                    --------
    1777   Applied                                       boolean
    1778   Children                                      KeywordStruct4 Struct+
    1779   Keyword                                       string
    1780 
    1781 =head3 XMP KeywordStruct4 Struct
    1782 
    1783   Field Name                                    Writable
    1784   ----------                                    --------
    1785   Applied                                       boolean
    1786   Keyword                                       string
    1787 
    1788 =head3 XMP mwg_rs Tags
    1789 
    1790 Image region metadata defined by the MWG 2.0 specification.  See
    1791 L<http://www.metadataworkinggroup.org/> for the official specification.
    1792 
    1793   Tag Name                                      Writable
    1794   --------                                      --------
    1795   RegionInfo                                    RegionInfo Struct
    1796   RegionAppliedToDimensions                     Dimensions Struct_
    1797   RegionAppliedToDimensionsH                    real_
    1798   RegionAppliedToDimensionsUnit                 string_
    1799   RegionAppliedToDimensionsW                    real_
    1800   RegionList                                    RegionStruct Struct_+
    1801   RegionArea                                    Area Struct_+
    1802   RegionAreaD                                   real_+
    1803   RegionAreaH                                   real_+
    1804   RegionAreaUnit                                string_+
    1805   RegionAreaW                                   real_+
    1806   RegionAreaX                                   real_+
    1807   RegionAreaY                                   real_+
    1808   RegionBarCodeValue                            string_+
    1809   RegionDescription                             string_+
    1810   RegionExtensions                              Extensions Struct_+
    1811   RegionFocusUsage                              string_+
    1812   RegionName                                    string_+
    1813   RegionSeeAlso                                 string_+
    1814   RegionType                                    string_+
    1815 
    1816 =head3 XMP RegionInfo Struct
    1817 
    1818   Field Name                                    Writable
    1819   ----------                                    --------
    1820   AppliedToDimensions                           Dimensions Struct
    1821   RegionList                                    RegionStruct Struct+
    1822 
    1823 =head3 XMP Dimensions Struct
    1824 
    1825   Field Name                                    Writable
    1826   ----------                                    --------
    1827   H                                             real
    1828   Unit                                          string
    1829   W                                             real
    1830 
    1831 =head3 XMP RegionStruct Struct
    1832 
    1833   Field Name                                    Writable
    1834   ----------                                    --------
    1835   Area                                          Area Struct
    1836   BarCodeValue                                  string
    1837   Description                                   string
    1838   Extensions                                    Extensions Struct
    1839   FocusUsage                                    string
    1840   Name                                          string
    1841   Type                                          string
    1842   SeeAlso                                       string
     3799  Region                                        Area Struct
     3800  RegionText                                    string
    18433801
    18443802=head3 XMP Area Struct
     
    18533811  Y                                             real
    18543812
    1855 =head3 XMP Extensions Struct
    1856 
    1857 This structure may contain any top-level XMP tags, but none have been
    1858 pre-defined in ExifTool.  Without pre-defined flattened tag names,
    1859 RegionExtensions may be written only as a structure (ie.
    1860 C<{xmp-dc:creator=me,rating=5}>).  Fields for this structure are identified
    1861 using the standard ExifTool tag name (with optional leading group name,
    1862 and/or trailing language code, and/or trailing C<#> symbol to disable print
    1863 conversion).
     3813=head3 XMP QualifiedLink Struct
    18643814
    18653815  Field Name                                    Writable
    18663816  ----------                                    --------
    1867   [no tags known]
     3817  Link                                          string
     3818  LinkQualifier                                 string
     3819
     3820=head3 XMP EEREDetails Struct
     3821
     3822  Field Name                                    Writable
     3823  ----------                                    --------
     3824  EncRightsExpr                                 string
     3825  RightsExprEncType                             string
     3826  RightsExprLangId                              string
     3827
     3828=head3 XMP EpisodeOrSeason Struct
     3829
     3830  Field Name                                    Writable
     3831  ----------                                    --------
     3832  Identifier                                    string
     3833  Name                                          string
     3834  Number                                        string
     3835
     3836=head3 XMP ImageRegion Struct
     3837
     3838This structure is new in the IPTC Extension version 1.5 specification.  As
     3839well as the fields defined below, this structure may contain any top-level
     3840XMP tags, but since they aren't pre-defined the only way to add these tags
     3841is to write ImageRegion as a structure with these tags as new fields.
     3842
     3843  Field Name                                    Writable
     3844  ----------                                    --------
     3845  Name                                          lang-alt
     3846  RegionBoundary                                RegionBoundary Struct
     3847  RCtype                                        Entity Struct+
     3848  RId                                           string
     3849  RRole                                         Entity Struct+
     3850
     3851=head3 XMP RegionBoundary Struct
     3852
     3853  Field Name                                    Writable
     3854  ----------                                    --------
     3855  RbH                                           real
     3856  RbRx                                          real
     3857  RbShape                                       string
     3858  RbUnit                                        string
     3859  RbVertices                                    BoundaryPoint Struct+
     3860  RbW                                           real
     3861  RbX                                           real
     3862  RbY                                           real
     3863
     3864=head3 XMP BoundaryPoint Struct
     3865
     3866  Field Name                                    Writable
     3867  ----------                                    --------
     3868  RbX                                           real
     3869  RbY                                           real
     3870
     3871=head3 XMP LEREDetails Struct
     3872
     3873  Field Name                                    Writable
     3874  ----------                                    --------
     3875  LinkedRightsExpr                              string
     3876  RightsExprEncType                             string
     3877  RightsExprLangId                              string
     3878
     3879=head3 XMP LocationDetails Struct
     3880
     3881  Field Name                                    Writable
     3882  ----------                                    --------
     3883  City                                          string
     3884  CountryCode                                   string
     3885  CountryName                                   string
     3886  GPSAltitude                                   rational
     3887  GPSLatitude                                   string
     3888  GPSLongitude                                  string
     3889  Identifier                                    string+
     3890  LocationId                                    string+
     3891  LocationName                                  lang-alt
     3892  ProvinceState                                 string
     3893  Sublocation                                   string
     3894  WorldRegion                                   string
     3895
     3896=head3 XMP PersonDetails Struct
     3897
     3898  Field Name                                    Writable
     3899  ----------                                    --------
     3900  PersonCharacteristic                          CVTermDetails Struct+
     3901  PersonDescription                             lang-alt
     3902  PersonId                                      string+
     3903  PersonName                                    lang-alt
     3904
     3905=head3 XMP ProductDetails Struct
     3906
     3907  Field Name                                    Writable
     3908  ----------                                    --------
     3909  ProductDescription                            lang-alt
     3910  ProductGTIN                                   string
     3911  ProductName                                   lang-alt
     3912
     3913=head3 XMP PublicationEvent Struct
     3914
     3915  Field Name                                    Writable
     3916  ----------                                    --------
     3917  Date                                          date
     3918  Identifier                                    string
     3919  Name                                          string
     3920
     3921=head3 XMP Rating Struct
     3922
     3923  Field Name                                    Writable
     3924  ----------                                    --------
     3925  RatingRegion                                  LocationDetails Struct+
     3926  RatingScaleMaxValue                           string
     3927  RatingScaleMinValue                           string
     3928  RatingSourceLink                              string
     3929  RatingValue                                   string
     3930  RatingValueLogoLink                           string
     3931
     3932=head3 XMP Device Struct
     3933
     3934  Field Name                                    Writable
     3935  ----------                                    --------
     3936  AttLensDescription                            string
     3937  Manufacturer                                  string
     3938  ModelName                                     string
     3939  OwnersDeviceId                                string
     3940  SerialNumber                                  string
     3941
     3942=head3 XMP RegistryEntryDetails Struct
     3943
     3944  Field Name                                    Writable
     3945  ----------                                    --------
     3946  RegEntryRole                                  string
     3947  RegItemId                                     string
     3948  RegOrgId                                      string
     3949
     3950=head3 XMP Series Struct
     3951
     3952  Field Name                                    Writable
     3953  ----------                                    --------
     3954  Identifier                                    string
     3955  Name                                          string
     3956
     3957=head3 XMP LinkedImage Struct
     3958
     3959  Field Name                                    Writable
     3960  ----------                                    --------
     3961  HeightPixels                                  integer
     3962  ImageRole                                     string
     3963  Link                                          string
     3964  LinkQualifier                                 string+
     3965  UsedVideoFrame                                Timecode Struct
     3966  WidthPixels                                   integer
     3967  Format                                        string
     3968
     3969=head3 XMP Timecode Struct
     3970
     3971  Field Name                                    Writable
     3972  ----------                                    --------
     3973  TimeFormat                                    string
     3974  TimeValue                                     string
     3975  Value                                         integer
     3976
     3977=head3 XMP TemporalCoverage Struct
     3978
     3979  Field Name                                    Writable
     3980  ----------                                    --------
     3981  TempCoverageFrom                              date
     3982  TempCoverageTo                                date
     3983
     3984=head3 XMP LImage Tags
     3985
     3986Tags written by RED smartphones.
     3987
     3988These tags belong to the ExifTool XMP-LImage family 1 group.
     3989
     3990  Tag Name                                      Writable
     3991  --------                                      --------
     3992  MajorVersion                                  string
     3993  MinorVersion                                  string
     3994  RightAlbedo                                   string
     3995
     3996=head3 XMP Lightroom Tags
     3997
     3998Adobe Lightroom "lr" namespace tags.
     3999
     4000These tags belong to the ExifTool XMP-lr family 1 group.
     4001
     4002  Tag Name                                      Writable
     4003  --------                                      --------
     4004  HierarchicalSubject                           string+
     4005  PrivateRTKInfo                                string
     4006
     4007=head3 XMP MediaPro Tags
     4008
     4009iView MediaPro namespace tags.
     4010
     4011These tags belong to the ExifTool XMP-mediapro family 1 group.
     4012
     4013  Tag Name                                      Writable
     4014  --------                                      --------
     4015  CatalogSets                                   string+
     4016  Event                                         string/
     4017  Location                                      string/
     4018  People                                        string+
     4019  Status                                        string
     4020  UserFields                                    string+
    18684021
    18694022=head3 XMP pdf Tags
    18704023
    1871 Adobe PDF schema tags.  The official XMP specification defines only
     4024Adobe PDF namespace tags.  The official XMP specification defines only
    18724025Keywords, PDFVersion, Producer and Trapped.  The other tags are included
    18734026because they have been observed in PDF files, but some are avoided when
    18744027writing due to name conflicts with other XMP namespaces.
     4028
     4029These tags belong to the ExifTool XMP-pdf family 1 group.
    18754030
    18764031  Tag Name                                      Writable
     
    18954050created to enable writing of XMP-pdfx information.
    18964051
     4052These tags belong to the ExifTool XMP-pdfx family 1 group.
     4053
    18974054  Tag Name                                      Writable
    18984055  --------                                      --------
     
    19014058=head3 XMP photoshop Tags
    19024059
    1903 Adobe Photoshop schema tags.
     4060Adobe Photoshop namespace tags.
     4061
     4062These tags belong to the ExifTool XMP-photoshop family 1 group.
    19044063
    19054064  Tag Name                                      Writable
     
    19134072  Credit                                        string
    19144073  DateCreated                                   date
    1915   DocumentAncestors                             Ancestor Struct+
    1916   DocumentAncestorID                            string_+
     4074  DocumentAncestors                             string+
     4075  EmbeddedXMPDigest                             string
    19174076  Headline                                      string
    19184077  History                                       string
     
    19304089  Urgency                                       integer
    19314090
    1932 =head3 XMP Ancestor Struct
    1933 
    1934   Field Name                                    Writable
    1935   ----------                                    --------
    1936   AncestorID                                    string
    1937 
    19384091=head3 XMP Layer Struct
    19394092
     
    19454098=head3 XMP PixelLive Tags
    19464099
    1947 PixelLive schema tags.  These tags are not writable becase they are very
     4100PixelLive namespace tags.  These tags are not writable because they are very
    19484101uncommon and I haven't been able to locate a reference which gives the
    19494102namespace URI.
    19504103
     4104These tags belong to the ExifTool XMP-PixelLive family 1 group.
     4105
    19514106  Tag Name                                      Writable
    19524107  --------                                      --------
    1953   Author                                        N
    1954   Comments                                      N
    1955   Copyright                                     N
    1956   Date                                          N
    1957   Genre                                         N
    1958   Title                                         N
    1959 
    1960 =head3 XMP plus Tags
    1961 
    1962 PLUS License Data Format 1.2.0 schema tags.  Note that all
    1963 controlled-vocabulary tags in this table (ie. tags with a fixed set of
    1964 values) have raw values which begin with "http://ns.useplus.org/ldf/vocab/",
    1965 but to reduce clutter this prefix has been removed from the values shown
    1966 below.  (see L<http://ns.useplus.org/>)
     4108  Author                                        no
     4109  Comments                                      no
     4110  Copyright                                     no
     4111  Date                                          no
     4112  Genre                                         no
     4113  Title                                         no
     4114
     4115=head3 XMP pmi Tags
     4116
     4117PRISM Metadata for Images 3.0 namespace tags.  (see
     4118L<http://www.prismstandard.org/>)
     4119
     4120These tags belong to the ExifTool XMP-pmi family 1 group.
     4121
     4122  Tag Name                                      Writable
     4123  --------                                      --------
     4124  Color                                         string/
     4125  ContactInfo                                   string/
     4126  DisplayName                                   string/
     4127  DistributorProductID                          string/
     4128  EventAlias                                    string/
     4129  EventEnd                                      string/
     4130  EventStart                                    string/
     4131  EventSubtype                                  string/
     4132  EventType                                     string/
     4133  Field                                         string/
     4134  Framing                                       string/
     4135  Location                                      string/
     4136  Make                                          string/
     4137  Manufacturer                                  string/
     4138  Model                                         string/
     4139  ModelYear                                     string/
     4140  ObjectDescription                             string/
     4141  ObjectSubtype                                 string/
     4142  ObjectType                                    string/
     4143  Orientation                                   string/
     4144  PositionDescriptor                            string/
     4145  ProductID                                     string/
     4146  ProductIDType                                 string/
     4147  Season                                        string/
     4148  SequenceName                                  string/
     4149  SequenceNumber                                string/
     4150  SequenceTotalNumber                           string/
     4151  Setting                                       string/
     4152  ShootID                                       string/
     4153  SlideshowName                                 string/
     4154  SlideshowNumber                               integer/
     4155  SlideshowTotalNumber                          integer/
     4156  Viewpoint                                     string/
     4157  VisualTechnique                               string/
     4158
     4159=head3 XMP prism Tags
     4160
     4161Publishing Requirements for Industry Standard Metadata 3.0 namespace
     4162tags.  (see L<http://www.prismstandard.org/>)
     4163
     4164These tags belong to the ExifTool XMP-prism family 1 group.
     4165
     4166  Tag Name                                      Writable
     4167  --------                                      --------
     4168  AcademicField                                 string/
     4169  AggregateIssueNumber                          integer/
     4170  AggregationType                               string/+
     4171  AlternateTitle                                prismAlternateTitle Struct+
     4172  AlternateTitleA-lang                          string/_+
     4173  AlternateTitleA-platform                      string/_+
     4174  AlternateTitleText                            string/_+
     4175  BlogTitle                                     string/
     4176  BlogURL                                       string/
     4177  BookEdition                                   string/
     4178  ByteCount                                     integer/
     4179  Channel                                       prismChannel Struct+
     4180  ChannelA-lang                                 string/_+
     4181  ChannelChannel                                string/_+
     4182  ChannelSubchannel1                            string/_+
     4183  ChannelSubchannel2                            string/_+
     4184  ChannelSubchannel3                            string/_+
     4185  ChannelSubchannel4                            string/_+
     4186  ComplianceProfile                             string/
     4187  ContentType                                   string/
     4188  CopyrightYear                                 string/
     4189  CorporateEntity                               string/+
     4190  CoverDate                                     date/
     4191  CoverDisplayDate                              string/
     4192  CreationDate                                  date/
     4193  DateRecieved                                  date/
     4194  Device                                        string/
     4195  Distributor                                   string/
     4196  DOI                                           string/
     4197  Edition                                       string/
     4198  EIssn                                         string/
     4199  EndingPage                                    string/
     4200  Event                                         string/+
     4201  Genre                                         string/+
     4202  HasAlternative                                string/+
     4203  HasCorrection                                 prismHasCorrection Struct
     4204  HasCorrectionA-lang                           string/_
     4205  HasCorrectionA-platform                       string/_
     4206  HasCorrectionText                             string/_
     4207  HasTranslation                                string/+
     4208  Industry                                      string/+
     4209  IsAlternativeOf                               string/+
     4210  ISBN                                          string/+
     4211  IsCorrectionOf                                string/+
     4212  ISSN                                          string/
     4213  IssueIdentifier                               string/
     4214  IssueName                                     string/
     4215  IssueTeaser                                   string/
     4216  IssueType                                     string/
     4217  IsTranslationOf                               string/
     4218  Keyword                                       string/+
     4219  KillDate                                      prismKillDate Struct
     4220  KillDateA-platform                            string/_
     4221  KillDateDate                                  date/_
     4222  Link                                          string/+
     4223  Location                                      string/+
     4224  ModificationDate                              date/
     4225  NationalCatalogNumber                         string/
     4226  Number                                        string/
     4227  Object                                        string/+
     4228  OffSaleDate                                   prismOffSaleDate Struct+
     4229  OffSaleDateA-platform                         string/_+
     4230  OffSaleDateDate                               date/_+
     4231  OnSaleDate                                    prismOnSaleDate Struct+
     4232  OnSaleDateA-platform                          string/_+
     4233  OnSaleDateDate                                date/_+
     4234  OnSaleDay                                     prismOnSaleDay Struct+
     4235  OnSaleDayA-platform                           string/_+
     4236  OnSaleDayDay                                  string/_+
     4237  Organization                                  string/+
     4238  OriginPlatform                                string/+
     4239  PageCount                                     integer/
     4240  PageProgressionDirection                      string/
     4241  PageRange                                     string/+
     4242  Person                                        string/
     4243  Platform                                      string/
     4244  ProductCode                                   string/
     4245  Profession                                    string/
     4246  PublicationDate                               prismPublicationDate Struct+
     4247  PublicationDateA-platform                     string/_+
     4248  PublicationDateDate                           date/_+
     4249  PublicationDisplayDate                        prismPublicationDate Struct+
     4250  PublicationDisplayDateA-platform              string/_+
     4251  PublicationDisplayDateDate                    date/_+
     4252  PublicationName                               string/
     4253  PublishingFrequency                           string/
     4254  Rating                                        string/
     4255  SamplePageRange                               string/
     4256  Section                                       string/
     4257  SellingAgency                                 string/
     4258  SeriesNumber                                  integer/
     4259  SeriesTitle                                   string/
     4260  Sport                                         string/
     4261  StartingPage                                  string/
     4262  Subsection1                                   string/
     4263  Subsection2                                   string/
     4264  Subsection3                                   string/
     4265  Subsection4                                   string/
     4266  Subtitle                                      string/
     4267  SupplementDisplayID                           string/
     4268  SupplementStartingPage                        string/
     4269  SupplementTitle                               string/
     4270  Teaser                                        string/+
     4271  Ticker                                        string/+
     4272  TimePeriod                                    string/
     4273  URL                                           prismUrl Struct+
     4274  URLA-platform                                 string/_+
     4275  URLUrl                                        string/_+
     4276  UspsNumber                                    string/
     4277  VersionIdentifier                             string/
     4278  Volume                                        string/
     4279  WordCount                                     integer/
     4280
     4281=head3 XMP prismAlternateTitle Struct
     4282
     4283  Field Name                                    Writable
     4284  ----------                                    --------
     4285  A-lang                                        string
     4286  A-platform                                    string
     4287  Text                                          string
     4288
     4289=head3 XMP prismChannel Struct
     4290
     4291  Field Name                                    Writable
     4292  ----------                                    --------
     4293  A-lang                                        string
     4294  Channel                                       string
     4295  Subchannel1                                   string
     4296  Subchannel2                                   string
     4297  Subchannel3                                   string
     4298  Subchannel4                                   string
     4299
     4300=head3 XMP prismHasCorrection Struct
     4301
     4302  Field Name                                    Writable
     4303  ----------                                    --------
     4304  A-lang                                        string
     4305  A-platform                                    string
     4306  Text                                          string
     4307
     4308=head3 XMP prismKillDate Struct
     4309
     4310  Field Name                                    Writable
     4311  ----------                                    --------
     4312  A-platform                                    string
     4313  Date                                          date
     4314
     4315=head3 XMP prismOffSaleDate Struct
     4316
     4317  Field Name                                    Writable
     4318  ----------                                    --------
     4319  A-platform                                    string
     4320  Date                                          date
     4321
     4322=head3 XMP prismOnSaleDate Struct
     4323
     4324  Field Name                                    Writable
     4325  ----------                                    --------
     4326  A-platform                                    string
     4327  Date                                          date
     4328
     4329=head3 XMP prismOnSaleDay Struct
     4330
     4331  Field Name                                    Writable
     4332  ----------                                    --------
     4333  A-platform                                    string
     4334  Day                                           string
     4335
     4336=head3 XMP prismPublicationDate Struct
     4337
     4338  Field Name                                    Writable
     4339  ----------                                    --------
     4340  A-platform                                    string
     4341  Date                                          date
     4342
     4343=head3 XMP prismUrl Struct
     4344
     4345  Field Name                                    Writable
     4346  ----------                                    --------
     4347  A-platform                                    string
     4348  Url                                           string
     4349
     4350=head3 XMP prl Tags
     4351
     4352PRISM Rights Language 2.1 namespace tags.  These tags have been deprecated
     4353since the release of the PRISM Usage Rights 3.0. (see
     4354L<http://www.prismstandard.org/>)
     4355
     4356These tags belong to the ExifTool XMP-prl family 1 group.
     4357
     4358  Tag Name                                      Writable
     4359  --------                                      --------
     4360  Geography                                     string/+
     4361  Industry                                      string/+
     4362  Usage                                         string/+
     4363
     4364=head3 XMP prm Tags
     4365
     4366PRISM Recipe Metadata 3.0 namespace tags.  (see
     4367L<http://www.prismstandard.org/>)
     4368
     4369These tags belong to the ExifTool XMP-prm family 1 group.
     4370
     4371  Tag Name                                      Writable
     4372  --------                                      --------
     4373  CookingEquipment                              string/
     4374  CookingMethod                                 string/
     4375  Course                                        string/
     4376  Cuisine                                       string/
     4377  DietaryNeeds                                  string/
     4378  DishType                                      string/
     4379  Duration                                      string/
     4380  IngredientExclusion                           string/
     4381  MainIngredient                                string/
     4382  Meal                                          string/
     4383  RecipeEndingPage                              string/
     4384  RecipePageRange                               string/
     4385  RecipeSource                                  string/
     4386  RecipeStartingPage                            string/
     4387  RecipeTitle                                   string/
     4388  ServingSize                                   string/
     4389  SkillLevel                                    string/
     4390  SpecialOccasion                               string/
     4391  Yield                                         string/
     4392
     4393=head3 XMP pur Tags
     4394
     4395PRISM Usage Rights 3.0 namespace tags.  (see
     4396L<http://www.prismstandard.org/>)
     4397
     4398These tags belong to the ExifTool XMP-pur family 1 group.
     4399
     4400  Tag Name                                      Writable
     4401  --------                                      --------
     4402  AdultContentWarning                           string/+
     4403  Agreement                                     string/+
     4404  Copyright                                     lang-alt/
     4405  CreditLine                                    string/+
     4406  EmbargoDate                                   date/+
     4407  ExclusivityEndDate                            date/+
     4408  ExpirationDate                                date/+
     4409  ImageSizeRestriction                          string/
     4410  OptionEndDate                                 date/+
     4411  Permissions                                   string/+
     4412  Restrictions                                  string/+
     4413  ReuseProhibited                               boolean/
     4414  RightsAgent                                   string/
     4415  RightsOwner                                   string/
     4416
     4417=head3 XMP rdf Tags
     4418
     4419Most RDF attributes are handled internally, but the "about" attribute is
     4420treated specially to allow it to be set to a specific value if required.
     4421
     4422These tags belong to the ExifTool XMP-rdf family 1 group.
     4423
     4424  Tag Name                                      Writable
     4425  --------                                      --------
     4426  About                                         string!
     4427
     4428=head3 XMP swf Tags
     4429
     4430Adobe SWF namespace tags.
     4431
     4432These tags belong to the ExifTool XMP-swf family 1 group.
     4433
     4434  Tag Name                                      Writable
     4435  --------                                      --------
     4436  BackgroundAlpha                               integer
     4437  ForwardLock                                   boolean
     4438  MaxStorage                                    integer
     4439  Type                                          string/
     4440
     4441=head3 XMP tiff Tags
     4442
     4443EXIF namespace for TIFF tags.  See
     4444L<https://web.archive.org/web/20180921145139if_/http://www.cipa.jp:80/std/documents/e/DC-010-2017_E.pdf>
     4445for the specification.
     4446
     4447These tags belong to the ExifTool XMP-tiff family 1 group.
     4448
     4449  Tag Name                                      Writable
     4450  --------                                      --------
     4451  Artist                                        string
     4452  BitsPerSample                                 integer+
     4453  Compression                                   integer
     4454  Copyright                                     lang-alt
     4455  DateTime                                      date
     4456  ImageDescription                              lang-alt
     4457  ImageHeight                                   integer
     4458  ImageWidth                                    integer
     4459  Make                                          string
     4460  Model                                         string
     4461  NativeDigest                                  string
     4462  Orientation                                   integer
     4463  PhotometricInterpretation                     integer
     4464  PlanarConfiguration                           integer
     4465  PrimaryChromaticities                         rational+
     4466  ReferenceBlackWhite                           rational+
     4467  ResolutionUnit                                integer
     4468  SamplesPerPixel                               integer
     4469  Software                                      string
     4470  TransferFunction                              integer+
     4471  WhitePoint                                    rational+
     4472  XResolution                                   rational
     4473  YCbCrCoefficients                             rational+
     4474  YCbCrPositioning                              integer
     4475  YCbCrSubSampling                              integer+
     4476  YResolution                                   rational
     4477
     4478=head3 XMP x Tags
     4479
     4480The "x" namespace is used for the "xmpmeta" wrapper, and may contain an
     4481"xmptk" attribute that is extracted as the XMPToolkit tag.  When writing,
     4482the XMPToolkit tag is generated automatically by ExifTool unless
     4483specifically set to another value.
     4484
     4485These tags belong to the ExifTool XMP-x family 1 group.
     4486
     4487  Tag Name                                      Writable
     4488  --------                                      --------
     4489  XMPToolkit                                    string!
     4490
     4491=head3 XMP xmp Tags
     4492
     4493XMP namespace tags.  If the older "xap", "xapBJ", "xapMM" or "xapRights"
     4494namespace prefixes are found, they are translated to the newer "xmp",
     4495"xmpBJ", "xmpMM" and "xmpRights" prefixes for use in family 1 group names.
     4496
     4497These tags belong to the ExifTool XMP-xmp family 1 group.
     4498
     4499  Tag Name                                      Writable
     4500  --------                                      --------
     4501  Advisory                                      string+
     4502  Author                                        string/
     4503  BaseURL                                       string
     4504  CreateDate                                    date
     4505  CreatorTool                                   string
     4506  Description                                   lang-alt/
     4507  Format                                        string/
     4508  Identifier                                    string/+
     4509  Keywords                                      string/
     4510  Label                                         string
     4511  MetadataDate                                  date
     4512  ModifyDate                                    date
     4513  Nickname                                      string
     4514  PageInfo                                      PageInfo Struct+
     4515  PageImageFormat                               string_+
     4516  PageImageHeight                               integer_+
     4517  PageImage                                     string_+
     4518  PageImagePageNumber                           integer_+
     4519  PageImageWidth                                integer_+
     4520  Rating                                        real
     4521  RatingPercent                                 real/
     4522  Thumbnails                                    Thumbnail Struct+
     4523  ThumbnailFormat                               string_+
     4524  ThumbnailHeight                               integer_+
     4525  ThumbnailImage                                string/_+
     4526  ThumbnailWidth                                integer_+
     4527  Title                                         lang-alt/
     4528
     4529=head3 XMP PageInfo Struct
     4530
     4531  Field Name                                    Writable
     4532  ----------                                    --------
     4533  PageNumber                                    integer
     4534  Format                                        string
     4535  Height                                        integer
     4536  Image                                         string
     4537  Width                                         integer
     4538
     4539=head3 XMP Thumbnail Struct
     4540
     4541  Field Name                                    Writable
     4542  ----------                                    --------
     4543  Format                                        string
     4544  Height                                        integer
     4545  Image                                         string
     4546  Width                                         integer
     4547
     4548=head3 XMP xmpBJ Tags
     4549
     4550XMP Basic Job Ticket namespace tags.
     4551
     4552These tags belong to the ExifTool XMP-xmpBJ family 1 group.
     4553
     4554  Tag Name                                      Writable
     4555  --------                                      --------
     4556  JobRef                                        JobRef Struct+
     4557  JobRefId                                      string_+
     4558  JobRefName                                    string_+
     4559  JobRefUrl                                     string_+
     4560
     4561=head3 XMP JobRef Struct
     4562
     4563  Field Name                                    Writable
     4564  ----------                                    --------
     4565  Id                                            string
     4566  Name                                          string
     4567  Url                                           string
     4568
     4569=head3 XMP xmpDM Tags
     4570
     4571XMP Dynamic Media namespace tags.
     4572
     4573These tags belong to the ExifTool XMP-xmpDM family 1 group.
     4574
     4575  Tag Name                                      Writable
     4576  --------                                      --------
     4577  AbsPeakAudioFilePath                          string
     4578  Album                                         string
     4579  AltTapeName                                   string
     4580  AltTimecode                                   Timecode Struct
     4581  AltTimecodeTimeFormat                         string_
     4582  AltTimecodeTimeValue                          string_
     4583  AltTimecodeValue                              integer_
     4584  Artist                                        string/
     4585  AudioChannelType                              string
     4586  AudioCompressor                               string
     4587  AudioModDate                                  date
     4588  AudioSampleRate                               integer
     4589  AudioSampleType                               string
     4590  BeatSpliceParams                              BeatSpliceStretch Struct
     4591  BeatSpliceParamsRiseInDecibel                 real_
     4592  BeatSpliceParamsRiseInTimeDuration            Time Struct_
     4593  BeatSpliceParamsRiseInTimeDurationScale       rational_
     4594  BeatSpliceParamsRiseInTimeDurationValue       integer_
     4595  BeatSpliceParamsUseFileBeatsMarker            boolean_
     4596  CameraAngle                                   string
     4597  CameraLabel                                   string
     4598  CameraModel                                   string
     4599  CameraMove                                    string
     4600  Client                                        string
     4601  DMComment                                     string
     4602  Composer                                      string
     4603  ContributedMedia                              Media Struct+
     4604  ContributedMediaDuration                      Time Struct_+
     4605  ContributedMediaDurationScale                 rational_+
     4606  ContributedMediaDurationValue                 integer_+
     4607  ContributedMediaManaged                       boolean_+
     4608  ContributedMediaPath                          string_+
     4609  ContributedMediaStartTime                     Time Struct_+
     4610  ContributedMediaStartTimeScale                rational_+
     4611  ContributedMediaStartTimeValue                integer_+
     4612  ContributedMediaTrack                         string_+
     4613  ContributedMediaWebStatement                  string_+
     4614  Copyright                                     string/
     4615  Director                                      string
     4616  DirectorPhotography                           string
     4617  DiscNumber                                    string
     4618  Duration                                      Time Struct
     4619  DurationScale                                 rational_
     4620  DurationValue                                 integer_
     4621  Engineer                                      string
     4622  FileDataRate                                  rational
     4623  Genre                                         string
     4624  Good                                          boolean
     4625  Instrument                                    string
     4626  IntroTime                                     Time Struct
     4627  IntroTimeScale                                rational_
     4628  IntroTimeValue                                integer_
     4629  Key                                           string
     4630  LogComment                                    string
     4631  Loop                                          boolean
     4632  Lyrics                                        string
     4633  Markers                                       Marker Struct+
     4634  MarkersComment                                string_+
     4635  MarkersCuePointParams                         CuePointParam Struct_+
     4636  MarkersCuePointParamsKey                      string_+
     4637  MarkersCuePointParamsValue                    string_+
     4638  MarkersCuePointType                           string_+
     4639  MarkersDuration                               string_+
     4640  MarkersLocation                               string_+
     4641  MarkersName                                   string_+
     4642  MarkersProbability                            real_+
     4643  MarkersSpeaker                                string_+
     4644  MarkersStartTime                              string_+
     4645  MarkersTarget                                 string_+
     4646  MarkersType                                   string_+
     4647  MetadataModDate                               date
     4648  NumberOfBeats                                 real
     4649  OutCue                                        Time Struct
     4650  OutCueScale                                   rational_
     4651  OutCueValue                                   integer_
     4652  PartOfCompilation                             boolean
     4653  ProjectName                                   string
     4654  ProjectRef                                    ProjectLink Struct
     4655  ProjectRefPath                                string_
     4656  ProjectRefType                                string_
     4657  PullDown                                      string
     4658  RelativePeakAudioFilePath                     string
     4659  RelativeTimestamp                             Time Struct
     4660  RelativeTimestampScale                        rational_
     4661  RelativeTimestampValue                        integer_
     4662  ReleaseDate                                   date
     4663  ResampleParams                                ResampleStretch Struct
     4664  ResampleParamsQuality                         string_
     4665  ScaleType                                     string
     4666  Scene                                         string/
     4667  ShotDate                                      date
     4668  ShotDay                                       string
     4669  ShotLocation                                  string
     4670  ShotName                                      string
     4671  ShotNumber                                    string
     4672  ShotSize                                      string
     4673  SpeakerPlacement                              string
     4674  StartTimecode                                 Timecode Struct
     4675  StartTimecodeTimeFormat                       string_
     4676  StartTimecodeTimeValue                        string_
     4677  StartTimecodeValue                            integer_
     4678  StartTimeSampleSize                           integer
     4679  StartTimeScale                                string
     4680  StretchMode                                   string
     4681  TakeNumber                                    integer
     4682  TapeName                                      string
     4683  Tempo                                         real
     4684  TimeScaleParams                               TimeScaleStretch Struct
     4685  TimeScaleParamsFrameOverlappingPercentage     real_
     4686  TimeScaleParamsFrameSize                      real_
     4687  TimeScaleParamsQuality                        string_
     4688  TimeSignature                                 string
     4689  TrackNumber                                   integer
     4690  Tracks                                        Track Struct+
     4691  TracksFrameRate                               string_+
     4692  TracksMarkers                                 Marker Struct_+
     4693  TracksMarkersComment                          string_+
     4694  TracksMarkersCuePointParams                   CuePointParam Struct_+
     4695  TracksMarkersCuePointParamsKey                string_+
     4696  TracksMarkersCuePointParamsValue              string_+
     4697  TracksMarkersCuePointType                     string_+
     4698  TracksMarkersDuration                         string_+
     4699  TracksMarkersLocation                         string_+
     4700  TracksMarkersName                             string_+
     4701  TracksMarkersProbability                      real_+
     4702  TracksMarkersSpeaker                          string_+
     4703  TracksMarkersStartTime                        string_+
     4704  TracksMarkersTarget                           string_+
     4705  TracksMarkersType                             string_+
     4706  TracksTrackName                               string_+
     4707  TracksTrackType                               string_+
     4708  VideoAlphaMode                                string
     4709  VideoAlphaPremultipleColor                    Colorant Struct
     4710  VideoAlphaPremultipleColorA                   integer_
     4711  VideoAlphaPremultipleColorB                   integer_
     4712  VideoAlphaPremultipleColorBlack               real_
     4713  VideoAlphaPremultipleColorBlue                integer_
     4714  VideoAlphaPremultipleColorCyan                real_
     4715  VideoAlphaPremultipleColorGray                integer_
     4716  VideoAlphaPremultipleColorGreen               integer_
     4717  VideoAlphaPremultipleColorL                   real_
     4718  VideoAlphaPremultipleColorMagenta             real_
     4719  VideoAlphaPremultipleColorMode                string_
     4720  VideoAlphaPremultipleColorRed                 integer_
     4721  VideoAlphaPremultipleColorSwatchName          string_
     4722  VideoAlphaPremultipleColorTint                integer_
     4723  VideoAlphaPremultipleColorType                string_
     4724  VideoAlphaPremultipleColorYellow              real_
     4725  VideoAlphaUnityIsTransparent                  boolean
     4726  VideoColorSpace                               string
     4727  VideoCompressor                               string
     4728  VideoFieldOrder                               string
     4729  VideoFrameRate                                real
     4730  VideoFrameSize                                Dimensions Struct
     4731  VideoFrameSizeH                               real_
     4732  VideoFrameSizeUnit                            string_
     4733  VideoFrameSizeW                               real_
     4734  VideoModDate                                  date
     4735  VideoPixelAspectRatio                         rational
     4736  VideoPixelDepth                               string
     4737
     4738=head3 XMP BeatSpliceStretch Struct
     4739
     4740  Field Name                                    Writable
     4741  ----------                                    --------
     4742  RiseInDecibel                                 real
     4743  RiseInTimeDuration                            Time Struct
     4744  UseFileBeatsMarker                            boolean
     4745
     4746=head3 XMP Time Struct
     4747
     4748  Field Name                                    Writable
     4749  ----------                                    --------
     4750  Scale                                         rational
     4751  Value                                         integer
     4752
     4753=head3 XMP Media Struct
     4754
     4755  Field Name                                    Writable
     4756  ----------                                    --------
     4757  Duration                                      Time Struct
     4758  Managed                                       boolean
     4759  Path                                          string
     4760  StartTime                                     Time Struct
     4761  Track                                         string
     4762  WebStatement                                  string
     4763
     4764=head3 XMP Marker Struct
     4765
     4766  Field Name                                    Writable
     4767  ----------                                    --------
     4768  Comment                                       string
     4769  CuePointParams                                CuePointParam Struct+
     4770  CuePointType                                  string
     4771  Duration                                      string
     4772  Location                                      string
     4773  Name                                          string
     4774  Probability                                   real
     4775  Speaker                                       string
     4776  StartTime                                     string
     4777  Target                                        string
     4778  Type                                          string
     4779
     4780=head3 XMP CuePointParam Struct
     4781
     4782  Field Name                                    Writable
     4783  ----------                                    --------
     4784  Key                                           string
     4785  Value                                         string
     4786
     4787=head3 XMP ProjectLink Struct
     4788
     4789  Field Name                                    Writable
     4790  ----------                                    --------
     4791  Path                                          string
     4792  Type                                          string
     4793
     4794=head3 XMP ResampleStretch Struct
     4795
     4796  Field Name                                    Writable
     4797  ----------                                    --------
     4798  Quality                                       string
     4799
     4800=head3 XMP TimeScaleStretch Struct
     4801
     4802  Field Name                                    Writable
     4803  ----------                                    --------
     4804  FrameOverlappingPercentage                    real
     4805  FrameSize                                     real
     4806  Quality                                       string
     4807
     4808=head3 XMP Track Struct
     4809
     4810  Field Name                                    Writable
     4811  ----------                                    --------
     4812  FrameRate                                     string
     4813  Markers                                       Marker Struct+
     4814  TrackName                                     string
     4815  TrackType                                     string
     4816
     4817=head3 XMP Colorant Struct
     4818
     4819  Field Name                                    Writable
     4820  ----------                                    --------
     4821  A                                             integer
     4822  B                                             integer
     4823  L                                             real
     4824  Black                                         real
     4825  Blue                                          integer
     4826  Cyan                                          real
     4827  Gray                                          integer
     4828  Green                                         integer
     4829  Magenta                                       real
     4830  Mode                                          string
     4831  Red                                           integer
     4832  SwatchName                                    string
     4833  Tint                                          integer
     4834  Type                                          string
     4835  Yellow                                        real
     4836
     4837=head3 XMP Dimensions Struct
     4838
     4839  Field Name                                    Writable
     4840  ----------                                    --------
     4841  H                                             real
     4842  Unit                                          string
     4843  W                                             real
     4844
     4845=head3 XMP xmpMM Tags
     4846
     4847XMP Media Management namespace tags.
     4848
     4849These tags belong to the ExifTool XMP-xmpMM family 1 group.
     4850
     4851  Tag Name                                      Writable
     4852  --------                                      --------
     4853  DerivedFrom                                   ResourceRef Struct
     4854  DerivedFromAlternatePaths                     string_+
     4855  DerivedFromDocumentID                         string_
     4856  DerivedFromFilePath                           string_
     4857  DerivedFromFromPart                           string_
     4858  DerivedFromInstanceID                         string_
     4859  DerivedFromLastModifyDate                     date_
     4860  DerivedFromLastURL                            string_
     4861  DerivedFromLinkCategory                       string_
     4862  DerivedFromLinkForm                           string_
     4863  DerivedFromManager                            string_
     4864  DerivedFromManagerVariant                     string_
     4865  DerivedFromManageTo                           string_
     4866  DerivedFromManageUI                           string_
     4867  DerivedFromMaskMarkers                        string_
     4868  DerivedFromOriginalDocumentID                 string_
     4869  DerivedFromPartMapping                        string_
     4870  DerivedFromPlacedResolutionUnit               string_
     4871  DerivedFromPlacedXResolution                  string_
     4872  DerivedFromPlacedYResolution                  string_
     4873  DerivedFromRenditionClass                     string_
     4874  DerivedFromRenditionParams                    string_
     4875  DerivedFromToPart                             string_
     4876  DerivedFromVersionID                          string_
     4877  DocumentID                                    string
     4878  History                                       ResourceEvent Struct+
     4879  HistoryAction                                 string_+
     4880  HistoryChanged                                string_+
     4881  HistoryInstanceID                             string_+
     4882  HistoryParameters                             string_+
     4883  HistorySoftwareAgent                          string_+
     4884  HistoryWhen                                   date_+
     4885  Ingredients                                   ResourceRef Struct+
     4886  IngredientsAlternatePaths                     string_+
     4887  IngredientsDocumentID                         string_+
     4888  IngredientsFilePath                           string_+
     4889  IngredientsFromPart                           string_+
     4890  IngredientsInstanceID                         string_+
     4891  IngredientsLastModifyDate                     date_+
     4892  IngredientsLastURL                            string_+
     4893  IngredientsLinkCategory                       string_+
     4894  IngredientsLinkForm                           string_+
     4895  IngredientsManager                            string_+
     4896  IngredientsManagerVariant                     string_+
     4897  IngredientsManageTo                           string_+
     4898  IngredientsManageUI                           string_+
     4899  IngredientsMaskMarkers                        string_+
     4900  IngredientsOriginalDocumentID                 string_+
     4901  IngredientsPartMapping                        string_+
     4902  IngredientsPlacedResolutionUnit               string_+
     4903  IngredientsPlacedXResolution                  string_+
     4904  IngredientsPlacedYResolution                  string_+
     4905  IngredientsRenditionClass                     string_+
     4906  IngredientsRenditionParams                    string_+
     4907  IngredientsToPart                             string_+
     4908  IngredientsVersionID                          string_+
     4909  InstanceID                                    string
     4910  LastURL                                       string
     4911  ManagedFrom                                   ResourceRef Struct
     4912  ManagedFromAlternatePaths                     string_+
     4913  ManagedFromDocumentID                         string_
     4914  ManagedFromFilePath                           string_
     4915  ManagedFromFromPart                           string_
     4916  ManagedFromInstanceID                         string_
     4917  ManagedFromLastModifyDate                     date_
     4918  ManagedFromLastURL                            string_
     4919  ManagedFromLinkCategory                       string_
     4920  ManagedFromLinkForm                           string_
     4921  ManagedFromManager                            string_
     4922  ManagedFromManagerVariant                     string_
     4923  ManagedFromManageTo                           string_
     4924  ManagedFromManageUI                           string_
     4925  ManagedFromMaskMarkers                        string_
     4926  ManagedFromOriginalDocumentID                 string_
     4927  ManagedFromPartMapping                        string_
     4928  ManagedFromPlacedResolutionUnit               string_
     4929  ManagedFromPlacedXResolution                  string_
     4930  ManagedFromPlacedYResolution                  string_
     4931  ManagedFromRenditionClass                     string_
     4932  ManagedFromRenditionParams                    string_
     4933  ManagedFromToPart                             string_
     4934  ManagedFromVersionID                          string_
     4935  Manager                                       string
     4936  ManagerVariant                                string
     4937  ManageTo                                      string
     4938  ManageUI                                      string
     4939  Manifest                                      ManifestItem Struct+
     4940  ManifestLinkForm                              string_+
     4941  ManifestPlacedResolutionUnit                  string_+
     4942  ManifestPlacedXResolution                     real_+
     4943  ManifestPlacedYResolution                     real_+
     4944  ManifestReference                             ResourceRef Struct_+
     4945  ManifestReferenceAlternatePaths               string_+
     4946  ManifestReferenceDocumentID                   string_+
     4947  ManifestReferenceFilePath                     string_+
     4948  ManifestReferenceFromPart                     string_+
     4949  ManifestReferenceInstanceID                   string_+
     4950  ManifestReferenceLastModifyDate               date_+
     4951  ManifestReferenceLastURL                      string_+
     4952  ManifestReferenceLinkCategory                 string_+
     4953  ManifestReferenceLinkForm                     string_+
     4954  ManifestReferenceManager                      string_+
     4955  ManifestReferenceManagerVariant               string_+
     4956  ManifestReferenceManageTo                     string_+
     4957  ManifestReferenceManageUI                     string_+
     4958  ManifestReferenceMaskMarkers                  string_+
     4959  ManifestReferenceOriginalDocumentID           string_+
     4960  ManifestReferencePartMapping                  string_+
     4961  ManifestReferencePlacedResolutionUnit         string_+
     4962  ManifestReferencePlacedXResolution            string_+
     4963  ManifestReferencePlacedYResolution            string_+
     4964  ManifestReferenceRenditionClass               string_+
     4965  ManifestReferenceRenditionParams              string_+
     4966  ManifestReferenceToPart                       string_+
     4967  ManifestReferenceVersionID                    string_+
     4968  OriginalDocumentID                            string
     4969  Pantry                                        PantryItem Struct+
     4970  PantryInstanceID                              string_
     4971  PreservedFileName                             string
     4972  RenditionClass                                string
     4973  RenditionOf                                   ResourceRef Struct
     4974  RenditionOfAlternatePaths                     string_+
     4975  RenditionOfDocumentID                         string_
     4976  RenditionOfFilePath                           string_
     4977  RenditionOfFromPart                           string_
     4978  RenditionOfInstanceID                         string_
     4979  RenditionOfLastModifyDate                     date_
     4980  RenditionOfLastURL                            string_
     4981  RenditionOfLinkCategory                       string_
     4982  RenditionOfLinkForm                           string_
     4983  RenditionOfManager                            string_
     4984  RenditionOfManagerVariant                     string_
     4985  RenditionOfManageTo                           string_
     4986  RenditionOfManageUI                           string_
     4987  RenditionOfMaskMarkers                        string_
     4988  RenditionOfOriginalDocumentID                 string_
     4989  RenditionOfPartMapping                        string_
     4990  RenditionOfPlacedResolutionUnit               string_
     4991  RenditionOfPlacedXResolution                  string_
     4992  RenditionOfPlacedYResolution                  string_
     4993  RenditionOfRenditionClass                     string_
     4994  RenditionOfRenditionParams                    string_
     4995  RenditionOfToPart                             string_
     4996  RenditionOfVersionID                          string_
     4997  RenditionParams                               string
     4998  SaveID                                        integer
     4999  Subject                                       string/+
     5000  VersionID                                     string
     5001  Versions                                      Version Struct+
     5002  VersionsComments                              string_+
     5003  VersionsEvent                                 ResourceEvent Struct_+
     5004  VersionsEventAction                           string_+
     5005  VersionsEventChanged                          string_+
     5006  VersionsEventInstanceID                       string_+
     5007  VersionsEventParameters                       string_+
     5008  VersionsEventSoftwareAgent                    string_+
     5009  VersionsEventWhen                             date_+
     5010  VersionsModifier                              string_+
     5011  VersionsModifyDate                            date_+
     5012  VersionsVersion                               string_+
     5013
     5014=head3 XMP ResourceRef Struct
     5015
     5016  Field Name                                    Writable
     5017  ----------                                    --------
     5018  AlternatePaths                                string+
     5019  DocumentID                                    string
     5020  FilePath                                      string
     5021  FromPart                                      string
     5022  InstanceID                                    string
     5023  LastModifyDate                                date
     5024  LastURL                                       string
     5025  LinkCategory                                  string
     5026  LinkForm                                      string
     5027  ManageTo                                      string
     5028  ManageUI                                      string
     5029  Manager                                       string
     5030  ManagerVariant                                string
     5031  MaskMarkers                                   string
     5032  OriginalDocumentID                            string
     5033  PartMapping                                   string
     5034  PlacedResolutionUnit                          string
     5035  PlacedXResolution                             string
     5036  PlacedYResolution                             string
     5037  RenditionClass                                string
     5038  RenditionParams                               string
     5039  ToPart                                        string
     5040  VersionID                                     string
     5041
     5042=head3 XMP ResourceEvent Struct
     5043
     5044  Field Name                                    Writable
     5045  ----------                                    --------
     5046  Action                                        string
     5047  Changed                                       string
     5048  InstanceID                                    string
     5049  Parameters                                    string
     5050  SoftwareAgent                                 string
     5051  When                                          date
     5052
     5053=head3 XMP ManifestItem Struct
     5054
     5055  Field Name                                    Writable
     5056  ----------                                    --------
     5057  LinkForm                                      string
     5058  PlacedResolutionUnit                          string
     5059  PlacedXResolution                             real
     5060  PlacedYResolution                             real
     5061  Reference                                     ResourceRef Struct
     5062
     5063=head3 XMP PantryItem Struct
     5064
     5065This structure must have an InstanceID field, but may also contain any other
     5066XMP properties.
     5067
     5068  Field Name                                    Writable
     5069  ----------                                    --------
     5070  InstanceID                                    string
     5071
     5072=head3 XMP Version Struct
     5073
     5074  Field Name                                    Writable
     5075  ----------                                    --------
     5076  Comments                                      string
     5077  Event                                         ResourceEvent Struct
     5078  Modifier                                      string
     5079  ModifyDate                                    date
     5080  Version                                       string
     5081
     5082=head3 XMP xmpNote Tags
     5083
     5084XMP Note namespace tags.
     5085
     5086These tags belong to the ExifTool XMP-xmpNote family 1 group.
     5087
     5088  Tag Name                                      Writable
     5089  --------                                      --------
     5090  HasExtendedXMP                                string*
     5091
     5092=head3 XMP xmpPLUS Tags
     5093
     5094XMP Picture Licensing Universal System (PLUS) tags as written by some older
     5095Adobe applications.  See L<PLUS XMP Tags|Image::ExifTool::TagNames/PLUS XMP Tags>
     5096for the current PLUS tags.
     5097
     5098These tags belong to the ExifTool XMP-xmpPLUS family 1 group.
     5099
     5100  Tag Name                                      Writable
     5101  --------                                      --------
     5102  CreditLineReq                                 boolean/
     5103  ReuseAllowed                                  boolean/
     5104
     5105=head3 XMP xmpRights Tags
     5106
     5107XMP Rights Management namespace tags.
     5108
     5109These tags belong to the ExifTool XMP-xmpRights family 1 group.
     5110
     5111  Tag Name                                      Writable
     5112  --------                                      --------
     5113  Certificate                                   string
     5114  Marked                                        boolean
     5115  Owner                                         string+
     5116  UsageTerms                                    lang-alt
     5117  WebStatement                                  string
     5118
     5119=head3 XMP xmpTPg Tags
     5120
     5121XMP Paged-Text namespace tags.
     5122
     5123These tags belong to the ExifTool XMP-xmpTPg family 1 group.
     5124
     5125  Tag Name                                      Writable
     5126  --------                                      --------
     5127  Colorants                                     Colorant Struct+
     5128  ColorantA                                     integer_+
     5129  ColorantB                                     integer_+
     5130  ColorantBlack                                 real_+
     5131  ColorantBlue                                  integer_+
     5132  ColorantCyan                                  real_+
     5133  ColorantGray                                  integer_+
     5134  ColorantGreen                                 integer_+
     5135  ColorantL                                     real_+
     5136  ColorantMagenta                               real_+
     5137  ColorantMode                                  string_+
     5138  ColorantRed                                   integer_+
     5139  ColorantSwatchName                            string_+
     5140  ColorantTint                                  integer_+
     5141  ColorantType                                  string_+
     5142  ColorantYellow                                real_+
     5143  Fonts                                         Font Struct+
     5144  ChildFontFiles                                string_+
     5145  FontComposite                                 boolean_+
     5146  FontFace                                      string_+
     5147  FontFamily                                    string_+
     5148  FontFileName                                  string_+
     5149  FontName                                      string_+
     5150  FontType                                      string_+
     5151  FontVersion                                   string_+
     5152  HasVisibleOverprint                           boolean
     5153  HasVisibleTransparency                        boolean
     5154  MaxPageSize                                   Dimensions Struct
     5155  MaxPageSizeH                                  real_
     5156  MaxPageSizeUnit                               string_
     5157  MaxPageSizeW                                  real_
     5158  NPages                                        integer
     5159  PlateNames                                    string+
     5160  SwatchGroups                                  SwatchGroup Struct+
     5161  SwatchGroupsColorants                         Colorant Struct_+
     5162  SwatchColorantA                               integer_+
     5163  SwatchColorantB                               integer_+
     5164  SwatchColorantBlack                           real_+
     5165  SwatchColorantBlue                            integer_+
     5166  SwatchColorantCyan                            real_+
     5167  SwatchColorantGray                            integer_+
     5168  SwatchColorantGreen                           integer_+
     5169  SwatchColorantL                               real_+
     5170  SwatchColorantMagenta                         real_+
     5171  SwatchColorantMode                            string_+
     5172  SwatchColorantRed                             integer_+
     5173  SwatchColorantSwatchName                      string_+
     5174  SwatchColorantTint                            integer_+
     5175  SwatchColorantType                            string_+
     5176  SwatchColorantYellow                          real_+
     5177  SwatchGroupName                               string_+
     5178  SwatchGroupType                               integer_+
     5179
     5180=head3 XMP Font Struct
     5181
     5182  Field Name                                    Writable
     5183  ----------                                    --------
     5184  ChildFontFiles                                string+
     5185  Composite                                     boolean
     5186  FontFace                                      string
     5187  FontFamily                                    string
     5188  FontFileName                                  string
     5189  FontName                                      string
     5190  FontType                                      string
     5191  VersionString                                 string
     5192
     5193=head3 XMP SwatchGroup Struct
     5194
     5195  Field Name                                    Writable
     5196  ----------                                    --------
     5197  Colorants                                     Colorant Struct+
     5198  GroupName                                     string
     5199  GroupType                                     integer
     5200
     5201=head3 XMP XML Tags
     5202
     5203  Tag ID               Tag Name                 Writable
     5204  ------               --------                 --------
     5205  'dc'                 dc                       XMP dc
     5206  'lastUpdate'         LastUpdate               no
     5207
     5208=head3 XMP SVG Tags
     5209
     5210SVG (Scalable Vector Graphics) image tags.  By default, only the top-level
     5211SVG and Metadata tags are extracted from these images, but all graphics tags
     5212may be extracted by setting the Unknown option to 2 (-U on the command
     5213line).  The SVG tags are not part of XMP as such, but are included with the
     5214XMP module for convenience.  (see L<http://www.w3.org/TR/SVG11/>)
     5215
     5216These tags belong to the ExifTool XMP-svg family 1 group.
     5217
     5218  Tag ID               Tag Name                 Writable
     5219  ------               --------                 --------
     5220  'height'             ImageHeight              no
     5221  'id'                 ID                       no
     5222  'metadataId'         MetadataID               no
     5223  'version'            SVGVersion               no
     5224  'width'              ImageWidth               no
     5225
     5226=head2 GPS Tags
     5227
     5228These GPS tags are part of the EXIF standard, and are stored in a separate
     5229IFD within the EXIF information.
     5230
     5231ExifTool is very flexible about the input format when writing lat/long
     5232coordinates, and will accept from 1 to 3 floating point numbers (for decimal
     5233degrees, degrees and minutes, or degrees, minutes and seconds) separated by
     5234just about anything, and will format them properly according to the EXIF
     5235specification.
     5236
     5237Some GPS tags have values which are fixed-length strings. For these, the
     5238indicated string lengths include a null terminator which is added
     5239automatically by ExifTool.  Remember that the descriptive values are used
     5240when writing (eg. 'Above Sea Level', not '0') unless the print conversion is
     5241disabled (with '-n' on the command line or the PrintConv option in the API,
     5242or by suffixing the tag name with a C<#> character).
     5243
     5244When adding GPS information to an image, it is important to set all of the
     5245following tags: GPSLatitude, GPSLatitudeRef, GPSLongitude, GPSLongitudeRef,
     5246and GPSAltitude and GPSAltitudeRef if the altitude is known.  ExifTool will
     5247write the required GPSVersionID tag automatically if new a GPS IFD is added
     5248to an image.
     5249
     5250  Tag ID   Tag Name                             Writable
     5251  ------   --------                             --------
     5252  0x0000   GPSVersionID                         int8u[4]:
     5253  0x0001   GPSLatitudeRef                       string[2]
     5254  0x0002   GPSLatitude                          rational64u[3]
     5255  0x0003   GPSLongitudeRef                      string[2]
     5256  0x0004   GPSLongitude                         rational64u[3]
     5257  0x0005   GPSAltitudeRef                       int8u
     5258  0x0006   GPSAltitude                          rational64u
     5259  0x0007   GPSTimeStamp                         rational64u[3]
     5260  0x0008   GPSSatellites                        string
     5261  0x0009   GPSStatus                            string[2]
     5262  0x000a   GPSMeasureMode                       string[2]
     5263  0x000b   GPSDOP                               rational64u
     5264  0x000c   GPSSpeedRef                          string[2]
     5265  0x000d   GPSSpeed                             rational64u
     5266  0x000e   GPSTrackRef                          string[2]
     5267  0x000f   GPSTrack                             rational64u
     5268  0x0010   GPSImgDirectionRef                   string[2]
     5269  0x0011   GPSImgDirection                      rational64u
     5270  0x0012   GPSMapDatum                          string
     5271  0x0013   GPSDestLatitudeRef                   string[2]
     5272  0x0014   GPSDestLatitude                      rational64u[3]
     5273  0x0015   GPSDestLongitudeRef                  string[2]
     5274  0x0016   GPSDestLongitude                     rational64u[3]
     5275  0x0017   GPSDestBearingRef                    string[2]
     5276  0x0018   GPSDestBearing                       rational64u
     5277  0x0019   GPSDestDistanceRef                   string[2]
     5278  0x001a   GPSDestDistance                      rational64u
     5279  0x001b   GPSProcessingMethod                  undef
     5280  0x001c   GPSAreaInformation                   undef
     5281  0x001d   GPSDateStamp                         string[11]
     5282  0x001e   GPSDifferential                      int16u
     5283  0x001f   GPSHPositioningError                 rational64u
     5284
     5285=head2 GeoTiff Tags
     5286
     5287ExifTool extracts the following tags from GeoTIFF images.  See
     5288L<http://www.remotesensing.org/geotiff/spec/geotiffhome.html> for the
     5289complete GeoTIFF specification.  Also included in the table below are
     5290ChartTIFF tags (see L<http://www.charttiff.com/whitepapers.shtml>). GeoTIFF
     5291tags are not writable individually, but they may be copied en mass via the
     5292block tags GeoTiffDirectory, GeoTiffDoubleParams and GeoTiffAsciiParams.
     5293
     5294  Tag ID   Tag Name                             Writable
     5295  ------   --------                             --------
     5296  0x0001   GeoTiffVersion                       no
     5297  0x0400   GTModelType                          no
     5298  0x0401   GTRasterType                         no
     5299  0x0402   GTCitation                           no
     5300  0x0800   GeographicType                       no
     5301  0x0801   GeogCitation                         no
     5302  0x0802   GeogGeodeticDatum                    no
     5303  0x0803   GeogPrimeMeridian                    no
     5304  0x0804   GeogLinearUnits                      no
     5305  0x0805   GeogLinearUnitSize                   no
     5306  0x0806   GeogAngularUnits                     no
     5307  0x0807   GeogAngularUnitSize                  no
     5308  0x0808   GeogEllipsoid                        no
     5309  0x0809   GeogSemiMajorAxis                    no
     5310  0x080a   GeogSemiMinorAxis                    no
     5311  0x080b   GeogInvFlattening                    no
     5312  0x080c   GeogAzimuthUnits                     no
     5313  0x080d   GeogPrimeMeridianLong                no
     5314  0x080e   GeogToWGS84                          no
     5315  0x0c00   ProjectedCSType                      no
     5316  0x0c01   PCSCitation                          no
     5317  0x0c02   Projection                           no
     5318  0x0c03   ProjCoordTrans                       no
     5319  0x0c04   ProjLinearUnits                      no
     5320  0x0c05   ProjLinearUnitSize                   no
     5321  0x0c06   ProjStdParallel1                     no
     5322  0x0c07   ProjStdParallel2                     no
     5323  0x0c08   ProjNatOriginLong                    no
     5324  0x0c09   ProjNatOriginLat                     no
     5325  0x0c0a   ProjFalseEasting                     no
     5326  0x0c0b   ProjFalseNorthing                    no
     5327  0x0c0c   ProjFalseOriginLong                  no
     5328  0x0c0d   ProjFalseOriginLat                   no
     5329  0x0c0e   ProjFalseOriginEasting               no
     5330  0x0c0f   ProjFalseOriginNorthing              no
     5331  0x0c10   ProjCenterLong                       no
     5332  0x0c11   ProjCenterLat                        no
     5333  0x0c12   ProjCenterEasting                    no
     5334  0x0c13   ProjCenterNorthing                   no
     5335  0x0c14   ProjScaleAtNatOrigin                 no
     5336  0x0c15   ProjScaleAtCenter                    no
     5337  0x0c16   ProjAzimuthAngle                     no
     5338  0x0c17   ProjStraightVertPoleLong             no
     5339  0x0c18   ProjRectifiedGridAngle               no
     5340  0x1000   VerticalCSType                       no
     5341  0x1001   VerticalCitation                     no
     5342  0x1002   VerticalDatum                        no
     5343  0x1003   VerticalUnits                        no
     5344  0xb799   ChartFormat                          no
     5345  0xb79a   ChartSource                          no
     5346  0xb79b   ChartSourceEdition                   no
     5347  0xb79c   ChartSourceDate                      no
     5348  0xb79d   ChartCorrDate                        no
     5349  0xb79e   ChartCountryOrigin                   no
     5350  0xb79f   ChartRasterEdition                   no
     5351  0xb7a0   ChartSoundingDatum                   no
     5352  0xb7a1   ChartDepthUnits                      no
     5353  0xb7a2   ChartMagVar                          no
     5354  0xb7a3   ChartMagVarYear                      no
     5355  0xb7a4   ChartMagVarAnnChange                 no
     5356  0xb7a5   ChartWGSNSShift                      no
     5357  0xb7a7   InsetNWPixelX                        no
     5358  0xb7a8   InsetNWPixelY                        no
     5359  0xb7a9   ChartContourInterval                 no
     5360
     5361=head2 PLUS Tags
     5362
     5363=head3 PLUS XMP Tags
     5364
     5365PLUS (Picture Licensing Universal System) License Data Format 1.2.1 XMP
     5366tags.  Note that all controlled-vocabulary tags in this table (ie. tags with
     5367a fixed set of values) have raw values which begin with
     5368"http://ns.useplus.org/ldf/vocab/", but to reduce clutter this prefix has
     5369been removed from the values shown below.  See L<http://ns.useplus.org/> for
     5370the complete specification.
     5371
     5372These tags belong to the ExifTool XMP-plus family 1 group.
    19675373
    19685374  Tag Name                                      Writable
     
    21085514  LicensorURL                                   string
    21095515
    2110 =head3 XMP prism Tags
    2111 
    2112 Publishing Requirements for Industry Standard Metadata 2.1 schema tags. (see
    2113 L<http://www.prismstandard.org/>)
    2114 
    2115   Tag Name                                      Writable
    2116   --------                                      --------
    2117   AggregationType                               string/+
    2118   AlternateTitle                                string/+
    2119   ByteCount                                     integer/
    2120   Channel                                       string/+
    2121   ComplianceProfile                             string/
    2122   Copyright                                     string/
    2123   CorporateEntity                               string/+
    2124   CoverDate                                     date/
    2125   CoverDisplayDate                              string/
    2126   CreationDate                                  date/
    2127   DateRecieved                                  date/
    2128   Distributor                                   string/
    2129   DOI                                           string/
    2130   Edition                                       string/
    2131   EIssn                                         string/
    2132   EmbargoDate                                   date/+
    2133   EndingPage                                    string/
    2134   Event                                         string/+
    2135   ExpirationDate                                date/+
    2136   Genre                                         string/+
    2137   HasAlternative                                string/+
    2138   HasCorrection                                 string/
    2139   HasPreviousVersion                            string/
    2140   HasTranslation                                string/+
    2141   Industry                                      string/+
    2142   ISBN                                          string/
    2143   IsCorrectionOf                                string/+
    2144   ISSN                                          string/
    2145   IssueIdentifier                               string/
    2146   IssueName                                     string/
    2147   IsTranslationOf                               string/
    2148   Keyword                                       string/+
    2149   KillDate                                      date/
    2150   Location                                      string/+
    2151   ModificationDate                              date/
    2152   Number                                        string/
    2153   Object                                        string/+
    2154   Organization                                  string/+
    2155   OriginPlatform                                string/+
    2156   PageRange                                     string/+
    2157   Person                                        string/
    2158   PublicationDate                               date/+
    2159   PublicationName                               string/
    2160   RightsAgent                                   string/
    2161   Section                                       string/
    2162   StartingPage                                  string/
    2163   Subsection1                                   string/
    2164   Subsection2                                   string/
    2165   Subsection3                                   string/
    2166   Subsection4                                   string/
    2167   Teaser                                        string/+
    2168   Ticker                                        string/+
    2169   TimePeriod                                    string/
    2170   URL                                           string/+
    2171   VersionIdentifier                             string/
    2172   Volume                                        string/
    2173   WordCount                                     integer/
    2174 
    2175 =head3 XMP prl Tags
    2176 
    2177 PRISM Rights Language 2.1 schema tags.  (see
    2178 L<http://www.prismstandard.org/>)
    2179 
    2180   Tag Name                                      Writable
    2181   --------                                      --------
    2182   Geography                                     string/+
    2183   Industry                                      string/+
    2184   Usage                                         string/+
    2185 
    2186 =head3 XMP pur Tags
    2187 
    2188 Prism Usage Rights 2.1 schema tags.  (see L<http://www.prismstandard.org/>)
    2189 
    2190   Tag Name                                      Writable
    2191   --------                                      --------
    2192   AdultContentWarning                           string/+
    2193   Agreement                                     string/+
    2194   Copyright                                     lang-alt/
    2195   CreditLine                                    string/+
    2196   EmbargoDate                                   date/+
    2197   ExclusivityEndDate                            date/+
    2198   ExpirationDate                                date/+
    2199   ImageSizeRestriction                          string/
    2200   OptionEndDate                                 date/+
    2201   Permissions                                   string/+
    2202   Restrictions                                  string/+
    2203   ReuseProhibited                               boolean/
    2204   RightsAgent                                   string/
    2205   RightsOwner                                   string/
    2206   UsageFee                                      string/+
    2207 
    2208 =head3 XMP rdf Tags
    2209 
    2210 Most RDF attributes are handled internally, but the "about" attribute is
    2211 treated specially to allow it to be set to a specific value if required.
    2212 
    2213   Tag Name                                      Writable
    2214   --------                                      --------
    2215   About                                         string!
    2216 
    2217 =head3 XMP swf Tags
    2218 
    2219 Adobe SWF schema tags.
    2220 
    2221   Tag Name                                      Writable
    2222   --------                                      --------
    2223   BackgroundAlpha                               integer
    2224   ForwardLock                                   boolean
    2225   MaxStorage                                    integer
    2226   Type                                          string/
    2227 
    2228 =head3 XMP tiff Tags
    2229 
    2230 EXIF schema for TIFF tags.
    2231 
    2232   Tag Name                                      Writable
    2233   --------                                      --------
    2234   Artist                                        string
    2235   BitsPerSample                                 integer+
    2236   Compression                                   integer
    2237   Copyright                                     lang-alt
    2238   DateTime                                      date
    2239   ImageDescription                              lang-alt
    2240   ImageHeight                                   integer
    2241   ImageWidth                                    integer
    2242   Make                                          string
    2243   Model                                         string
    2244   NativeDigest                                  string
    2245   Orientation                                   integer
    2246   PhotometricInterpretation                     integer
    2247   PlanarConfiguration                           integer
    2248   PrimaryChromaticities                         rational+
    2249   ReferenceBlackWhite                           rational+
    2250   ResolutionUnit                                integer
    2251   SamplesPerPixel                               integer
    2252   Software                                      string
    2253   TransferFunction                              integer+
    2254   WhitePoint                                    rational+
    2255   XResolution                                   rational
    2256   YCbCrCoefficients                             rational+
    2257   YCbCrPositioning                              integer
    2258   YCbCrSubSampling                              string
    2259   YResolution                                   rational
    2260 
    2261 =head3 XMP x Tags
    2262 
    2263 The "x" namespace is used for the "xmpmeta" wrapper, and may contain an
    2264 "xmptk" attribute that is extracted as the XMPToolkit tag.  When writing,
    2265 the XMPToolkit tag is automatically generated by ExifTool unless
    2266 specifically set to another value.
    2267 
    2268   Tag Name                                      Writable
    2269   --------                                      --------
    2270   XMPToolkit                                    string!
    2271 
    2272 =head3 XMP xmp Tags
    2273 
    2274 XMP Basic schema tags.  If the older "xap", "xapBJ", "xapMM" or "xapRights"
    2275 namespace prefixes are found, they are translated to the newer "xmp",
    2276 "xmpBJ", "xmpMM" and "xmpRights" prefixes for use in family 1 group names.
    2277 
    2278   Tag Name                                      Writable
    2279   --------                                      --------
    2280   Advisory                                      string+
    2281   BaseURL                                       string
    2282   CreateDate                                    date
    2283   CreatorTool                                   string
    2284   Identifier                                    string/+
    2285   Label                                         string
    2286   MetadataDate                                  date
    2287   ModifyDate                                    date
    2288   Nickname                                      string
    2289   PageInfo                                      PageInfo Struct+
    2290   PageImageFormat                               string_+
    2291   PageImageHeight                               integer_+
    2292   PageImage                                     string_+
    2293   PageImagePageNumber                           integer_+
    2294   PageImageWidth                                integer_+
    2295   Rating                                        real
    2296   Thumbnails                                    Thumbnail Struct+
    2297   ThumbnailFormat                               string_+
    2298   ThumbnailHeight                               integer_+
    2299   ThumbnailImage                                string/_+
    2300   ThumbnailWidth                                integer_+
    2301 
    2302 =head3 XMP PageInfo Struct
    2303 
    2304   Field Name                                    Writable
    2305   ----------                                    --------
    2306   PageNumber                                    integer
    2307   Format                                        string
    2308   Height                                        integer
    2309   Image                                         string
    2310   Width                                         integer
    2311 
    2312 =head3 XMP Thumbnail Struct
    2313 
    2314   Field Name                                    Writable
    2315   ----------                                    --------
    2316   Format                                        string
    2317   Height                                        integer
    2318   Image                                         string
    2319   Width                                         integer
    2320 
    2321 =head3 XMP xmpBJ Tags
    2322 
    2323 XMP Basic Job Ticket schema tags.
    2324 
    2325   Tag Name                                      Writable
    2326   --------                                      --------
    2327   JobRef                                        JobRef Struct+
    2328   JobRefId                                      string_+
    2329   JobRefName                                    string_+
    2330   JobRefUrl                                     string_+
    2331 
    2332 =head3 XMP JobRef Struct
    2333 
    2334   Field Name                                    Writable
    2335   ----------                                    --------
    2336   Id                                            string
    2337   Name                                          string
    2338   Url                                           string
    2339 
    2340 =head3 XMP xmpDM Tags
    2341 
    2342 XMP Dynamic Media schema tags.
    2343 
    2344   Tag Name                                      Writable
    2345   --------                                      --------
    2346   AbsPeakAudioFilePath                          string
    2347   Album                                         string
    2348   AltTapeName                                   string
    2349   AltTimecode                                   Timecode Struct
    2350   AltTimecodeTimeFormat                         string_
    2351   AltTimecodeTimeValue                          string_
    2352   AltTimecodeValue                              integer_
    2353   Artist                                        string/
    2354   AudioChannelType                              string
    2355   AudioCompressor                               string
    2356   AudioModDate                                  date
    2357   AudioSampleRate                               integer
    2358   AudioSampleType                               string
    2359   BeatSpliceParams                              BeatSpliceStretch Struct
    2360   BeatSpliceParamsRiseInDecibel                 real_
    2361   BeatSpliceParamsRiseInTimeDuration            Time Struct_
    2362   BeatSpliceParamsRiseInTimeDurationScale       rational_
    2363   BeatSpliceParamsRiseInTimeDurationValue       integer_
    2364   BeatSpliceParamsUseFileBeatsMarker            boolean_
    2365   CameraAngle                                   string
    2366   CameraLabel                                   string
    2367   CameraModel                                   string
    2368   CameraMove                                    string
    2369   Client                                        string
    2370   DMComment                                     string
    2371   Composer                                      string
    2372   ContributedMedia                              Media Struct+
    2373   ContributedMediaDuration                      Time Struct_+
    2374   ContributedMediaDurationScale                 rational_+
    2375   ContributedMediaDurationValue                 integer_+
    2376   ContributedMediaManaged                       boolean_+
    2377   ContributedMediaPath                          string_+
    2378   ContributedMediaStartTime                     Time Struct_+
    2379   ContributedMediaStartTimeScale                rational_+
    2380   ContributedMediaStartTimeValue                integer_+
    2381   ContributedMediaTrack                         string_+
    2382   ContributedMediaWebStatement                  string_+
    2383   Copyright                                     string/
    2384   Director                                      string
    2385   DirectorPhotography                           string
    2386   Duration                                      Time Struct
    2387   DurationScale                                 rational_
    2388   DurationValue                                 integer_
    2389   Engineer                                      string
    2390   FileDataRate                                  rational
    2391   Genre                                         string
    2392   Good                                          boolean
    2393   Instrument                                    string
    2394   IntroTime                                     Time Struct
    2395   IntroTimeScale                                rational_
    2396   IntroTimeValue                                integer_
    2397   Key                                           string
    2398   LogComment                                    string
    2399   Loop                                          boolean
    2400   Markers                                       Marker Struct+
    2401   MarkersComment                                string_+
    2402   MarkersCuePointParams                         CuePointParam Struct_+
    2403   MarkersCuePointParamsKey                      string_+
    2404   MarkersCuePointParamsValue                    string_+
    2405   MarkersCuePointType                           string_+
    2406   MarkersDuration                               string_+
    2407   MarkersLocation                               string_+
    2408   MarkersName                                   string_+
    2409   MarkersProbability                            real_+
    2410   MarkersSpeaker                                string_+
    2411   MarkersStartTime                              string_+
    2412   MarkersTarget                                 string_+
    2413   MarkersType                                   string_+
    2414   MetadataModDate                               date
    2415   NumberOfBeats                                 real
    2416   OutCue                                        Time Struct
    2417   OutCueScale                                   rational_
    2418   OutCueValue                                   integer_
    2419   ProjectName                                   string
    2420   ProjectRef                                    ProjectLink Struct
    2421   ProjectRefPath                                string_
    2422   ProjectRefType                                string_
    2423   PullDown                                      string
    2424   RelativePeakAudioFilePath                     string
    2425   RelativeTimestamp                             Time Struct
    2426   RelativeTimestampScale                        rational_
    2427   RelativeTimestampValue                        integer_
    2428   ReleaseDate                                   date
    2429   ResampleParams                                ResampleStretch Struct
    2430   ResampleParamsQuality                         string_
    2431   ScaleType                                     string
    2432   Scene                                         string/
    2433   ShotDate                                      date
    2434   ShotDay                                       string
    2435   ShotLocation                                  string
    2436   ShotName                                      string
    2437   ShotNumber                                    string
    2438   ShotSize                                      string
    2439   SpeakerPlacement                              string
    2440   StartTimecode                                 Timecode Struct
    2441   StartTimecodeTimeFormat                       string_
    2442   StartTimecodeTimeValue                        string_
    2443   StartTimecodeValue                            integer_
    2444   StretchMode                                   string
    2445   TakeNumber                                    integer
    2446   TapeName                                      string
    2447   Tempo                                         real
    2448   TimeScaleParams                               TimeScaleStretch Struct
    2449   TimeScaleParamsFrameOverlappingPercentage     real_
    2450   TimeScaleParamsFrameSize                      real_
    2451   TimeScaleParamsQuality                        string_
    2452   TimeSignature                                 string
    2453   TrackNumber                                   integer
    2454   Tracks                                        Track Struct+
    2455   TracksFrameRate                               string_+
    2456   TracksMarkers                                 Marker Struct_+
    2457   TracksMarkersComment                          string_+
    2458   TracksMarkersCuePointParams                   CuePointParam Struct_+
    2459   TracksMarkersCuePointParamsKey                string_+
    2460   TracksMarkersCuePointParamsValue              string_+
    2461   TracksMarkersCuePointType                     string_+
    2462   TracksMarkersDuration                         string_+
    2463   TracksMarkersLocation                         string_+
    2464   TracksMarkersName                             string_+
    2465   TracksMarkersProbability                      real_+
    2466   TracksMarkersSpeaker                          string_+
    2467   TracksMarkersStartTime                        string_+
    2468   TracksMarkersTarget                           string_+
    2469   TracksMarkersType                             string_+
    2470   TracksTrackName                               string_+
    2471   TracksTrackType                               string_+
    2472   VideoAlphaMode                                string
    2473   VideoAlphaPremultipleColor                    Colorant Struct
    2474   VideoAlphaPremultipleColorA                   integer_
    2475   VideoAlphaPremultipleColorB                   integer_
    2476   VideoAlphaPremultipleColorBlack               real_
    2477   VideoAlphaPremultipleColorBlue                integer_
    2478   VideoAlphaPremultipleColorCyan                real_
    2479   VideoAlphaPremultipleColorGreen               integer_
    2480   VideoAlphaPremultipleColorL                   real_
    2481   VideoAlphaPremultipleColorMagenta             real_
    2482   VideoAlphaPremultipleColorMode                string_
    2483   VideoAlphaPremultipleColorRed                 integer_
    2484   VideoAlphaPremultipleColorSwatchName          string_
    2485   VideoAlphaPremultipleColorType                string_
    2486   VideoAlphaPremultipleColorYellow              real_
    2487   VideoAlphaUnityIsTransparent                  boolean
    2488   VideoColorSpace                               string
    2489   VideoCompressor                               string
    2490   VideoFieldOrder                               string
    2491   VideoFrameRate                                string
    2492   VideoFrameSize                                Dimensions Struct
    2493   VideoFrameSizeH                               real_
    2494   VideoFrameSizeUnit                            string_
    2495   VideoFrameSizeW                               real_
    2496   VideoModDate                                  date
    2497   VideoPixelAspectRatio                         rational
    2498   VideoPixelDepth                               string
    2499 
    2500 =head3 XMP Timecode Struct
    2501 
    2502   Field Name                                    Writable
    2503   ----------                                    --------
    2504   TimeFormat                                    string
    2505   TimeValue                                     string
    2506   Value                                         integer
    2507 
    2508 =head3 XMP BeatSpliceStretch Struct
    2509 
    2510   Field Name                                    Writable
    2511   ----------                                    --------
    2512   RiseInDecibel                                 real
    2513   RiseInTimeDuration                            Time Struct
    2514   UseFileBeatsMarker                            boolean
    2515 
    2516 =head3 XMP Time Struct
    2517 
    2518   Field Name                                    Writable
    2519   ----------                                    --------
    2520   Scale                                         rational
    2521   Value                                         integer
    2522 
    2523 =head3 XMP Media Struct
    2524 
    2525   Field Name                                    Writable
    2526   ----------                                    --------
    2527   Duration                                      Time Struct
    2528   Managed                                       boolean
    2529   Path                                          string
    2530   StartTime                                     Time Struct
    2531   Track                                         string
    2532   WebStatement                                  string
    2533 
    2534 =head3 XMP Marker Struct
    2535 
    2536   Field Name                                    Writable
    2537   ----------                                    --------
    2538   Comment                                       string
    2539   CuePointParams                                CuePointParam Struct+
    2540   CuePointType                                  string
    2541   Duration                                      string
    2542   Location                                      string
    2543   Name                                          string
    2544   Probability                                   real
    2545   Speaker                                       string
    2546   StartTime                                     string
    2547   Target                                        string
    2548   Type                                          string
    2549 
    2550 =head3 XMP CuePointParam Struct
    2551 
    2552   Field Name                                    Writable
    2553   ----------                                    --------
    2554   Key                                           string
    2555   Value                                         string
    2556 
    2557 =head3 XMP ProjectLink Struct
    2558 
    2559   Field Name                                    Writable
    2560   ----------                                    --------
    2561   Path                                          string
    2562   Type                                          string
    2563 
    2564 =head3 XMP ResampleStretch Struct
    2565 
    2566   Field Name                                    Writable
    2567   ----------                                    --------
    2568   Quality                                       string
    2569 
    2570 =head3 XMP TimeScaleStretch Struct
    2571 
    2572   Field Name                                    Writable
    2573   ----------                                    --------
    2574   FrameOverlappingPercentage                    real
    2575   FrameSize                                     real
    2576   Quality                                       string
    2577 
    2578 =head3 XMP Track Struct
    2579 
    2580   Field Name                                    Writable
    2581   ----------                                    --------
    2582   FrameRate                                     string
    2583   Markers                                       Marker Struct+
    2584   TrackName                                     string
    2585   TrackType                                     string
    2586 
    2587 =head3 XMP Colorant Struct
    2588 
    2589   Field Name                                    Writable
    2590   ----------                                    --------
    2591   A                                             integer
    2592   B                                             integer
    2593   L                                             real
    2594   Black                                         real
    2595   Blue                                          integer
    2596   Cyan                                          real
    2597   Green                                         integer
    2598   Magenta                                       real
    2599   Mode                                          string
    2600   Red                                           integer
    2601   SwatchName                                    string
    2602   Type                                          string
    2603   Yellow                                        real
    2604 
    2605 =head3 XMP xmpMM Tags
    2606 
    2607 XMP Media Management schema tags.
    2608 
    2609   Tag Name                                      Writable
    2610   --------                                      --------
    2611   DerivedFrom                                   ResourceRef Struct
    2612   DerivedFromAlternatePaths                     string_+
    2613   DerivedFromDocumentID                         string_
    2614   DerivedFromFilePath                           string_
    2615   DerivedFromFromPart                           string_
    2616   DerivedFromInstanceID                         string_
    2617   DerivedFromLastModifyDate                     date_
    2618   DerivedFromManager                            string_
    2619   DerivedFromManagerVariant                     string_
    2620   DerivedFromManageTo                           string_
    2621   DerivedFromManageUI                           string_
    2622   DerivedFromMaskMarkers                        string_
    2623   DerivedFromOriginalDocumentID                 string_
    2624   DerivedFromPartMapping                        string_
    2625   DerivedFromRenditionClass                     string_
    2626   DerivedFromRenditionParams                    string_
    2627   DerivedFromToPart                             string_
    2628   DerivedFromVersionID                          string_
    2629   DocumentID                                    string
    2630   History                                       ResourceEvent Struct+
    2631   HistoryAction                                 string_+
    2632   HistoryChanged                                string_+
    2633   HistoryInstanceID                             string_+
    2634   HistoryParameters                             string_+
    2635   HistorySoftwareAgent                          string_+
    2636   HistoryWhen                                   date_+
    2637   Ingredients                                   ResourceRef Struct+
    2638   IngredientsAlternatePaths                     string_+
    2639   IngredientsDocumentID                         string_+
    2640   IngredientsFilePath                           string_+
    2641   IngredientsFromPart                           string_+
    2642   IngredientsInstanceID                         string_+
    2643   IngredientsLastModifyDate                     date_+
    2644   IngredientsManager                            string_+
    2645   IngredientsManagerVariant                     string_+
    2646   IngredientsManageTo                           string_+
    2647   IngredientsManageUI                           string_+
    2648   IngredientsMaskMarkers                        string_+
    2649   IngredientsOriginalDocumentID                 string_+
    2650   IngredientsPartMapping                        string_+
    2651   IngredientsRenditionClass                     string_+
    2652   IngredientsRenditionParams                    string_+
    2653   IngredientsToPart                             string_+
    2654   IngredientsVersionID                          string_+
    2655   InstanceID                                    string
    2656   LastURL                                       string
    2657   ManagedFrom                                   ResourceRef Struct
    2658   ManagedFromAlternatePaths                     string_+
    2659   ManagedFromDocumentID                         string_
    2660   ManagedFromFilePath                           string_
    2661   ManagedFromFromPart                           string_
    2662   ManagedFromInstanceID                         string_
    2663   ManagedFromLastModifyDate                     date_
    2664   ManagedFromManager                            string_
    2665   ManagedFromManagerVariant                     string_
    2666   ManagedFromManageTo                           string_
    2667   ManagedFromManageUI                           string_
    2668   ManagedFromMaskMarkers                        string_
    2669   ManagedFromOriginalDocumentID                 string_
    2670   ManagedFromPartMapping                        string_
    2671   ManagedFromRenditionClass                     string_
    2672   ManagedFromRenditionParams                    string_
    2673   ManagedFromToPart                             string_
    2674   ManagedFromVersionID                          string_
    2675   Manager                                       string
    2676   ManagerVariant                                string
    2677   ManageTo                                      string
    2678   ManageUI                                      string
    2679   Manifest                                      ManifestItem Struct+
    2680   ManifestLinkForm                              string_+
    2681   ManifestPlacedResolutionUnit                  string_+
    2682   ManifestPlacedXResolution                     real_+
    2683   ManifestPlacedYResolution                     real_+
    2684   ManifestReference                             ResourceRef Struct_+
    2685   ManifestReferenceAlternatePaths               string_+
    2686   ManifestReferenceDocumentID                   string_+
    2687   ManifestReferenceFilePath                     string_+
    2688   ManifestReferenceFromPart                     string_+
    2689   ManifestReferenceInstanceID                   string_+
    2690   ManifestReferenceLastModifyDate               date_+
    2691   ManifestReferenceManager                      string_+
    2692   ManifestReferenceManagerVariant               string_+
    2693   ManifestReferenceManageTo                     string_+
    2694   ManifestReferenceManageUI                     string_+
    2695   ManifestReferenceMaskMarkers                  string_+
    2696   ManifestReferenceOriginalDocumentID           string_+
    2697   ManifestReferencePartMapping                  string_+
    2698   ManifestReferenceRenditionClass               string_+
    2699   ManifestReferenceRenditionParams              string_+
    2700   ManifestReferenceToPart                       string_+
    2701   ManifestReferenceVersionID                    string_+
    2702   OriginalDocumentID                            string
    2703   Pantry                                        PantryItem Struct+
    2704   PreservedFileName                             string
    2705   RenditionClass                                string
    2706   RenditionOf                                   ResourceRef Struct
    2707   RenditionOfAlternatePaths                     string_+
    2708   RenditionOfDocumentID                         string_
    2709   RenditionOfFilePath                           string_
    2710   RenditionOfFromPart                           string_
    2711   RenditionOfInstanceID                         string_
    2712   RenditionOfLastModifyDate                     date_
    2713   RenditionOfManager                            string_
    2714   RenditionOfManagerVariant                     string_
    2715   RenditionOfManageTo                           string_
    2716   RenditionOfManageUI                           string_
    2717   RenditionOfMaskMarkers                        string_
    2718   RenditionOfOriginalDocumentID                 string_
    2719   RenditionOfPartMapping                        string_
    2720   RenditionOfRenditionClass                     string_
    2721   RenditionOfRenditionParams                    string_
    2722   RenditionOfToPart                             string_
    2723   RenditionOfVersionID                          string_
    2724   RenditionParams                               string
    2725   SaveID                                        integer
    2726   VersionID                                     string
    2727   Versions                                      Version Struct+
    2728   VersionsComments                              string_+
    2729   VersionsEvent                                 ResourceEvent Struct_+
    2730   VersionsEventAction                           string_+
    2731   VersionsEventChanged                          string_+
    2732   VersionsEventInstanceID                       string_+
    2733   VersionsEventParameters                       string_+
    2734   VersionsEventSoftwareAgent                    string_+
    2735   VersionsEventWhen                             date_+
    2736   VersionsModifier                              string_+
    2737   VersionsModifyDate                            date_+
    2738   VersionsVersion                               string_+
    2739 
    2740 =head3 XMP ResourceRef Struct
    2741 
    2742   Field Name                                    Writable
    2743   ----------                                    --------
    2744   AlternatePaths                                string+
    2745   DocumentID                                    string
    2746   FilePath                                      string
    2747   FromPart                                      string
    2748   InstanceID                                    string
    2749   LastModifyDate                                date
    2750   ManageTo                                      string
    2751   ManageUI                                      string
    2752   Manager                                       string
    2753   ManagerVariant                                string
    2754   MaskMarkers                                   string
    2755   OriginalDocumentID                            string
    2756   PartMapping                                   string
    2757   RenditionClass                                string
    2758   RenditionParams                               string
    2759   ToPart                                        string
    2760   VersionID                                     string
    2761 
    2762 =head3 XMP ResourceEvent Struct
    2763 
    2764   Field Name                                    Writable
    2765   ----------                                    --------
    2766   Action                                        string
    2767   Changed                                       string
    2768   InstanceID                                    string
    2769   Parameters                                    string
    2770   SoftwareAgent                                 string
    2771   When                                          date
    2772 
    2773 =head3 XMP ManifestItem Struct
    2774 
    2775   Field Name                                    Writable
    2776   ----------                                    --------
    2777   LinkForm                                      string
    2778   PlacedResolutionUnit                          string
    2779   PlacedXResolution                             real
    2780   PlacedYResolution                             real
    2781   Reference                                     ResourceRef Struct
    2782 
    2783 =head3 XMP PantryItem Struct
    2784 
    2785 This structure must have an InstanceID field, but may also contain any other
    2786 XMP properties.
    2787 
    2788   Field Name                                    Writable
    2789   ----------                                    --------
    2790   InstanceID                                    string
    2791 
    2792 =head3 XMP Version Struct
    2793 
    2794   Field Name                                    Writable
    2795   ----------                                    --------
    2796   Comments                                      string
    2797   Event                                         ResourceEvent Struct
    2798   Modifier                                      string
    2799   ModifyDate                                    date
    2800   Version                                       string
    2801 
    2802 =head3 XMP xmpNote Tags
    2803 
    2804 XMP Note schema tags.
    2805 
    2806   Tag Name                                      Writable
    2807   --------                                      --------
    2808   HasExtendedXMP                                boolean*
    2809 
    2810 =head3 XMP xmpPLUS Tags
    2811 
    2812 XMP Picture Licensing Universal System (PLUS) schema tags.
    2813 
    2814   Tag Name                                      Writable
    2815   --------                                      --------
    2816   CreditLineReq                                 boolean
    2817   ReuseAllowed                                  boolean
    2818 
    2819 =head3 XMP xmpRights Tags
    2820 
    2821 XMP Rights Management schema tags.
    2822 
    2823   Tag Name                                      Writable
    2824   --------                                      --------
    2825   Certificate                                   string
    2826   Marked                                        boolean
    2827   Owner                                         string+
    2828   UsageTerms                                    lang-alt
    2829   WebStatement                                  string
    2830 
    2831 =head3 XMP xmpTPg Tags
    2832 
    2833 XMP Paged-Text schema tags.
    2834 
    2835   Tag Name                                      Writable
    2836   --------                                      --------
    2837   Colorants                                     Colorant Struct+
    2838   ColorantA                                     integer_+
    2839   ColorantB                                     integer_+
    2840   ColorantBlack                                 real_+
    2841   ColorantBlue                                  integer_+
    2842   ColorantCyan                                  real_+
    2843   ColorantGreen                                 integer_+
    2844   ColorantL                                     real_+
    2845   ColorantMagenta                               real_+
    2846   ColorantMode                                  string_+
    2847   ColorantRed                                   integer_+
    2848   ColorantSwatchName                            string_+
    2849   ColorantType                                  string_+
    2850   ColorantYellow                                real_+
    2851   Fonts                                         Font Struct+
    2852   ChildFontFiles                                string_+
    2853   FontComposite                                 boolean_+
    2854   FontFace                                      string_+
    2855   FontFamily                                    string_+
    2856   FontFileName                                  string_+
    2857   FontName                                      string_+
    2858   FontType                                      string_+
    2859   FontVersion                                   string_+
    2860   MaxPageSize                                   Dimensions Struct
    2861   MaxPageSizeH                                  real_
    2862   MaxPageSizeUnit                               string_
    2863   MaxPageSizeW                                  real_
    2864   NPages                                        integer
    2865   PlateNames                                    string+
    2866 
    2867 =head3 XMP Font Struct
    2868 
    2869   Field Name                                    Writable
    2870   ----------                                    --------
    2871   ChildFontFiles                                string+
    2872   Composite                                     boolean
    2873   FontFace                                      string
    2874   FontFamily                                    string
    2875   FontFileName                                  string
    2876   FontName                                      string
    2877   FontType                                      string
    2878   VersionString                                 string
    2879 
    2880 =head3 XMP SVG Tags
    2881 
    2882 SVG (Scalable Vector Graphics) image tags.  By default, only the top-level
    2883 SVG and Metadata tags are extracted from these images, but all graphics tags
    2884 may be extracted by setting the Unknown option to 2 (-U on the command
    2885 line).  The SVG tags are not part of XMP as such, but are included with the
    2886 XMP module for convenience.  (see L<http://www.w3.org/TR/SVG11/>)
    2887 
    2888   Tag ID               Tag Name                 Writable
    2889   ------               --------                 --------
    2890   'height'             ImageHeight              N
    2891   'id'                 ID                       N
    2892   'metadataId'         MetadataID               N
    2893   'version'            SVGVersion               N
    2894   'width'              ImageWidth               N
    2895 
    2896 =head2 GPS Tags
    2897 
    2898 These GPS tags are part of the EXIF standard, and are stored in a separate
    2899 IFD within the EXIF information.
    2900 
    2901 ExifTool is very flexible about the input format when writing lat/long
    2902 coordinates, and will accept from 1 to 3 floating point numbers (for decimal
    2903 degrees, degrees and minutes, or degrees, minutes and seconds) separated by
    2904 just about anything, and will format them properly according to the EXIF
    2905 specification.
    2906 
    2907 Some GPS tags have values which are fixed-length strings. For these, the
    2908 indicated string lengths include a null terminator which is added
    2909 automatically by ExifTool.  Remember that the descriptive values are used
    2910 when writing (ie. 'Above Sea Level', not '0') unless the print conversion is
    2911 disabled (with '-n' on the command line or the PrintConv option in the API,
    2912 or by suffixing the tag name with a C<#> character).
    2913 
    2914 When adding GPS information to an image, it is important to set all of the
    2915 following tags: GPSLatitude, GPSLatitudeRef, GPSLongitude, GPSLongitudeRef,
    2916 GPSAltitude and GPSAltitudeRef.  ExifTool will write the required
    2917 GPSVersionID tag automatically if new a GPS IFD is added to an image.
    2918 
    2919   Tag ID   Tag Name                             Writable
    2920   ------   --------                             --------
    2921   0x0000   GPSVersionID                         int8u[4]:
    2922   0x0001   GPSLatitudeRef                       string[2]
    2923   0x0002   GPSLatitude                          rational64u[3]
    2924   0x0003   GPSLongitudeRef                      string[2]
    2925   0x0004   GPSLongitude                         rational64u[3]
    2926   0x0005   GPSAltitudeRef                       int8u
    2927   0x0006   GPSAltitude                          rational64u
    2928   0x0007   GPSTimeStamp                         rational64u[3]
    2929   0x0008   GPSSatellites                        string
    2930   0x0009   GPSStatus                            string[2]
    2931   0x000a   GPSMeasureMode                       string[2]
    2932   0x000b   GPSDOP                               rational64u
    2933   0x000c   GPSSpeedRef                          string[2]
    2934   0x000d   GPSSpeed                             rational64u
    2935   0x000e   GPSTrackRef                          string[2]
    2936   0x000f   GPSTrack                             rational64u
    2937   0x0010   GPSImgDirectionRef                   string[2]
    2938   0x0011   GPSImgDirection                      rational64u
    2939   0x0012   GPSMapDatum                          string
    2940   0x0013   GPSDestLatitudeRef                   string[2]
    2941   0x0014   GPSDestLatitude                      rational64u[3]
    2942   0x0015   GPSDestLongitudeRef                  string[2]
    2943   0x0016   GPSDestLongitude                     rational64u[3]
    2944   0x0017   GPSDestBearingRef                    string[2]
    2945   0x0018   GPSDestBearing                       rational64u
    2946   0x0019   GPSDestDistanceRef                   string[2]
    2947   0x001a   GPSDestDistance                      rational64u
    2948   0x001b   GPSProcessingMethod                  undef
    2949   0x001c   GPSAreaInformation                   undef
    2950   0x001d   GPSDateStamp                         string[11]
    2951   0x001e   GPSDifferential                      int16u
    2952   0x001f   GPSHPositioningError                 rational64u
    2953 
    2954 =head2 GeoTiff Tags
    2955 
    2956 ExifTool extracts the following tags from GeoTIFF images.  See
    2957 L<http://www.remotesensing.org/geotiff/spec/geotiffhome.html> for the
    2958 complete GeoTIFF specification.
    2959 
    2960   Tag ID   Tag Name                             Writable
    2961   ------   --------                             --------
    2962   0x0001   GeoTiffVersion                       N
    2963   0x0400   GTModelType                          N
    2964   0x0401   GTRasterType                         N
    2965   0x0402   GTCitation                           N
    2966   0x0800   GeographicType                       N
    2967   0x0801   GeogCitation                         N
    2968   0x0802   GeogGeodeticDatum                    N
    2969   0x0803   GeogPrimeMeridian                    N
    2970   0x0804   GeogLinearUnits                      N
    2971   0x0805   GeogLinearUnitSize                   N
    2972   0x0806   GeogAngularUnits                     N
    2973   0x0807   GeogAngularUnitSize                  N
    2974   0x0808   GeogEllipsoid                        N
    2975   0x0809   GeogSemiMajorAxis                    N
    2976   0x080a   GeogSemiMinorAxis                    N
    2977   0x080b   GeogInvFlattening                    N
    2978   0x080c   GeogAzimuthUnits                     N
    2979   0x080d   GeogPrimeMeridianLong                N
    2980   0x0c00   ProjectedCSType                      N
    2981   0x0c01   PCSCitation                          N
    2982   0x0c02   Projection                           N
    2983   0x0c03   ProjCoordTrans                       N
    2984   0x0c04   ProjLinearUnits                      N
    2985   0x0c05   ProjLinearUnitSize                   N
    2986   0x0c06   ProjStdParallel1                     N
    2987   0x0c07   ProjStdParallel2                     N
    2988   0x0c08   ProjNatOriginLong                    N
    2989   0x0c09   ProjNatOriginLat                     N
    2990   0x0c0a   ProjFalseEasting                     N
    2991   0x0c0b   ProjFalseNorthing                    N
    2992   0x0c0c   ProjFalseOriginLong                  N
    2993   0x0c0d   ProjFalseOriginLat                   N
    2994   0x0c0e   ProjFalseOriginEasting               N
    2995   0x0c0f   ProjFalseOriginNorthing              N
    2996   0x0c10   ProjCenterLong                       N
    2997   0x0c11   ProjCenterLat                        N
    2998   0x0c12   ProjCenterEasting                    N
    2999   0x0c13   ProjCenterNorthing                   N
    3000   0x0c14   ProjScaleAtNatOrigin                 N
    3001   0x0c15   ProjScaleAtCenter                    N
    3002   0x0c16   ProjAzimuthAngle                     N
    3003   0x0c17   ProjStraightVertPoleLong             N
    3004   0x0c18   ProjRectifiedGridAngle               N
    3005   0x1000   VerticalCSType                       N
    3006   0x1001   VerticalCitation                     N
    3007   0x1002   VerticalDatum                        N
    3008   0x1003   VerticalUnits                        N
    3009 
    30105516=head2 ICC_Profile Tags
    30115517
     
    30205526  Tag ID   Tag Name                             Writable
    30215527  ------   --------                             --------
    3022   'A2B0'   AToB0                                N
    3023   'A2B1'   AToB1                                N
    3024   'A2B2'   AToB2                                N
    3025   'B2A0'   BToA0                                N
    3026   'B2A1'   BToA1                                N
    3027   'B2A2'   BToA2                                N
    3028   'B2D0'   BToD0                                N
    3029   'B2D1'   BToD1                                N
    3030   'B2D2'   BToD2                                N
    3031   'B2D3'   BToD3                                N
    3032   'D2B0'   DToB0                                N
    3033   'D2B1'   DToB1                                N
    3034   'D2B2'   DToB2                                N
    3035   'D2B3'   DToB3                                N
     5528  'A2B0'   AToB0                                no
     5529  'A2B1'   AToB1                                no
     5530  'A2B2'   AToB2                                no
     5531  'B2A0'   BToA0                                no
     5532  'B2A1'   BToA1                                no
     5533  'B2A2'   BToA2                                no
     5534  'B2D0'   BToD0                                no
     5535  'B2D1'   BToD1                                no
     5536  'B2D2'   BToD2                                no
     5537  'B2D3'   BToD3                                no
     5538  'D2B0'   DToB0                                no
     5539  'D2B1'   DToB1                                no
     5540  'D2B2'   DToB2                                no
     5541  'D2B3'   DToB3                                no
    30365542  'Header' ProfileHeader                        ICC_Profile Header
    3037   'MS00'   WCSProfiles                          N
    3038   'bTRC'   BlueTRC                              N
    3039   'bXYZ'   BlueMatrixColumn                     N
    3040   'bfd '   UCRBG                                N
    3041   'bkpt'   MediaBlackPoint                      N
    3042   'calt'   CalibrationDateTime                  N
    3043   'chad'   ChromaticAdaptation                  N
     5543  'MS00'   WCSProfiles                          no
     5544  'bTRC'   BlueTRC                              no
     5545  'bXYZ'   BlueMatrixColumn                     no
     5546  'bfd '   UCRBG                                no
     5547  'bkpt'   MediaBlackPoint                      no
     5548  'calt'   CalibrationDateTime                  no
     5549  'chad'   ChromaticAdaptation                  no
    30445550  'chrm'   Chromaticity                         ICC_Profile Chromaticity
    3045   'ciis'   ColorimetricIntentImageState         N
    3046   'clot'   ColorantTableOut                     N
    3047   'clro'   ColorantOrder                        N
     5551  'ciis'   ColorimetricIntentImageState         no
     5552  'clot'   ColorantTableOut                     no
     5553  'clro'   ColorantOrder                        no
    30485554  'clrt'   ColorantTable                        ICC_Profile ColorantTable
    3049   'cprt'   ProfileCopyright                     N
    3050   'crdi'   CRDInfo                              N
    3051   'desc'   ProfileDescription                   N
    3052   'devs'   DeviceSettings                       N
    3053   'dmdd'   DeviceModelDesc                      N
    3054   'dmnd'   DeviceMfgDesc                        N
    3055   'dscm'   ProfileDescriptionML                 N
    3056   'fpce'   FocalPlaneColorimetryEstimates       N
    3057   'gTRC'   GreenTRC                             N
    3058   'gXYZ'   GreenMatrixColumn                    N
    3059   'gamt'   Gamut                                N
    3060   'kTRC'   GrayTRC                              N
    3061   'lumi'   Luminance                            N
     5555  'cprt'   ProfileCopyright                     no
     5556  'crdi'   CRDInfo                              no
     5557  'desc'   ProfileDescription                   no
     5558  'devs'   DeviceSettings                       no
     5559  'dmdd'   DeviceModelDesc                      no
     5560  'dmnd'   DeviceMfgDesc                        no
     5561  'dscm'   ProfileDescriptionML                 no
     5562  'fpce'   FocalPlaneColorimetryEstimates       no
     5563  'gTRC'   GreenTRC                             no
     5564  'gXYZ'   GreenMatrixColumn                    no
     5565  'gamt'   Gamut                                no
     5566  'kTRC'   GrayTRC                              no
     5567  'lumi'   Luminance                            no
    30625568  'meas'   Measurement                          ICC_Profile Measurement
    30635569  'meta'   Metadata                             ICC_Profile Metadata
    3064   'mmod'   MakeAndModel                         N
    3065   'ncl2'   NamedColor2                          N
    3066   'ncol'   NamedColor                           N
    3067   'ndin'   NativeDisplayInfo                    N
    3068   'pre0'   Preview0                             N
    3069   'pre1'   Preview1                             N
    3070   'pre2'   Preview2                             N
    3071   'ps2i'   PS2RenderingIntent                   N
    3072   'ps2s'   PostScript2CSA                       N
    3073   'psd0'   PostScript2CRD0                      N
    3074   'psd1'   PostScript2CRD1                      N
    3075   'psd2'   PostScript2CRD2                      N
    3076   'pseq'   ProfileSequenceDesc                  N
    3077   'psid'   ProfileSequenceIdentifier            N
    3078   'psvm'   PS2CRDVMSize                         N
    3079   'rTRC'   RedTRC                               N
    3080   'rXYZ'   RedMatrixColumn                      N
    3081   'resp'   OutputResponse                       N
    3082   'rhoc'   ReflectionHardcopyOrigColorimetry    N
    3083   'rig0'   PerceptualRenderingIntentGamut       N
    3084   'rig2'   SaturationRenderingIntentGamut       N
    3085   'rpoc'   ReflectionPrintOutputColorimetry     N
    3086   'sape'   SceneAppearanceEstimates             N
    3087   'scoe'   SceneColorimetryEstimates            N
    3088   'scrd'   ScreeningDesc                        N
    3089   'scrn'   Screening                            N
    3090   'targ'   CharTarget                           N
    3091   'tech'   Technology                           N
    3092   'vcgt'   VideoCardGamma                       N
     5570  'mmod'   MakeAndModel                         no
     5571  'ncl2'   NamedColor2                          no
     5572  'ncol'   NamedColor                           no
     5573  'ndin'   NativeDisplayInfo                    no
     5574  'pre0'   Preview0                             no
     5575  'pre1'   Preview1                             no
     5576  'pre2'   Preview2                             no
     5577  'ps2i'   PS2RenderingIntent                   no
     5578  'ps2s'   PostScript2CSA                       no
     5579  'psd0'   PostScript2CRD0                      no
     5580  'psd1'   PostScript2CRD1                      no
     5581  'psd2'   PostScript2CRD2                      no
     5582  'psd3'   PostScript2CRD3                      no
     5583  'pseq'   ProfileSequenceDesc                  no
     5584  'psid'   ProfileSequenceIdentifier            no
     5585  'psvm'   PS2CRDVMSize                         no
     5586  'rTRC'   RedTRC                               no
     5587  'rXYZ'   RedMatrixColumn                      no
     5588  'resp'   OutputResponse                       no
     5589  'rhoc'   ReflectionHardcopyOrigColorimetry    no
     5590  'rig0'   PerceptualRenderingIntentGamut       no
     5591  'rig2'   SaturationRenderingIntentGamut       no
     5592  'rpoc'   ReflectionPrintOutputColorimetry     no
     5593  'sape'   SceneAppearanceEstimates             no
     5594  'scoe'   SceneColorimetryEstimates            no
     5595  'scrd'   ScreeningDesc                        no
     5596  'scrn'   Screening                            no
     5597  'targ'   CharTarget                           no
     5598  'tech'   Technology                           no
     5599  'vcgt'   VideoCardGamma                       no
    30935600  'view'   ViewingConditions                    ICC_Profile ViewingConditions
    3094   'vued'   ViewingCondDesc                      N
    3095   'wtpt'   MediaWhitePoint                      N
     5601  'vued'   ViewingCondDesc                      no
     5602  'wtpt'   MediaWhitePoint                      no
    30965603
    30975604=head3 ICC_Profile Header Tags
    30985605
    3099    Index   Tag Name                             Writable
    3100    -----   --------                             --------
    3101       4    ProfileCMMType                       N
    3102       8    ProfileVersion                       N
    3103      12    ProfileClass                         N
    3104      16    ColorSpaceData                       N
    3105      20    ProfileConnectionSpace               N
    3106      24    ProfileDateTime                      N
    3107      36    ProfileFileSignature                 N
    3108      40    PrimaryPlatform                      N
    3109      44    CMMFlags                             N
    3110      48    DeviceManufacturer                   N
    3111      52    DeviceModel                          N
    3112      56    DeviceAttributes                     N
    3113      64    RenderingIntent                      N
    3114      68    ConnectionSpaceIlluminant            N
    3115      80    ProfileCreator                       N
    3116      84    ProfileID                            N
     5606  Index1   Tag Name                             Writable
     5607  ------   --------                             --------
     5608      4    ProfileCMMType                       no
     5609      8    ProfileVersion                       no
     5610     12    ProfileClass                         no
     5611     16    ColorSpaceData                       no
     5612     20    ProfileConnectionSpace               no
     5613     24    ProfileDateTime                      no
     5614     36    ProfileFileSignature                 no
     5615     40    PrimaryPlatform                      no
     5616     44    CMMFlags                             no
     5617     48    DeviceManufacturer                   no
     5618     52    DeviceModel                          no
     5619     56    DeviceAttributes                     no
     5620     64    RenderingIntent                      no
     5621     68    ConnectionSpaceIlluminant            no
     5622     80    ProfileCreator                       no
     5623     84    ProfileID                            no
    31175624
    31185625=head3 ICC_Profile Chromaticity Tags
    31195626
    3120    Index   Tag Name                             Writable
    3121    -----   --------                             --------
    3122       8    ChromaticityChannels                 N
    3123      10    ChromaticityColorant                 N
    3124      12    ChromaticityChannel1                 N
    3125      20    ChromaticityChannel2                 N
    3126      28    ChromaticityChannel3                 N
    3127      36    ChromaticityChannel4                 N
     5627  Index1   Tag Name                             Writable
     5628  ------   --------                             --------
     5629      8    ChromaticityChannels                 no
     5630     10    ChromaticityColorant                 no
     5631     12    ChromaticityChannel1                 no
     5632     20    ChromaticityChannel2                 no
     5633     28    ChromaticityChannel3                 no
     5634     36    ChromaticityChannel4                 no
    31285635
    31295636=head3 ICC_Profile ColorantTable Tags
    31305637
    3131    Index   Tag Name                             Writable
    3132    -----   --------                             --------
    3133       8    ColorantCount                        N
    3134      12    Colorant1Name                        N
    3135      44    Colorant1Coordinates                 N
    3136      50    Colorant2Name                        N
    3137      82    Colorant2Coordinates                 N
    3138      88    Colorant3Name                        N
    3139     120    Colorant3Coordinates                 N
     5638  Index1   Tag Name                             Writable
     5639  ------   --------                             --------
     5640      8    ColorantCount                        no
     5641     12    Colorant1Name                        no
     5642     44    Colorant1Coordinates                 no
     5643     50    Colorant2Name                        no
     5644     82    Colorant2Coordinates                 no
     5645     88    Colorant3Name                        no
     5646    120    Colorant3Coordinates                 no
    31405647
    31415648=head3 ICC_Profile Measurement Tags
    31425649
    3143    Index   Tag Name                             Writable
    3144    -----   --------                             --------
    3145       8    MeasurementObserver                  N
    3146      12    MeasurementBacking                   N
    3147      24    MeasurementGeometry                  N
    3148      28    MeasurementFlare                     N
    3149      32    MeasurementIlluminant                N
     5650  Index1   Tag Name                             Writable
     5651  ------   --------                             --------
     5652      8    MeasurementObserver                  no
     5653     12    MeasurementBacking                   no
     5654     24    MeasurementGeometry                  no
     5655     28    MeasurementFlare                     no
     5656     32    MeasurementIlluminant                no
    31505657
    31515658=head3 ICC_Profile Metadata Tags
     
    31565663  Tag Name                                      Writable
    31575664  --------                                      --------
    3158   ManufacturerName                              N
    3159   MediaColor                                    N
    3160   MediaWeight                                   N
     5665  ManufacturerName                              no
     5666  MediaColor                                    no
     5667  MediaWeight                                   no
    31615668
    31625669=head3 ICC_Profile ViewingConditions Tags
    31635670
    3164    Index   Tag Name                             Writable
    3165    -----   --------                             --------
    3166       8    ViewingCondIlluminant                N
    3167      20    ViewingCondSurround                  N
    3168      32    ViewingCondIlluminantType            N
     5671  Index1   Tag Name                             Writable
     5672  ------   --------                             --------
     5673      8    ViewingCondIlluminant                no
     5674     20    ViewingCondSurround                  no
     5675     32    ViewingCondIlluminantType            no
    31695676
    31705677=head2 PrintIM Tags
     
    31755682  Tag ID               Tag Name                 Writable
    31765683  ------               --------                 --------
    3177   'PrintIMVersion'     PrintIMVersion           N
     5684  'PrintIMVersion'     PrintIMVersion           no
    31785685
    31795686=head2 Photoshop Tags
     
    31855692Many Photoshop tags are marked as Unknown (indicated by a question mark
    31865693after the tag name) because the information they provide is not very useful
    3187 under normal circumstances I<[and because Adobe denied my application for
    3188 their file format documentation -- apparently open source software is too
    3189 big a concept for them]>.  These unknown tags are not extracted unless the
    3190 Unknown (-u) option is used.
     5694under normal circumstances.  These unknown tags are not extracted unless the
     5695Unknown (-u) option is used.  See
     5696L<http://www.adobe.com/devnet-apps/photoshop/fileformatashtml/> for the
     5697official specification
     5698
     5699Photoshop path tags (Tag ID's 0x7d0 to 0xbb5) are not defined by default,
     5700but a config file included in the full ExifTool distribution
     5701(config_files/photoshop_paths.config) contains the tag definitions to allow
     5702access to this information.
    31915703
    31925704  Tag ID   Tag Name                             Writable
    31935705  ------   --------                             --------
    3194   0x03e8   Photoshop2Info?                      N
    3195   0x03e9   MacintoshPrintInfo?                  N
    3196   0x03ea   XMLData?                             N
    3197   0x03eb   Photoshop2ColorTable?                N
     5706  0x03e8   Photoshop2Info?                      no
     5707  0x03e9   MacintoshPrintInfo?                  no
     5708  0x03ea   XMLData?                             no
     5709  0x03eb   Photoshop2ColorTable?                no
    31985710  0x03ed   ResolutionInfo                       Photoshop Resolution
    3199   0x03ee   AlphaChannelsNames                   N
    3200   0x03ef   DisplayInfo?                         N
    3201   0x03f0   PStringCaption?                      N
    3202   0x03f1   BorderInformation?                   N
    3203   0x03f2   BackgroundColor?                     N
    3204   0x03f3   PrintFlags?                          N
    3205   0x03f4   BW_HalftoningInfo?                   N
    3206   0x03f5   ColorHalftoningInfo?                 N
    3207   0x03f6   DuotoneHalftoningInfo?               N
    3208   0x03f7   BW_TransferFunc?                     N
    3209   0x03f8   ColorTransferFuncs?                  N
    3210   0x03f9   DuotoneTransferFuncs?                N
    3211   0x03fa   DuotoneImageInfo?                    N
    3212   0x03fb   EffectiveBW?                         N
    3213   0x03fc   ObsoletePhotoshopTag1?               N
    3214   0x03fd   EPSOptions?                          N
    3215   0x03fe   QuickMaskInfo?                       N
    3216   0x03ff   ObsoletePhotoshopTag2?               N
    3217   0x0400   LayerStateInfo?                      N
    3218   0x0401   WorkingPath?                         N
    3219   0x0402   LayersGroupInfo?                     N
    3220   0x0403   ObsoletePhotoshopTag3?               N
     5711  0x03ee   AlphaChannelsNames                   no
     5712  0x03ef   DisplayInfo?                         no
     5713  0x03f0   PStringCaption?                      no
     5714  0x03f1   BorderInformation?                   no
     5715  0x03f2   BackgroundColor?                     no
     5716  0x03f3   PrintFlags?                          no
     5717  0x03f4   BW_HalftoningInfo?                   no
     5718  0x03f5   ColorHalftoningInfo?                 no
     5719  0x03f6   DuotoneHalftoningInfo?               no
     5720  0x03f7   BW_TransferFunc?                     no
     5721  0x03f8   ColorTransferFuncs?                  no
     5722  0x03f9   DuotoneTransferFuncs?                no
     5723  0x03fa   DuotoneImageInfo?                    no
     5724  0x03fb   EffectiveBW?                         no
     5725  0x03fc   ObsoletePhotoshopTag1?               no
     5726  0x03fd   EPSOptions?                          no
     5727  0x03fe   QuickMaskInfo?                       no
     5728  0x03ff   ObsoletePhotoshopTag2?               no
     5729  0x0400   TargetLayerID?                       no
     5730  0x0401   WorkingPath?                         no
     5731  0x0402   LayersGroupInfo?                     no
     5732  0x0403   ObsoletePhotoshopTag3?               no
    32215733  0x0404   IPTCData                             IPTC
    3222   0x0405   RawImageMode?                        N
     5734  0x0405   RawImageMode?                        no
    32235735  0x0406   JPEG_Quality                         Photoshop JPEG_Quality
    3224   0x0408   GridGuidesInfo?                      N
    3225   0x0409   PhotoshopBGRThumbnail                N
     5736  0x0408   GridGuidesInfo?                      no
     5737  0x0409   PhotoshopBGRThumbnail                undef!
    32265738  0x040a   CopyrightFlag                        int8u
    32275739  0x040b   URL                                  string
    3228   0x040c   PhotoshopThumbnail                   N
     5740  0x040c   PhotoshopThumbnail                   undef!
    32295741  0x040d   GlobalAngle                          int32u
    3230   0x040e   ColorSamplersResource?               N
     5742  0x040e   ColorSamplersResource?               no
    32315743  0x040f   ICC_Profile                          ICC_Profile
    3232   0x0410   Watermark?                           N
    3233   0x0411   ICC_Untagged?                        N
    3234   0x0412   EffectsVisible?                      N
    3235   0x0413   SpotHalftone?                        N
    3236   0x0414   IDsBaseValue?                        N
    3237   0x0415   UnicodeAlphaNames?                   N
    3238   0x0416   IndexedColourTableCount?             N
    3239   0x0417   TransparentIndex?                    N
     5744  0x0410   Watermark?                           no
     5745  0x0411   ICC_Untagged?                        no
     5746  0x0412   EffectsVisible?                      no
     5747  0x0413   SpotHalftone?                        no
     5748  0x0414   IDsBaseValue?                        no
     5749  0x0415   UnicodeAlphaNames?                   no
     5750  0x0416   IndexedColorTableCount?              no
     5751  0x0417   TransparentIndex?                    no
    32405752  0x0419   GlobalAltitude                       int32u
    3241   0x041a   Slices?                              N
    3242   0x041b   WorkflowURL?                         N
    3243   0x041c   JumpToXPEP?                          N
    3244   0x041d   AlphaIdentifiers?                    N
    3245   0x041e   URL_List?                            N
    3246   0x0421   VersionInfo?                         N
     5753  0x041a   SliceInfo                            Photoshop SliceInfo
     5754  0x041b   WorkflowURL                          no
     5755  0x041c   JumpToXPEP?                          no
     5756  0x041d   AlphaIdentifiers?                    no
     5757  0x041e   URL_List                             no+
     5758  0x0421   VersionInfo                          Photoshop VersionInfo
    32475759  0x0422   EXIFInfo                             EXIF
    3248   0x0423   ExifInfo2?                           N
     5760  0x0423   ExifInfo2?                           no
    32495761  0x0424   XMP                                  XMP
    32505762  0x0425   IPTCDigest                           string!
    3251   0x0426   PrintScale?                          N
    3252   0x0428   PixelAspectRatio?                    N
    3253   0x0429   LayerComps?                          N
    3254   0x042a   AlternateDuotoneColors?              N
    3255   0x042b   AlternateSpotColors?                 N
    3256   0x0bb7   ClippingPathName                     N
    3257   0x2710   PrintFlagsInfo?                      N
     5763  0x0426   PrintScaleInfo                       Photoshop PrintScaleInfo
     5764  0x0428   PixelInfo                            Photoshop PixelInfo
     5765  0x0429   LayerComps?                          no
     5766  0x042a   AlternateDuotoneColors?              no
     5767  0x042b   AlternateSpotColors?                 no
     5768  0x042d   LayerSelectionIDs?                   no
     5769  0x042e   HDRToningInfo?                       no
     5770  0x042f   PrintInfo?                           no
     5771  0x0430   LayerGroupsEnabledID?                no
     5772  0x0431   ColorSamplersResource2?              no
     5773  0x0432   MeasurementScale?                    no
     5774  0x0433   TimelineInfo?                        no
     5775  0x0434   SheetDisclosure?                     no
     5776  0x0435   DisplayInfo?                         no
     5777  0x0436   OnionSkins?                          no
     5778  0x0438   CountInfo?                           no
     5779  0x043a   PrintInfo2?                          no
     5780  0x043b   PrintStyle?                          no
     5781  0x043c   MacintoshNSPrintInfo?                no
     5782  0x043d   WindowsDEVMODE?                      no
     5783  0x043e   AutoSaveFilePath?                    no
     5784  0x043f   AutoSaveFormat?                      no
     5785  0x0440   PathSelectionState?                  no
     5786  0x0bb7   ClippingPathName                     no
     5787  0x0bb8   OriginPathInfo?                      no
     5788  0x1b58   ImageReadyVariables?                 no
     5789  0x1b59   ImageReadyDataSets?                  no
     5790  0x1f40   LightroomWorkflow?                   no
     5791  0x2710   PrintFlagsInfo?                      no
    32585792
    32595793=head3 Photoshop Resolution Tags
    32605794
    3261    Index   Tag Name                             Writable
    3262    -----   --------                             --------
     5795  Index2   Tag Name                             Writable
     5796  ------   --------                             --------
    32635797      0    XResolution                          int32u
    32645798      2    DisplayedUnitsX                      int16u
     
    32685802=head3 Photoshop JPEG_Quality Tags
    32695803
    3270    Index   Tag Name                             Writable
    3271    -----   --------                             --------
     5804  Index2   Tag Name                             Writable
     5805  ------   --------                             --------
    32725806      0    PhotoshopQuality                     int16s
    3273       1    PhotoshopFormat                      N
    3274       2    ProgressiveScans                     N
     5807      1    PhotoshopFormat                      no
     5808      2    ProgressiveScans                     no
     5809
     5810=head3 Photoshop SliceInfo Tags
     5811
     5812  Index1   Tag Name                             Writable
     5813  ------   --------                             --------
     5814     20    SlicesGroupName                      no
     5815     24    NumSlices                            no
     5816
     5817=head3 Photoshop VersionInfo Tags
     5818
     5819  Index1   Tag Name                             Writable
     5820  ------   --------                             --------
     5821      4    HasRealMergedData                    no
     5822      5    WriterName                           no
     5823      9    ReaderName                           no
     5824
     5825=head3 Photoshop PrintScaleInfo Tags
     5826
     5827  Index1   Tag Name                             Writable
     5828  ------   --------                             --------
     5829      0    PrintStyle                           no
     5830      2    PrintPosition                        no
     5831     10    PrintScale                           no
     5832
     5833=head3 Photoshop PixelInfo Tags
     5834
     5835  Index1   Tag Name                             Writable
     5836  ------   --------                             --------
     5837      4    PixelAspectRatio                     no
     5838
     5839=head3 Photoshop DocumentData Tags
     5840
     5841  Tag ID   Tag Name                             Writable
     5842  ------   --------                             --------
     5843  'Layr'   Layers                               Photoshop Layers
     5844  'Lr16'   Layers                               Photoshop Layers
     5845
     5846=head3 Photoshop Layers Tags
     5847
     5848Tags extracted from Photoshop layer information.
     5849
     5850  Tag ID   Tag Name                             Writable
     5851  ------   --------                             --------
     5852  '_xbnd'  LayerBlendModes                      no+
     5853  '_xcnt'  LayerCount                           no
     5854  '_xnam'  LayerNames                           no+
     5855  '_xopc'  LayerOpacities                       no+
     5856  '_xrct'  LayerRectangles                      no+
     5857  'luni'   LayerUnicodeNames                    no+
     5858  'lyid'   LayerIDs?                            no+
     5859  'shmd'   LayerModifyDates                     no+
    32755860
    32765861=head3 Photoshop Header Tags
     
    32785863This information is found in the PSD file header.
    32795864
    3280    Index   Tag Name                             Writable
    3281    -----   --------                             --------
    3282       6    NumChannels                          N
    3283       7    ImageHeight                          N
    3284       9    ImageWidth                           N
    3285      11    BitDepth                             N
    3286      12    ColorMode                            N
     5865  Index2   Tag Name                             Writable
     5866  ------   --------                             --------
     5867      6    NumChannels                          no
     5868      7    ImageHeight                          no
     5869      9    ImageWidth                           no
     5870     11    BitDepth                             no
     5871     12    ColorMode                            no
     5872
     5873=head3 Photoshop ImageData Tags
     5874
     5875  Index1   Tag Name                             Writable
     5876  ------   --------                             --------
     5877      0    Compression                          no
     5878
     5879=head2 Apple Tags
     5880
     5881Tags extracted from the maker notes of iPhone images.
     5882
     5883  Tag ID   Tag Name                             Writable
     5884  ------   --------                             --------
     5885  0x0003   RunTime                              Apple RunTime
     5886  0x0008   AccelerationVector                   rational64s[3]
     5887  0x000a   HDRImageType                         int32s
     5888  0x000b   BurstUUID                            string
     5889  0x0011   MediaGroupUUID                       string
     5890  0x0015   ImageUniqueID                        string
     5891
     5892=head3 Apple RunTime Tags
     5893
     5894This PLIST-format information contains the elements of a CMTime structure
     5895representing the amount of time the phone has been running since the last
     5896boot, not including standby time.
     5897
     5898  Tag ID               Tag Name                 Writable
     5899  ------               --------                 --------
     5900  'epoch'              RunTimeEpoch             no
     5901  'flags'              RunTimeFlags             no
     5902  'timescale'          RunTimeScale             no
     5903  'value'              RunTimeValue             no
     5904
     5905=head2 NikonSettings Tags
     5906
     5907User settings for newer Nikon models.  A number of the tags are marked as
     5908Unknown only to reduce the volume of the normal output.
     5909
     5910  Tag ID   Tag Name                             Writable
     5911  ------   --------                             --------
     5912  0x0001   ISOAutoHiLimit                       no
     5913  0x0002   ISOAutoFlashLimit                    no
     5914  0x0003   ISOAutoShutterTime                   no
     5915  0x000b   FlickerReductionShooting             no
     5916  0x000c   FlickerReductionIndicator            no
     5917  0x000d   MovieISOAutoHiLimit                  no
     5918  0x000e   MovieISOAutoControlManualMode        no
     5919  0x001d   AF-CPrioritySel                      no
     5920  0x001e   AF-SPrioritySel                      no
     5921  0x0020   AFPointSel                           no
     5922  0x0022   AFActivation                         no
     5923  0x0023   FocusPointWrap                       no
     5924  0x0025   ManualFocusPointIllumination         no
     5925  0x0026   AF-AssistIlluminator                 no
     5926  0x0029   ISOStepSize                          no
     5927  0x002a   ExposureControlStepSize              no
     5928  0x002b   EasyExposureCompensation             no
     5929  0x002c   MatrixMetering                       no
     5930  0x002d   CenterWeightedAreaSize               no
     5931  0x002f   FineTuneOptMatrixMetering            no
     5932  0x0030   FineTuneOptCenterWeighted            no
     5933  0x0031   FineTuneOptSpotMetering              no
     5934  0x0032   FineTuneOptHighlightWeighted         no
     5935  0x0033   ShutterReleaseButtonAE-L             no
     5936  0x0034   StandbyMonitorOffTime                no
     5937  0x0035   SelfTimerTime                        no
     5938  0x0036   SelfTimerShotCount                   no
     5939  0x0037   SelfTimerShotInterval                no
     5940  0x0038   PlaybackMonitorOffTime               no
     5941  0x0039   MenuMonitorOffTime                   no
     5942  0x003a   ShootingInfoMonitorOffTime           no
     5943  0x003b   ImageReviewMonitorOffTime            no
     5944  0x003c   LiveViewMonitorOffTime               no
     5945  0x003e   CLModeShootingSpeed                  no
     5946  0x003f   MaxContinuousRelease                 no
     5947  0x0040   ExposureDelayMode                    no
     5948  0x0041   ElectronicFront-CurtainShutter       no
     5949  0x0042   FileNumberSequence                   no
     5950  0x0043   FramingGridDisplay                   no
     5951  0x0045   LCDIllumination                      no
     5952  0x0046   OpticalVR                            no
     5953  0x0047   FlashSyncSpeed                       no
     5954  0x0048   FlashShutterSpeed                    no
     5955  0x0049   FlashExposureCompArea                no
     5956  0x004a   AutoFlashISOSensitivity              no
     5957  0x0051   AssignBktButton                      no
     5958  0x0052   AssignMovieRecordButton              no
     5959  0x0053   MultiSelectorShootMode               no
     5960  0x0054   MultiSelectorPlaybackMode            no
     5961  0x0056   MultiSelectorLiveView                no
     5962  0x0058   CmdDialsReverseRotExposureComp?      no
     5963  0x0059   CmdDialsChangeMainSubExposure?       no
     5964  0x005a   CmdDialsChangeMainSub                no
     5965  0x005b   CmdDialsMenuAndPlayback              no
     5966  0x005c   SubDialFrameAdvance                  no
     5967  0x005d   ReleaseButtonToUseDial               no
     5968  0x005e   ReverseIndicators                    no
     5969  0x0062   MovieShutterButton                   no
     5970  0x0063   Language                             no
     5971  0x006c   ShootingInfoDisplay                  no
     5972  0x0074   FlickAdvanceDirection                no
     5973  0x0080   RemoteFuncButton                     no
     5974  0x008b   CmdDialsReverseRotation              no
     5975  0x008d   FocusPeakingHighlightColor           no
     5976  0x008e   ContinuousModeDisplay                no
     5977  0x008f   ShutterSpeedLock                     no
     5978  0x0090   ApertureLock                         no
     5979  0x0091   MovieHighlightDisplayThreshold       no
     5980  0x0093   BlockShotAFResponse                  no
     5981  0x0094   SubjectMotion                        no
     5982  0x0095   Three-DTrackingFaceDetection         no
     5983  0x0097   StoreByOrientation                   no
     5984  0x0099   DynamicAreaAFAssist                  no
     5985  0x009a   ExposureCompStepSize                 no
     5986  0x009b   SyncReleaseMode                      no
     5987  0x009c   ModelingFlash                        no
     5988  0x009d   AutoBracketModeM                     no
     5989  0x009e   PreviewButton                        no
     5990  0x00a0   Func1Button                          no
     5991  0x00a2   Func2Button                          no
     5992  0x00a3   AF-OnButton                          no
     5993  0x00a4   SubSelector                          no
     5994  0x00a5   SubSelectorCenter                    no
     5995  0x00a7   LensFunc1Button                      no
     5996  0x00a8   CmdDialsApertureSetting              no
     5997  0x00a9   MultiSelector                        no
     5998  0x00aa   LiveViewButtonOptions                no
     5999  0x00ab   LightSwitch                          no
     6000  0x00b1   MoviePreviewButton                   no
     6001           MovieFunc1Button                     no
     6002  0x00b3   MovieFunc1Button                     no
     6003           MovieFunc2Button                     no
     6004  0x00b5   MovieFunc2Button                     no
     6005  0x00b6   AssignMovieSubselector               no
     6006  0x00b8   LimitAFAreaModeSelD9?                no
     6007  0x00b9   LimitAFAreaModeSelD25?               no
     6008  0x00bc   LimitAFAreaModeSel3D?                no
     6009  0x00bd   LimitAFAreaModeSelGroup?             no
     6010  0x00be   LimitAFAreaModeSelAuto?              no
     6011  0x00c1   LimitSelectableImageArea5To4?        no
     6012  0x00c2   LimitSelectableImageArea1To1?        no
     6013  0x00d4   PhotoShootingMenuBank                no
     6014  0x00d5   CustomSettingsBank                   no
     6015  0x00d6   LimitAF-AreaModeSelPinpoint?         no
     6016  0x00d7   LimitAF-AreaModeSelDynamic?          no
     6017  0x00d8   LimitAF-AreaModeSelWideAF_S?         no
     6018  0x00d9   LimitAF-AreaModeSelWideAF_L?         no
     6019  0x00da   LowLightAF                           no
     6020  0x00db   LimitSelectableImageAreaDX?          no
     6021  0x00dc   LimitSelectableImageArea5To4?        no
     6022  0x00dd   LimitSelectableImageArea1To1?        no
     6023  0x00de   LimitSelectableImageArea16To9?       no
     6024  0x00df   ApplySettingsToLiveView              no
     6025  0x00e0   FocusPeakingLevel                    no
     6026  0x00e9   LensControlRing                      no
     6027  0x00ed   MovieMultiSelector                   no
     6028  0x00ee   MovieAFSpeed                         no
     6029  0x00ef   MovieAFSpeedApply                    no
     6030  0x00f0   MovieAFTrackingSensitivity           no
     6031  0x00f1   MovieHighlightDisplayPattern         no
     6032  0x00f2   SubDialFrameAdvanceRating5?          no
     6033  0x00f3   SubDialFrameAdvanceRating4?          no
     6034  0x00f4   SubDialFrameAdvanceRating3?          no
     6035  0x00f5   SubDialFrameAdvanceRating2?          no
     6036  0x00f6   SubDialFrameAdvanceRating1?          no
     6037  0x00f7   SubDialFrameAdvanceRating0?          no
     6038  0x00f9   MovieAF-OnButton                     no
     6039  0x00fb   SecondarySlotFunction                no
     6040  0x00fc   SilentPhotography                    no
     6041  0x00fd   ExtendedShutterSpeeds                no
     6042  0x0109   BracketSet                           no
     6043  0x010a   BracketProgram                       no
     6044  0x010b   BracketIncrement                     no
     6045  0x010c   BracketIncrement                     no
     6046  0x0116   GroupAreaC1                          no
     6047  0x0117   AutoAreaAFStartingPoint              no
     6048  0x0118   FocusPointPersistence                no
     6049  0x0119   LimitAFAreaModeSelD49?               no
     6050  0x011a   LimitAFAreaModeSelD105?              no
     6051  0x011b   LimitAFAreaModeSelGroupC1?           no
     6052  0x011c   LimitAFAreaModeSelGroupC2?           no
     6053  0x011d   AutoFocusModeRestrictions            no
     6054  0x011e   FocusPointBrightness                 no
     6055  0x011f   CHModeShootingSpeed                  no
     6056  0x0120   CLModeShootingSpeed                  no
     6057  0x0121   QuietShutterShootingSpeed            no
     6058  0x0122   LimitReleaseModeSelCL?               no
     6059  0x0123   LimitReleaseModeSelCH?               no
     6060  0x0124   LimitReleaseModeSelQ?                no
     6061  0x0125   LimitReleaseModeSelTimer?            no
     6062  0x0126   LimitReleaseModeSelMirror-Up?        no
     6063  0x0127   LimitSelectableImageArea16To9?       no
     6064  0x0128   RearControPanelDisplay               no
     6065  0x0129   FlashBurstPriority                   no
     6066  0x012a   RecallShootFuncExposureMode          no
     6067  0x012b   RecallShootFuncShutterSpeed          no
     6068  0x012c   RecallShootFuncAperture              no
     6069  0x012d   RecallShootFuncExposureComp          no
     6070  0x012e   RecallShootFuncISO                   no
     6071  0x012f   RecallShootFuncMeteringMode          no
     6072  0x0130   RecallShootFuncWhiteBalance          no
     6073  0x0131   RecallShootFuncAFAreaMode            no
     6074  0x0132   RecallShootFuncFocusTracking         no
     6075  0x0133   RecallShootFuncAF-On                 no
     6076  0x0134   VerticalFuncButton                   no
     6077  0x0135   Func3Button                          no
     6078  0x0136   VerticalAF-OnButton                  no
     6079  0x0137   VerticalMultiSelector                no
     6080  0x0138   MeteringButton                       no
     6081  0x0139   PlaybackFlickUp                      no
     6082  0x013a   PlaybackFlickUpRating                no
     6083  0x013b   PlaybackFlickDown                    no
     6084  0x013c   PlaybackFlickDownRating              no
     6085  0x013d   MovieFunc3Button                     no
     6086  0x0150   ShutterType                          no
     6087  0x0151   LensFunc2Button                      no
     6088  0x0158   USBPowerDelivery                     no
     6089  0x015b   GroupAreaC2                          no
     6090  0x015c   BracketingBurstOptions               no
     6091  0x015e   PrimarySlot                          no
     6092  0x015f   ReverseFocusRing                     no
     6093  0x0160   VerticalFuncButton                   no
     6094  0x0161   VerticalAFOnButton                   no
     6095  0x0162   VerticalMultiSelector                no
     6096  0x0164   VerticalMovieFuncButton              no
     6097  0x0165   VerticalMovieAFOnButton              no
     6098  0x0169   LimitAF-AreaModeSelAutoPeople?       no
     6099  0x016a   LimitAF-AreaModeSelAutoAnimals?      no
     6100  0x016b   LimitAF-AreaModeSelWideLPeople?      no
     6101  0x016c   LimitAF-AreaModeSelWideLAnimals?     no
     6102  0x016e   AFAreaMode                           no
    32876103
    32886104=head2 Canon Tags
     
    32926108  0x0001   CanonCameraSettings                  Canon CameraSettings
    32936109  0x0002   CanonFocalLength                     Canon FocalLength
    3294   0x0003   CanonFlashInfo?                      N
     6110  0x0003   CanonFlashInfo?                      no
    32956111  0x0004   CanonShotInfo                        Canon ShotInfo
    32966112  0x0005   CanonPanorama                        Canon Panorama
     
    33066122           CanonCameraInfo1DmkIII               Canon CameraInfo1DmkIII
    33076123           CanonCameraInfo1DmkIV                Canon CameraInfo1DmkIV
     6124           CanonCameraInfo1DX                   Canon CameraInfo1DX
    33086125           CanonCameraInfo5D                    Canon CameraInfo5D
    33096126           CanonCameraInfo5DmkII                Canon CameraInfo5DmkII
     6127           CanonCameraInfo5DmkIII               Canon CameraInfo5DmkIII
     6128           CanonCameraInfo6D                    Canon CameraInfo6D
    33106129           CanonCameraInfo7D                    Canon CameraInfo7D
    33116130           CanonCameraInfo40D                   Canon CameraInfo40D
    33126131           CanonCameraInfo50D                   Canon CameraInfo50D
    33136132           CanonCameraInfo60D                   Canon CameraInfo60D
     6133           CanonCameraInfo70D                   Canon CameraInfo70D
     6134           CanonCameraInfo80D                   Canon CameraInfo80D
    33146135           CanonCameraInfo450D                  Canon CameraInfo450D
    33156136           CanonCameraInfo500D                  Canon CameraInfo500D
    33166137           CanonCameraInfo550D                  Canon CameraInfo550D
     6138           CanonCameraInfo600D                  Canon CameraInfo600D
     6139           CanonCameraInfo650D                  Canon CameraInfo650D
     6140           CanonCameraInfo700D                  Canon CameraInfo650D
     6141           CanonCameraInfo750D                  Canon CameraInfo750D
     6142           CanonCameraInfo760D                  Canon CameraInfo750D
    33176143           CanonCameraInfo1000D                 Canon CameraInfo1000D
     6144           CanonCameraInfo1100D                 Canon CameraInfo600D
     6145           CanonCameraInfo1200D                 Canon CameraInfo60D
    33186146           CanonCameraInfoPowerShot             Canon CameraInfoPowerShot
    33196147           CanonCameraInfoPowerShot2            Canon CameraInfoPowerShot2
     
    33456173  0x0025   FaceDetect2                          Canon FaceDetect2
    33466174  0x0026   CanonAFInfo2                         Canon AFInfo2
     6175  0x0027   ContrastInfo                         Canon ContrastInfo
    33476176  0x0028   ImageUniqueID                        int8u
    3348   0x0081   RawDataOffset                        N
     6177  0x0029   WBInfo                               Canon WBInfo
     6178  0x002f   FaceDetect3                          Canon FaceDetect3
     6179  0x0035   TimeInfo                             Canon TimeInfo
     6180  0x0038   BatteryType                          undef
     6181  0x003c   AFInfo3                              Canon AFInfo2
     6182  0x0081   RawDataOffset                        no
    33496183  0x0083   OriginalDecisionDataOffset           int32u*
    33506184  0x0090   CustomFunctions1D                    CanonCustom Functions1D
     
    33526186  0x0092   PersonalFunctionValues               CanonCustom PersonalFuncValues
    33536187  0x0093   CanonFileInfo                        Canon FileInfo
    3354   0x0094   AFPointsInFocus1D                    N
     6188  0x0094   AFPointsInFocus1D                    no
    33556189  0x0095   LensModel                            string
    33566190  0x0096   SerialInfo                           Canon SerialInfo
     
    33616195  0x009a   AspectInfo                           Canon AspectInfo
    33626196  0x00a0   ProcessingInfo                       Canon Processing
    3363   0x00a1   ToneCurveTable                       N
    3364   0x00a2   SharpnessTable                       N
    3365   0x00a3   SharpnessFreqTable                   N
    3366   0x00a4   WhiteBalanceTable                    N
     6197  0x00a1   ToneCurveTable                       no
     6198  0x00a2   SharpnessTable                       no
     6199  0x00a3   SharpnessFreqTable                   no
     6200  0x00a4   WhiteBalanceTable                    no
    33676201  0x00a9   ColorBalance                         Canon ColorBalance
    33686202  0x00aa   MeasuredColor                        Canon MeasuredColor
     
    33706204  0x00b0   CanonFlags                           Canon Flags
    33716205  0x00b1   ModifiedInfo                         Canon ModifiedInfo
    3372   0x00b2   ToneCurveMatching                    N
    3373   0x00b3   WhiteBalanceMatching                 N
     6206  0x00b2   ToneCurveMatching                    no
     6207  0x00b3   WhiteBalanceMatching                 no
    33746208  0x00b4   ColorSpace                           int16u
    33756209  0x00b6   PreviewImageInfo                     Canon PreviewImageInfo
     
    33826216           ColorData5                           Canon ColorData5
    33836217           ColorData6                           Canon ColorData6
     6218           ColorData7                           Canon ColorData7
     6219           ColorData8                           Canon ColorData8
     6220           ColorData9                           Canon ColorData9
     6221           ColorData10                          Canon ColorData10
    33846222           ColorDataUnknown                     Canon ColorDataUnknown
    3385   0x4002   CRWParam?                            N
     6223  0x4002   CRWParam?                            no
    33866224  0x4003   ColorInfo                            Canon ColorInfo
    3387   0x4005   Flavor?                              N
    3388   0x4008   BlackLevel?                          N
     6225  0x4005   Flavor?                              no
     6226  0x4008   PictureStyleUserDef                  [Values 0-2]
     6227                                                Canon PictureStyle
     6228  0x4009   PictureStylePC                       [Values 0-2]
     6229                                                Canon PictureStyle
    33896230  0x4010   CustomPictureStyleFileName           string
    33906231  0x4013   AFMicroAdj                           Canon AFMicroAdj
    33916232  0x4015   VignettingCorr                       Canon VignettingCorr
     6233           VignettingCorrUnknown1               Canon VignettingCorrUnknown
     6234           VignettingCorrUnknown2               Canon VignettingCorrUnknown
    33926235  0x4016   VignettingCorr2                      Canon VignettingCorr2
    33936236  0x4018   LightingOpt                          Canon LightingOpt
    33946237  0x4019   LensInfo                             Canon LensInfo
    33956238  0x4020   AmbienceInfo                         Canon Ambience
     6239  0x4021   MultiExp                             Canon MultiExp
    33966240  0x4024   FilterInfo                           Canon FilterInfo
     6241  0x4025   HDRInfo                              Canon HDRInfo
     6242  0x4028   AFConfig                             Canon AFConfig
     6243  0x403f   RawBurstModeRoll                     Canon RawBurstInfo
    33976244
    33986245=head3 Canon CameraSettings Tags
    33996246
    3400    Index   Tag Name                             Writable
    3401    -----   --------                             --------
     6247  Index2   Tag Name                             Writable
     6248  ------   --------                             --------
    34026249      1    MacroMode                            int16s
    34036250      2    SelfTimer                            int16s
     
    34186265     19    AFPoint                              int16s
    34196266     20    CanonExposureMode                    int16s
    3420      22    LensType                             int16s
    3421      23    LongFocal                            int16u
    3422      24    ShortFocal                           int16u
     6267     22    LensType                             int16u
     6268     23    MaxFocalLength                       int16u
     6269     24    MinFocalLength                       int16u
    34236270     25    FocalUnits                           int16s
    34246271     26    MaxAperture                          int16s
     
    34406287=head3 Canon FocalLength Tags
    34416288
    3442    Index   Tag Name                             Writable
    3443    -----   --------                             --------
     6289  Index2   Tag Name                             Writable
     6290  ------   --------                             --------
    34446291      0    FocalType                            int16u
    34456292      1    FocalLength                          int16u
     
    34516298=head3 Canon ShotInfo Tags
    34526299
    3453    Index   Tag Name                             Writable
    3454    -----   --------                             --------
     6300  Index2   Tag Name                             Writable
     6301  ------   --------                             --------
    34556302      1    AutoISO                              int16s
    34566303      2    BaseISO                              int16s
     
    34846331=head3 Canon Panorama Tags
    34856332
    3486    Index   Tag Name                             Writable
    3487    -----   --------                             --------
     6333  Index2   Tag Name                             Writable
     6334  ------   --------                             --------
    34886335      2    PanoramaFrameNumber                  int16s
    34896336      5    PanoramaDirection                    int16s
     
    34916338=head3 Canon UnknownD30 Tags
    34926339
    3493    Index   Tag Name                             Writable
    3494    -----   --------                             --------
     6340  Index2   Tag Name                             Writable
     6341  ------   --------                             --------
    34956342  [no tags known]
    34966343
     
    35036350lists CameraInfo tags for the 1D and 1DS.
    35046351
    3505    Index   Tag Name                             Writable
    3506    -----   --------                             --------
     6352  Index1   Tag Name                             Writable
     6353  ------   --------                             --------
    35076354      4    ExposureTime                         int8u
    35086355     10    FocalLength                          int16u
    35096356     13    LensType                             int16uRev
    3510      14    ShortFocal                           int16u
    3511      16    LongFocal                            int16u
     6357     14    MinFocalLength                       int16u
     6358     16    MaxFocalLength                       int16u
    35126359     65    SharpnessFrequency                   int8u
    35136360     66    Sharpness                            int8s
     
    35256372CameraInfo tags for the 1DmkII and 1DSmkII.
    35266373
    3527    Index   Tag Name                             Writable
    3528    -----   --------                             --------
     6374  Index1   Tag Name                             Writable
     6375  ------   --------                             --------
    35296376      4    ExposureTime                         int8u
    35306377      9    FocalLength                          int16uRev
    35316378     12    LensType                             int16uRev
    3532      17    ShortFocal                           int16uRev
    3533      19    LongFocal                            int16uRev
     6379     17    MinFocalLength                       int16uRev
     6380     19    MaxFocalLength                       int16uRev
    35346381     45    FocalType                            int8u
    35356382     54    WhiteBalance                         int8u
     
    35486395CameraInfo tags for the 1DmkIIN.
    35496396
    3550    Index   Tag Name                             Writable
    3551    -----   --------                             --------
     6397  Index1   Tag Name                             Writable
     6398  ------   --------                             --------
    35526399      4    ExposureTime                         int8u
    35536400      9    FocalLength                          int16uRev
    35546401     12    LensType                             int16uRev
    3555      17    ShortFocal                           int16uRev
    3556      19    LongFocal                            int16uRev
     6402     17    MinFocalLength                       int16uRev
     6403     19    MaxFocalLength                       int16uRev
    35576404     54    WhiteBalance                         int8u
    35586405     55    ColorTemperature                     int16uRev
     
    35686415CameraInfo tags for the 1DmkIII and 1DSmkIII.
    35696416
    3570    Index   Tag Name                             Writable
    3571    -----   --------                             --------
     6417  Index1   Tag Name                             Writable
     6418  ------   --------                             --------
    35726419      3    FNumber                              int8u
    35736420      4    ExposureTime                         int8u
     
    35836430    134    PictureStyle                         int8u
    35846431    273    LensType                             int16uRev
    3585     275    ShortFocal                           int16uRev
    3586     277    LongFocal                            int16uRev
     6432    275    MinFocalLength                       int16uRev
     6433    277    MaxFocalLength                       int16uRev
    35876434    310    FirmwareVersion                      string[6]
    35886435    370    FileIndex                            int32u
     
    35976444Custom picture style information for various models.
    35986445
    3599    Index   Tag Name                             Writable
    3600    -----   --------                             --------
     6446  Index1   Tag Name                             Writable
     6447  ------   --------                             --------
    36016448      0    ContrastStandard                     int32s
    36026449      4    SharpnessStandard                    int32s
     
    36596506=head3 Canon CameraInfo1DmkIV Tags
    36606507
    3661 CameraInfo tags for the 1DmkIV.
    3662 
    3663    Index   Tag Name                             Writable
    3664    -----   --------                             --------
     6508CameraInfo tags for the EOS 1D Mark IV.  Indices shown are for firmware
     6509versions 1.0.x, but they may be different for other firmware versions.
     6510
     6511  Index1   Tag Name                             Writable
     6512  ------   --------                             --------
    36656513      3    FNumber                              int8u
    36666514      4    ExposureTime                         int8u
     
    36756523     84    FocusDistanceUpper                   int16uRev
    36766524     86    FocusDistanceLower                   int16uRev
    3677     119    WhiteBalance                         int16u
    36786525    120    WhiteBalance                         int16u
    3679     123    ColorTemperature                     int16u
    36806526    124    ColorTemperature                     int16u
    3681     334    LensType                             int16uRev
    36826527    335    LensType                             int16uRev
    3683     336    ShortFocal                           int16uRev
    3684     337    ShortFocal                           int16uRev
    3685     338    LongFocal                            int16uRev
    3686     339    LongFocal                            int16uRev
    3687     488    FirmwareVersion                      N
    3688     493    FirmwareVersion                      N
    3689     551    FileIndex                            int32u
     6528    337    MinFocalLength                       int16uRev
     6529    339    MaxFocalLength                       int16uRev
     6530    493    FirmwareVersion                      no
    36906531    556    FileIndex                            int32u
    3691     563    DirectoryIndex                       int32u
    36926532    568    DirectoryIndex                       int32u
    3693     867    PictureStyleInfo                     Canon PSInfo
    36946533    872    PictureStyleInfo                     Canon PSInfo
    36956534
     6535=head3 Canon CameraInfo1DX Tags
     6536
     6537CameraInfo tags for the EOS 1D X.  Indices shown are for firmware version
     65381.0.2, but they may be different for other firmware versions.
     6539
     6540  Index1   Tag Name                             Writable
     6541  ------   --------                             --------
     6542      3    FNumber                              int8u
     6543      4    ExposureTime                         int8u
     6544      6    ISO                                  int8u
     6545     27    CameraTemperature                    int8u
     6546     35    FocalLength                          int16uRev
     6547    125    CameraOrientation                    int8u
     6548    140    FocusDistanceUpper                   int16uRev
     6549    142    FocusDistanceLower                   int16uRev
     6550    188    WhiteBalance                         int16u
     6551    192    ColorTemperature                     int16u
     6552    244    PictureStyle                         int8u
     6553    423    LensType                             int16uRev
     6554    425    MinFocalLength                       int16uRev
     6555    427    MaxFocalLength                       int16uRev
     6556    640    FirmwareVersion                      no
     6557    720    FileIndex                            int32u
     6558    732    DirectoryIndex                       int32u
     6559   1012    PictureStyleInfo                     Canon PSInfo2
     6560
     6561=head3 Canon PSInfo2 Tags
     6562
     6563Custom picture style information for the EOS 5DmkIII, 60D, 600D and 1100D.
     6564
     6565  Index1   Tag Name                             Writable
     6566  ------   --------                             --------
     6567      0    ContrastStandard                     int32s
     6568      4    SharpnessStandard                    int32s
     6569      8    SaturationStandard                   int32s
     6570     12    ColorToneStandard                    int32s
     6571     16    FilterEffectStandard?                int32s
     6572     20    ToningEffectStandard?                int32s
     6573     24    ContrastPortrait                     int32s
     6574     28    SharpnessPortrait                    int32s
     6575     32    SaturationPortrait                   int32s
     6576     36    ColorTonePortrait                    int32s
     6577     40    FilterEffectPortrait?                int32s
     6578     44    ToningEffectPortrait?                int32s
     6579     48    ContrastLandscape                    int32s
     6580     52    SharpnessLandscape                   int32s
     6581     56    SaturationLandscape                  int32s
     6582     60    ColorToneLandscape                   int32s
     6583     64    FilterEffectLandscape?               int32s
     6584     68    ToningEffectLandscape?               int32s
     6585     72    ContrastNeutral                      int32s
     6586     76    SharpnessNeutral                     int32s
     6587     80    SaturationNeutral                    int32s
     6588     84    ColorToneNeutral                     int32s
     6589     88    FilterEffectNeutral?                 int32s
     6590     92    ToningEffectNeutral?                 int32s
     6591     96    ContrastFaithful                     int32s
     6592    100    SharpnessFaithful                    int32s
     6593    104    SaturationFaithful                   int32s
     6594    108    ColorToneFaithful                    int32s
     6595    112    FilterEffectFaithful?                int32s
     6596    116    ToningEffectFaithful?                int32s
     6597    120    ContrastMonochrome                   int32s
     6598    124    SharpnessMonochrome                  int32s
     6599    128    SaturationMonochrome?                int32s
     6600    132    ColorToneMonochrome?                 int32s
     6601    136    FilterEffectMonochrome               int32s
     6602    140    ToningEffectMonochrome               int32s
     6603    144    ContrastAuto                         int32s
     6604    148    SharpnessAuto                        int32s
     6605    152    SaturationAuto                       int32s
     6606    156    ColorToneAuto                        int32s
     6607    160    FilterEffectAuto                     int32s
     6608    164    ToningEffectAuto                     int32s
     6609    168    ContrastUserDef1                     int32s
     6610    172    SharpnessUserDef1                    int32s
     6611    176    SaturationUserDef1                   int32s
     6612    180    ColorToneUserDef1                    int32s
     6613    184    FilterEffectUserDef1                 int32s
     6614    188    ToningEffectUserDef1                 int32s
     6615    192    ContrastUserDef2                     int32s
     6616    196    SharpnessUserDef2                    int32s
     6617    200    SaturationUserDef2                   int32s
     6618    204    ColorToneUserDef2                    int32s
     6619    208    FilterEffectUserDef2                 int32s
     6620    212    ToningEffectUserDef2                 int32s
     6621    216    ContrastUserDef3                     int32s
     6622    220    SharpnessUserDef3                    int32s
     6623    224    SaturationUserDef3                   int32s
     6624    228    ColorToneUserDef3                    int32s
     6625    232    FilterEffectUserDef3                 int32s
     6626    236    ToningEffectUserDef3                 int32s
     6627    240    UserDef1PictureStyle                 int16u
     6628    242    UserDef2PictureStyle                 int16u
     6629    244    UserDef3PictureStyle                 int16u
     6630
    36966631=head3 Canon CameraInfo5D Tags
    36976632
    36986633CameraInfo tags for the EOS 5D.
    36996634
    3700    Index   Tag Name                             Writable
    3701    -----   --------                             --------
     6635  Index1   Tag Name                             Writable
     6636  ------   --------                             --------
    37026637      3    FNumber                              int8u
    37036638      4    ExposureTime                         int8u
     
    37126647     88    ColorTemperature                     int16u
    37136648    108    PictureStyle                         int8u
    3714     147    ShortFocal                           int16uRev
    3715     149    LongFocal                            int16uRev
     6649    147    MinFocalLength                       int16uRev
     6650    149    MaxFocalLength                       int16uRev
    37166651    151    LensType                             int16uRev
    37176652    164    FirmwareRevision                     string[8]
    37186653    172    ShortOwnerName                       string[16]
    3719     208    ImageNumber                          int16u
     6654    204    DirectoryIndex                       int32u
     6655    208    FileIndex                            int16u
    37206656    232    ContrastStandard                     int8s
    37216657    233    ContrastPortrait                     int8s
     
    37616697=head3 Canon CameraInfo5DmkII Tags
    37626698
    3763 CameraInfo tags for the EOS 5D Mark II.
    3764 
    3765    Index   Tag Name                             Writable
    3766    -----   --------                             --------
     6699CameraInfo tags for the EOS 5D Mark II.  Indices shown are for firmware
     6700version 1.0.6, but they may be different for other firmware versions.
     6701
     6702  Index1   Tag Name                             Writable
     6703  ------   --------                             --------
    37676704      3    FNumber                              int8u
    37686705      4    ExposureTime                         int8u
     
    37826719    191    AutoLightingOptimizer                int8u
    37836720    230    LensType                             int16uRev
    3784     232    ShortFocal                           int16uRev
    3785     234    LongFocal                            int16uRev
    3786     346    CameraInfo5DmkII_2a                  Canon CameraInfo5DmkII_2
    3787     382    CameraInfo5DmkII_2b                  Canon CameraInfo5DmkII_2
    3788 
    3789 =head3 Canon CameraInfo5DmkII_2 Tags
    3790 
    3791 More CameraInfo tags for the EOS 5D Mark II.
    3792 
    3793    Index   Tag Name                             Writable
    3794    -----   --------                             --------
    3795       0    FirmwareVersion                      N
    3796      61    FileIndex                            int32u
    3797      73    DirectoryIndex                       int32u
    3798     377    PictureStyleInfo                     Canon PSInfo
     6721    232    MinFocalLength                       int16uRev
     6722    234    MaxFocalLength                       int16uRev
     6723    382    FirmwareVersion                      no
     6724    443    FileIndex                            int32u
     6725    455    DirectoryIndex                       int32u
     6726    759    PictureStyleInfo                     Canon PSInfo
     6727
     6728=head3 Canon CameraInfo5DmkIII Tags
     6729
     6730CameraInfo tags for the EOS 5D Mark III.  Indices shown are for firmware
     6731versions 1.0.x, but they may be different for other firmware versions.
     6732
     6733  Index1   Tag Name                             Writable
     6734  ------   --------                             --------
     6735      3    FNumber                              int8u
     6736      4    ExposureTime                         int8u
     6737      6    ISO                                  int8u
     6738     27    CameraTemperature                    int8u
     6739     35    FocalLength                          int16uRev
     6740    125    CameraOrientation                    int8u
     6741    140    FocusDistanceUpper                   int16uRev
     6742    142    FocusDistanceLower                   int16uRev
     6743    188    WhiteBalance                         int16u
     6744    192    ColorTemperature                     int16u
     6745    244    PictureStyle                         int8u
     6746    339    LensType                             int16uRev
     6747    341    MinFocalLength                       int16uRev
     6748    343    MaxFocalLength                       int16uRev
     6749    356    LensSerialNumber                     undef[5]
     6750    572    FirmwareVersion                      no
     6751    652    FileIndex                            int32u
     6752    656    FileIndex2                           int32u
     6753    664    DirectoryIndex                       int32u
     6754    668    DirectoryIndex2                      int32u
     6755    944    PictureStyleInfo                     Canon PSInfo2
     6756
     6757=head3 Canon CameraInfo6D Tags
     6758
     6759CameraInfo tags for the EOS 6D.
     6760
     6761  Index1   Tag Name                             Writable
     6762  ------   --------                             --------
     6763      3    FNumber                              int8u
     6764      4    ExposureTime                         int8u
     6765      6    ISO                                  int8u
     6766     27    CameraTemperature                    int8u
     6767     35    FocalLength                          int16uRev
     6768    131    CameraOrientation                    int8u
     6769    146    FocusDistanceUpper                   int16uRev
     6770    148    FocusDistanceLower                   int16uRev
     6771    194    WhiteBalance                         int16u
     6772    198    ColorTemperature                     int16u
     6773    250    PictureStyle                         int8u
     6774    353    LensType                             int16uRev
     6775    355    MinFocalLength                       int16uRev
     6776    357    MaxFocalLength                       int16uRev
     6777    598    FirmwareVersion                      no
     6778    682    FileIndex                            int32u
     6779    694    DirectoryIndex                       int32u
     6780    966    PictureStyleInfo                     Canon PSInfo2
    37996781
    38006782=head3 Canon CameraInfo7D Tags
    38016783
    3802 CameraInfo tags for the EOS 7D.
    3803 
    3804    Index   Tag Name                             Writable
    3805    -----   --------                             --------
     6784CameraInfo tags for the EOS 7D.  Indices shown are for firmware versions
     67851.0.x, but they may be different for other firmware versions.
     6786
     6787  Index1   Tag Name                             Writable
     6788  ------   --------                             --------
    38066789      3    FNumber                              int8u
    38076790      4    ExposureTime                         int8u
     
    38136796     25    CameraTemperature                    int8u
    38146797     30    FocalLength                          int16uRev
    3815      32    CameraInfo7D_2a                      Canon CameraInfo7D_2
    3816      36    CameraInfo7D_2b                      Canon CameraInfo7D_2
    3817 
    3818 =head3 Canon CameraInfo7D_2 Tags
    3819 
    3820 More CameraInfo tags for the EOS 7D.
    3821 
    3822    Index   Tag Name                             Writable
    3823    -----   --------                             --------
    3824      17    CameraOrientation                    int8u
    3825      48    FocusDistanceUpper                   int16uRev
    3826      50    FocusDistanceLower                   int16uRev
    3827      83    WhiteBalance                         int16u
    3828      87    ColorTemperature                     int16u
    3829     165    HighISONoiseReduction                int8u
    3830     238    LensType                             int16uRev
    3831     240    ShortFocal                           int16uRev
    3832     242    LongFocal                            int16uRev
    3833     392    FirmwareVersion                      N
    3834     455    FileIndex                            int32u
    3835     467    DirectoryIndex                       int32u
    3836     771    PictureStyleInfo                     Canon PSInfo
     6798     53    CameraOrientation                    int8u
     6799     84    FocusDistanceUpper                   int16uRev
     6800     86    FocusDistanceLower                   int16uRev
     6801    119    WhiteBalance                         int16u
     6802    123    ColorTemperature                     int16u
     6803    175    CameraPictureStyle                   int8u
     6804    201    HighISONoiseReduction                int8u
     6805    274    LensType                             int16uRev
     6806    276    MinFocalLength                       int16uRev
     6807    278    MaxFocalLength                       int16uRev
     6808    428    FirmwareVersion                      no
     6809    491    FileIndex                            int32u
     6810    503    DirectoryIndex                       int32u
     6811    807    PictureStyleInfo                     Canon PSInfo
    38376812
    38386813=head3 Canon CameraInfo40D Tags
     
    38406815CameraInfo tags for the EOS 40D.
    38416816
    3842    Index   Tag Name                             Writable
    3843    -----   --------                             --------
     6817  Index1   Tag Name                             Writable
     6818  ------   --------                             --------
    38446819      3    FNumber                              int8u
    38456820      4    ExposureTime                         int8u
     
    38556830    115    ColorTemperature                     int16u
    38566831    214    LensType                             int16uRev
    3857     216    ShortFocal                           int16uRev
    3858     218    LongFocal                            int16uRev
     6832    216    MinFocalLength                       int16uRev
     6833    218    MaxFocalLength                       int16uRev
    38596834    255    FirmwareVersion                      string[6]
    38606835    307    FileIndex                            int32u
     
    38656840=head3 Canon CameraInfo50D Tags
    38666841
    3867 CameraInfo tags for the EOS 50D.
    3868 
    3869    Index   Tag Name                             Writable
    3870    -----   --------                             --------
     6842CameraInfo tags for the EOS 50D.  Indices shown are for firmware versions
     68431.0.x, but they may be different for other firmware versions.
     6844
     6845  Index1   Tag Name                             Writable
     6846  ------   --------                             --------
    38716847      3    FNumber                              int8u
    38726848      4    ExposureTime                         int8u
     
    38856861    191    AutoLightingOptimizer                int8u
    38866862    234    LensType                             int16uRev
    3887     236    ShortFocal                           int16uRev
    3888     238    LongFocal                            int16uRev
    3889     346    FirmwareVersion                      N
    3890     350    FirmwareVersion                      N
    3891     407    FileIndex                            int32u
     6863    236    MinFocalLength                       int16uRev
     6864    238    MaxFocalLength                       int16uRev
     6865    350    FirmwareVersion                      no
    38926866    411    FileIndex                            int32u
    3893     419    DirectoryIndex                       int32u
    38946867    423    DirectoryIndex                       int32u
    3895     723    PictureStyleInfo                     Canon PSInfo
    38966868    727    PictureStyleInfo                     Canon PSInfo
    38976869
    38986870=head3 Canon CameraInfo60D Tags
    38996871
    3900 CameraInfo tags for the EOS 60D.
    3901 
    3902    Index   Tag Name                             Writable
    3903    -----   --------                             --------
     6872CameraInfo tags for the EOS 60D and 1200D.
     6873
     6874  Index1   Tag Name                             Writable
     6875  ------   --------                             --------
    39046876      3    FNumber                              int8u
    39056877      4    ExposureTime                         int8u
     
    39086880     30    FocalLength                          int16uRev
    39096881     54    CameraOrientation                    int8u
     6882     58    CameraOrientation                    int8u
    39106883     85    FocusDistanceUpper                   int16uRev
    39116884     87    FocusDistanceLower                   int16uRev
    39126885    125    ColorTemperature                     int16u
    39136886    232    LensType                             int16uRev
    3914     234    ShortFocal                           int16uRev
    3915     236    LongFocal                            int16uRev
    3916     409    FirmwareVersion                      N
     6887    234    MinFocalLength                       int16uRev
     6888    236    MaxFocalLength                       int16uRev
     6889    409    FirmwareVersion                      no
    39176890    473    FileIndex                            int32u
    39186891    485    DirectoryIndex                       int32u
    3919     801    PictureStyleInfo2                    Canon PSInfo2
    3920 
    3921 =head3 Canon PSInfo2 Tags
    3922 
    3923 Custom picture style information for the EOS 60D.
    3924 
    3925    Index   Tag Name                             Writable
    3926    -----   --------                             --------
    3927       0    ContrastStandard                     int32s
    3928       4    SharpnessStandard                    int32s
    3929       8    SaturationStandard                   int32s
    3930      12    ColorToneStandard                    int32s
    3931      16    FilterEffectStandard?                int32s
    3932      20    ToningEffectStandard?                int32s
    3933      24    ContrastPortrait                     int32s
    3934      28    SharpnessPortrait                    int32s
    3935      32    SaturationPortrait                   int32s
    3936      36    ColorTonePortrait                    int32s
    3937      40    FilterEffectPortrait?                int32s
    3938      44    ToningEffectPortrait?                int32s
    3939      48    ContrastLandscape                    int32s
    3940      52    SharpnessLandscape                   int32s
    3941      56    SaturationLandscape                  int32s
    3942      60    ColorToneLandscape                   int32s
    3943      64    FilterEffectLandscape?               int32s
    3944      68    ToningEffectLandscape?               int32s
    3945      72    ContrastNeutral                      int32s
    3946      76    SharpnessNeutral                     int32s
    3947      80    SaturationNeutral                    int32s
    3948      84    ColorToneNeutral                     int32s
    3949      88    FilterEffectNeutral?                 int32s
    3950      92    ToningEffectNeutral?                 int32s
    3951      96    ContrastFaithful                     int32s
    3952     100    SharpnessFaithful                    int32s
    3953     104    SaturationFaithful                   int32s
    3954     108    ColorToneFaithful                    int32s
    3955     112    FilterEffectFaithful?                int32s
    3956     116    ToningEffectFaithful?                int32s
    3957     120    ContrastMonochrome                   int32s
    3958     124    SharpnessMonochrome                  int32s
    3959     128    SaturationMonochrome?                int32s
    3960     132    ColorToneMonochrome?                 int32s
    3961     136    FilterEffectMonochrome               int32s
    3962     140    ToningEffectMonochrome               int32s
    3963     144    ContrastUnknown?                     int32s
    3964     148    SharpnessUnknown?                    int32s
    3965     152    SaturationUnknown?                   int32s
    3966     156    ColorToneUnknown?                    int32s
    3967     160    FilterEffectUnknown?                 int32s
    3968     164    ToningEffectUnknown?                 int32s
    3969     168    ContrastUserDef1                     int32s
    3970     172    SharpnessUserDef1                    int32s
    3971     176    SaturationUserDef1                   int32s
    3972     180    ColorToneUserDef1                    int32s
    3973     184    FilterEffectUserDef1                 int32s
    3974     188    ToningEffectUserDef1                 int32s
    3975     192    ContrastUserDef2                     int32s
    3976     196    SharpnessUserDef2                    int32s
    3977     200    SaturationUserDef2                   int32s
    3978     204    ColorToneUserDef2                    int32s
    3979     208    FilterEffectUserDef2                 int32s
    3980     212    ToningEffectUserDef2                 int32s
    3981     216    ContrastUserDef3                     int32s
    3982     220    SharpnessUserDef3                    int32s
    3983     224    SaturationUserDef3                   int32s
    3984     228    ColorToneUserDef3                    int32s
    3985     232    FilterEffectUserDef3                 int32s
    3986     236    ToningEffectUserDef3                 int32s
    3987     240    UserDef1PictureStyle                 int16u
    3988     242    UserDef2PictureStyle                 int16u
    3989     244    UserDef3PictureStyle                 int16u
     6892    761    PictureStyleInfo                     Canon PSInfo2
     6893    801    PictureStyleInfo                     Canon PSInfo2
     6894
     6895=head3 Canon CameraInfo70D Tags
     6896
     6897CameraInfo tags for the EOS 70D.
     6898
     6899  Index1   Tag Name                             Writable
     6900  ------   --------                             --------
     6901      3    FNumber                              int8u
     6902      4    ExposureTime                         int8u
     6903      6    ISO                                  int8u
     6904     27    CameraTemperature                    int8u
     6905     35    FocalLength                          int16uRev
     6906    132    CameraOrientation                    int8u
     6907    147    FocusDistanceUpper                   int16uRev
     6908    149    FocusDistanceLower                   int16uRev
     6909    199    ColorTemperature                     int16u
     6910    358    LensType                             int16uRev
     6911    360    MinFocalLength                       int16uRev
     6912    362    MaxFocalLength                       int16uRev
     6913    606    FirmwareVersion                      no
     6914    691    FileIndex                            int32u
     6915    703    DirectoryIndex                       int32u
     6916    975    PictureStyleInfo                     Canon PSInfo2
     6917
     6918=head3 Canon CameraInfo80D Tags
     6919
     6920CameraInfo tags for the EOS 80D.
     6921
     6922  Index1   Tag Name                             Writable
     6923  ------   --------                             --------
     6924      3    FNumber                              int8u
     6925      4    ExposureTime                         int8u
     6926      6    ISO                                  int8u
     6927     27    CameraTemperature                    int8u
     6928     35    FocalLength                          int16uRev
     6929    150    CameraOrientation                    int8u
     6930    165    FocusDistanceUpper                   int16uRev
     6931    167    FocusDistanceLower                   int16uRev
     6932    314    ColorTemperature                     int16u
     6933    393    LensType                             int16uRev
     6934    395    MinFocalLength                       int16uRev
     6935    397    MaxFocalLength                       int16uRev
     6936   1114    FirmwareVersion                      no
     6937   1198    FileIndex                            int32u
     6938   1210    DirectoryIndex                       int32u
    39906939
    39916940=head3 Canon CameraInfo450D Tags
     
    39936942CameraInfo tags for the EOS 450D.
    39946943
    3995    Index   Tag Name                             Writable
    3996    -----   --------                             --------
     6944  Index1   Tag Name                             Writable
     6945  ------   --------                             --------
    39976946      3    FNumber                              int8u
    39986947      4    ExposureTime                         int8u
     
    40196968CameraInfo tags for the EOS 500D.
    40206969
    4021    Index   Tag Name                             Writable
    4022    -----   --------                             --------
     6970  Index1   Tag Name                             Writable
     6971  ------   --------                             --------
    40236972      3    FNumber                              int8u
    40246973      4    ExposureTime                         int8u
     
    40376986    190    AutoLightingOptimizer                int8u
    40386987    246    LensType                             int16uRev
    4039     248    ShortFocal                           int16uRev
    4040     250    LongFocal                            int16uRev
    4041     400    FirmwareVersion                      N
     6988    248    MinFocalLength                       int16uRev
     6989    250    MaxFocalLength                       int16uRev
     6990    400    FirmwareVersion                      no
    40426991    467    FileIndex                            int32u
    40436992    479    DirectoryIndex                       int32u
     
    40486997CameraInfo tags for the EOS 550D.
    40496998
    4050    Index   Tag Name                             Writable
    4051    -----   --------                             --------
     6999  Index1   Tag Name                             Writable
     7000  ------   --------                             --------
    40527001      3    FNumber                              int8u
    40537002      4    ExposureTime                         int8u
     
    40647013    176    PictureStyle                         int8u
    40657014    255    LensType                             int16uRev
    4066     257    ShortFocal                           int16uRev
    4067     259    LongFocal                            int16uRev
    4068     420    FirmwareVersion                      N
     7015    257    MinFocalLength                       int16uRev
     7016    259    MaxFocalLength                       int16uRev
     7017    420    FirmwareVersion                      no
    40697018    484    FileIndex                            int32u
    40707019    496    DirectoryIndex                       int32u
    40717020    796    PictureStyleInfo                     Canon PSInfo
    40727021
     7022=head3 Canon CameraInfo600D Tags
     7023
     7024CameraInfo tags for the EOS 600D and 1100D.
     7025
     7026  Index1   Tag Name                             Writable
     7027  ------   --------                             --------
     7028      3    FNumber                              int8u
     7029      4    ExposureTime                         int8u
     7030      6    ISO                                  int8u
     7031      7    HighlightTonePriority                int8u
     7032     21    FlashMeteringMode                    int8u
     7033     25    CameraTemperature                    int8u
     7034     30    FocalLength                          int16uRev
     7035     56    CameraOrientation                    int8u
     7036     87    FocusDistanceUpper                   int16uRev
     7037     89    FocusDistanceLower                   int16uRev
     7038    123    WhiteBalance                         int16u
     7039    127    ColorTemperature                     int16u
     7040    179    PictureStyle                         int8u
     7041    234    LensType                             int16uRev
     7042    236    MinFocalLength                       int16uRev
     7043    238    MaxFocalLength                       int16uRev
     7044    411    FirmwareVersion                      no
     7045    475    FileIndex                            int32u
     7046    487    DirectoryIndex                       int32u
     7047    763    PictureStyleInfo                     Canon PSInfo2
     7048
     7049=head3 Canon CameraInfo650D Tags
     7050
     7051CameraInfo tags for the EOS 650D and 700D.
     7052
     7053  Index1   Tag Name                             Writable
     7054  ------   --------                             --------
     7055      3    FNumber                              int8u
     7056      4    ExposureTime                         int8u
     7057      6    ISO                                  int8u
     7058     27    CameraTemperature                    int8u
     7059     35    FocalLength                          int16uRev
     7060    125    CameraOrientation                    int8u
     7061    140    FocusDistanceUpper                   int16uRev
     7062    142    FocusDistanceLower                   int16uRev
     7063    188    WhiteBalance                         int16u
     7064    192    ColorTemperature                     int16u
     7065    244    PictureStyle                         int8u
     7066    295    LensType                             int16uRev
     7067    297    MinFocalLength                       int16uRev
     7068    299    MaxFocalLength                       int16uRev
     7069    539    FirmwareVersion                      no
     7070    544    FirmwareVersion                      no
     7071    624    FileIndex                            int32u
     7072    628    FileIndex                            int32u
     7073    636    DirectoryIndex                       int32u
     7074    640    DirectoryIndex                       int32u
     7075    912    PictureStyleInfo                     Canon PSInfo2
     7076
     7077=head3 Canon CameraInfo750D Tags
     7078
     7079CameraInfo tags for the EOS 750D and 760D.
     7080
     7081  Index1   Tag Name                             Writable
     7082  ------   --------                             --------
     7083      3    FNumber                              int8u
     7084      4    ExposureTime                         int8u
     7085      6    ISO                                  int8u
     7086     27    CameraTemperature                    int8u
     7087     35    FocalLength                          int16uRev
     7088    150    CameraOrientation                    int8u
     7089    165    FocusDistanceUpper                   int16uRev
     7090    167    FocusDistanceLower                   int16uRev
     7091    305    WhiteBalance                         int16u
     7092    309    ColorTemperature                     int16u
     7093    361    PictureStyle                         int8u
     7094    388    LensType                             int16uRev
     7095    390    MinFocalLength                       int16uRev
     7096    392    MaxFocalLength                       int16uRev
     7097   1085    FirmwareVersion                      no
     7098   1097    FirmwareVersion                      no
     7099
    40737100=head3 Canon CameraInfo1000D Tags
    40747101
    40757102CameraInfo tags for the EOS 1000D.
    40767103
    4077    Index   Tag Name                             Writable
    4078    -----   --------                             --------
     7104  Index1   Tag Name                             Writable
     7105  ------   --------                             --------
    40797106      3    FNumber                              int8u
    40807107      4    ExposureTime                         int8u
     
    40907117    115    ColorTemperature                     int16u
    40917118    226    LensType                             int16uRev
     7119    228    MinFocalLength                       int16uRev
     7120    230    MaxFocalLength                       int16uRev
    40927121    267    FirmwareVersion                      string[6]
    40937122    311    DirectoryIndex                       int32u
     
    41027131SD870, SD900, SD950, SD1000, SX100 and TX1.
    41037132
    4104    Index   Tag Name                             Writable
    4105    -----   --------                             --------
     7133  Index4   Tag Name                             Writable
     7134  ------   --------                             --------
    41067135      0    ISO                                  int32s
    41077136      5    FNumber                              int32s
     
    41197148SX20, SX110, SX120, SX130, SX200 and SX210.
    41207149
    4121    Index   Tag Name                             Writable
    4122    -----   --------                             --------
     7150  Index4   Tag Name                             Writable
     7151  ------   --------                             --------
    41237152      1    ISO                                  int32s
    41247153      6    FNumber                              int32s
     
    41357164Unknown CameraInfo tags are divided into 3 tables based on format size.
    41367165
    4137    Index   Tag Name                             Writable
    4138    -----   --------                             --------
     7166  Index4   Tag Name                             Writable
     7167  ------   --------                             --------
    41397168     71    CameraTemperature                    int32s
    41407169     83    CameraTemperature                    int32s
     
    41427171     92    CameraTemperature                    int32s
    41437172    100    CameraTemperature                    int32s
    4144     466    CameraTemperature                    int32s
    4145     503    CameraTemperature                    int32s
    4146     506    CameraTemperature                    int32s
     7173     -3    CameraTemperature                    int32s
    41477174
    41487175=head3 Canon CameraInfoUnknown16 Tags
    41497176
    4150    Index   Tag Name                             Writable
    4151    -----   --------                             --------
     7177  Index2   Tag Name                             Writable
     7178  ------   --------                             --------
    41527179  [no tags known]
    41537180
    41547181=head3 Canon CameraInfoUnknown Tags
    41557182
    4156    Index   Tag Name                             Writable
    4157    -----   --------                             --------
    4158   [no tags known]
     7183  Index1   Tag Name                             Writable
     7184  ------   --------                             --------
     7185    363    LensSerialNumber                     undef[5]
     7186   1473    FirmwareVersion                      no
    41597187
    41607188=head3 Canon MovieInfo Tags
     
    41627190Tags written by some Canon cameras when recording video.
    41637191
    4164    Index   Tag Name                             Writable
    4165    -----   --------                             --------
     7192  Index2   Tag Name                             Writable
     7193  ------   --------                             --------
    41667194      1    FrameRate                            int16u
    41677195      2    FrameCount                           int16u
     
    41867214  Sequence Tag Name                             Writable
    41877215  -------- --------                             --------
    4188       0    NumAFPoints                          N
    4189       1    ValidAFPoints                        N
    4190       2    CanonImageWidth                      N
    4191       3    CanonImageHeight                     N
    4192       4    AFImageWidth                         N
    4193       5    AFImageHeight                        N
    4194       6    AFAreaWidth                          N
    4195       7    AFAreaHeight                         N
    4196       8    AFAreaXPositions                     N
    4197       9    AFAreaYPositions                     N
    4198      10    AFPointsInFocus                      N
    4199      11    PrimaryAFPoint                       N
    4200            Canon_AFInfo_0x000b?                 N
    4201      12    PrimaryAFPoint                       N
     7216      0    NumAFPoints                          no
     7217      1    ValidAFPoints                        no
     7218      2    CanonImageWidth                      no
     7219      3    CanonImageHeight                     no
     7220      4    AFImageWidth                         no
     7221      5    AFImageHeight                        no
     7222      6    AFAreaWidth                          no
     7223      7    AFAreaHeight                         no
     7224      8    AFAreaXPositions                     no
     7225      9    AFAreaYPositions                     no
     7226     10    AFPointsInFocus                      no
     7227     11    PrimaryAFPoint                       no
     7228           Canon_AFInfo_0x000b?                 no
     7229     12    PrimaryAFPoint                       no
    42027230
    42037231=head3 Canon MyColors Tags
    42047232
    4205    Index   Tag Name                             Writable
    4206    -----   --------                             --------
     7233  Index2   Tag Name                             Writable
     7234  ------   --------                             --------
    42077235      2    MyColorMode                          int16u
    42087236
    42097237=head3 Canon FaceDetect1 Tags
    42107238
    4211    Index   Tag Name                             Writable
    4212    -----   --------                             --------
     7239  Index2   Tag Name                             Writable
     7240  ------   --------                             --------
    42137241      2    FacesDetected                        int16u
    42147242      3    FaceDetectFrameSize                  int16u[2]
     
    42257253=head3 Canon FaceDetect2 Tags
    42267254
    4227    Index   Tag Name                             Writable
    4228    -----   --------                             --------
     7255  Index1   Tag Name                             Writable
     7256  ------   --------                             --------
    42297257      1    FaceWidth                            int8u
    42307258      2    FacesDetected                        int8u
     
    42337261
    42347262Newer version of the AFInfo record containing much of the same information
    4235 (and coordinate confusion) as the older version.  In this record, values of
    4236 9 and 45 have been observed for NumAFPoints.
     7263(and coordinate confusion) as the older version.  In this record, NumAFPoints
     7264may be 7, 9, 11, 19, 31, 45 or 61, depending on the camera model.
    42377265
    42387266  Sequence Tag Name                             Writable
    42397267  -------- --------                             --------
    4240       0    AFInfoSize?                          N
    4241       1    AFAreaMode                           N
    4242       2    NumAFPoints                          N
    4243       3    ValidAFPoints                        N
    4244       4    CanonImageWidth                      N
    4245       5    CanonImageHeight                     N
    4246       6    AFImageWidth                         N
    4247       7    AFImageHeight                        N
    4248       8    AFAreaWidths                         N
    4249       9    AFAreaHeights                        N
    4250      10    AFAreaXPositions                     N
    4251      11    AFAreaYPositions                     N
    4252      12    AFPointsInFocus                      N
    4253      13    AFPointsSelected                     N
    4254            Canon_AFInfo2_0x000d?                N
    4255      14    PrimaryAFPoint                       N
     7268      0    AFInfoSize?                          no
     7269      1    AFAreaMode                           no
     7270      2    NumAFPoints                          no
     7271      3    ValidAFPoints                        no
     7272      4    CanonImageWidth                      no
     7273      5    CanonImageHeight                     no
     7274      6    AFImageWidth                         no
     7275      7    AFImageHeight                        no
     7276      8    AFAreaWidths                         no
     7277      9    AFAreaHeights                        no
     7278     10    AFAreaXPositions                     no
     7279     11    AFAreaYPositions                     no
     7280     12    AFPointsInFocus                      no
     7281     13    AFPointsSelected                     no
     7282           Canon_AFInfo2_0x000d?                no
     7283     14    PrimaryAFPoint                       no
     7284
     7285=head3 Canon ContrastInfo Tags
     7286
     7287  Index2   Tag Name                             Writable
     7288  ------   --------                             --------
     7289      4    IntelligentContrast                  int16u
     7290
     7291=head3 Canon WBInfo Tags
     7292
     7293WB tags for the Canon G9.
     7294
     7295  Index4   Tag Name                             Writable
     7296  ------   --------                             --------
     7297      2    WB_GRGBLevelsAuto                    int32s[4]
     7298     10    WB_GRGBLevelsDaylight                int32s[4]
     7299     18    WB_GRGBLevelsCloudy                  int32s[4]
     7300     26    WB_GRGBLevelsTungsten                int32s[4]
     7301     34    WB_GRGBLevelsFluorescent             int32s[4]
     7302     42    WB_GRGBLevelsFluorHigh               int32s[4]
     7303     50    WB_GRGBLevelsFlash                   int32s[4]
     7304     58    WB_GRGBLevelsUnderwater              int32s[4]
     7305     66    WB_GRGBLevelsCustom1                 int32s[4]
     7306     74    WB_GRGBLevelsCustom2                 int32s[4]
     7307
     7308=head3 Canon FaceDetect3 Tags
     7309
     7310  Index2   Tag Name                             Writable
     7311  ------   --------                             --------
     7312      3    FacesDetected                        int16u
     7313
     7314=head3 Canon TimeInfo Tags
     7315
     7316  Index4   Tag Name                             Writable
     7317  ------   --------                             --------
     7318      1    TimeZone                             int32s
     7319      2    TimeZoneCity                         int32s
     7320      3    DaylightSavings                      int32s
    42567321
    42577322=head3 Canon FileInfo Tags
    42587323
    4259    Index   Tag Name                             Writable
    4260    -----   --------                             --------
     7324  Index2   Tag Name                             Writable
     7325  ------   --------                             --------
    42617326      1    FileNumber                           int32u
    42627327           ShutterCount                         int32u
     
    42747339     16    MacroMagnification                   int16s
    42757340     19    LiveViewShooting                     int16s
     7341     20    FocusDistanceUpper                   int16u
     7342     21    FocusDistanceLower                   int16u
    42767343     25    FlashExposureLock                    int16s
     7344     61    RFLensType                           int16u
    42777345
    42787346=head3 Canon SerialInfo Tags
    42797347
    4280    Index   Tag Name                             Writable
    4281    -----   --------                             --------
     7348  Index1   Tag Name                             Writable
     7349  ------   --------                             --------
    42827350      9    InternalSerialNumber                 string
    42837351
    42847352=head3 Canon CropInfo Tags
    42857353
    4286    Index   Tag Name                             Writable
    4287    -----   --------                             --------
     7354  Index2   Tag Name                             Writable
     7355  ------   --------                             --------
    42887356      0    CropLeftMargin                       int16u
    42897357      1    CropRightMargin                      int16u
     
    42937361=head3 Canon AspectInfo Tags
    42947362
    4295    Index   Tag Name                             Writable
    4296    -----   --------                             --------
     7363  Index4   Tag Name                             Writable
     7364  ------   --------                             --------
    42977365      0    AspectRatio                          int32u
    42987366      1    CroppedImageWidth                    int32u
    42997367      2    CroppedImageHeight                   int32u
     7368      3    CroppedImageLeft                     int32u
     7369      4    CroppedImageTop                      int32u
    43007370
    43017371=head3 Canon Processing Tags
    43027372
    4303    Index   Tag Name                             Writable
    4304    -----   --------                             --------
     7373  Index2   Tag Name                             Writable
     7374  ------   --------                             --------
    43057375      1    ToneCurve                            int16s
    43067376      2    Sharpness                            int16s
     
    43217391These tags are used by the 10D and 300D.
    43227392
    4323    Index   Tag Name                             Writable
    4324    -----   --------                             --------
    4325       0    WB_RGGBLevelsAuto                    int16s[4]
    4326       4    WB_RGGBLevelsDaylight                int16s[4]
    4327       8    WB_RGGBLevelsShade                   int16s[4]
    4328      12    WB_RGGBLevelsCloudy                  int16s[4]
    4329      16    WB_RGGBLevelsTungsten                int16s[4]
    4330      20    WB_RGGBLevelsFluorescent             int16s[4]
    4331      24    WB_RGGBLevelsFlash                   int16s[4]
    4332      28    WB_RGGBLevelsCustom                  int16s[4]
    4333      32    WB_RGGBLevelsKelvin                  int16s[4]
     7393  Index2   Tag Name                             Writable
     7394  ------   --------                             --------
     7395      1    WB_RGGBLevelsAuto                    int16s[4]
     7396      5    WB_RGGBLevelsDaylight                int16s[4]
     7397      9    WB_RGGBLevelsShade                   int16s[4]
     7398     13    WB_RGGBLevelsCloudy                  int16s[4]
     7399     17    WB_RGGBLevelsTungsten                int16s[4]
     7400     21    WB_RGGBLevelsFluorescent             int16s[4]
     7401     25    WB_RGGBLevelsFlash                   int16s[4]
     7402     29    WB_RGGBLevelsCustom                  int16s[4]
     7403           BlackLevels                          int16s[4]
     7404     33    WB_RGGBLevelsKelvin                  int16s[4]
     7405     37    WB_RGGBBlackLevels                   int16s[4]
    43347406
    43357407=head3 Canon MeasuredColor Tags
    43367408
    4337    Index   Tag Name                             Writable
    4338    -----   --------                             --------
     7409  Index2   Tag Name                             Writable
     7410  ------   --------                             --------
    43397411      1    MeasuredRGGB                         int16u[4]
    43407412
    43417413=head3 Canon Flags Tags
    43427414
    4343    Index   Tag Name                             Writable
    4344    -----   --------                             --------
     7415  Index2   Tag Name                             Writable
     7416  ------   --------                             --------
    43457417      1    ModifiedParamFlag                    int16s
    43467418
    43477419=head3 Canon ModifiedInfo Tags
    43487420
    4349    Index   Tag Name                             Writable
    4350    -----   --------                             --------
     7421  Index2   Tag Name                             Writable
     7422  ------   --------                             --------
    43517423      1    ModifiedToneCurve                    int16s
    43527424      2    ModifiedSharpness                    int16s
     
    43637435=head3 Canon PreviewImageInfo Tags
    43647436
    4365    Index   Tag Name                             Writable
    4366    -----   --------                             --------
     7437  Index4   Tag Name                             Writable
     7438  ------   --------                             --------
    43677439      1    PreviewQuality                       int32u
    43687440      2    PreviewImageLength                   int32u*
     
    43737445=head3 Canon SensorInfo Tags
    43747446
    4375    Index   Tag Name                             Writable
    4376    -----   --------                             --------
    4377       1    SensorWidth                          N
    4378       2    SensorHeight                         N
    4379       5    SensorLeftBorder                     N
    4380       6    SensorTopBorder                      N
    4381       7    SensorRightBorder                    N
    4382       8    SensorBottomBorder                   N
    4383       9    BlackMaskLeftBorder                  N
    4384      10    BlackMaskTopBorder                   N
    4385      11    BlackMaskRightBorder                 N
    4386      12    BlackMaskBottomBorder                N
     7447  Index2   Tag Name                             Writable
     7448  ------   --------                             --------
     7449      1    SensorWidth                          no
     7450      2    SensorHeight                         no
     7451      5    SensorLeftBorder                     no
     7452      6    SensorTopBorder                      no
     7453      7    SensorRightBorder                    no
     7454      8    SensorBottomBorder                   no
     7455      9    BlackMaskLeftBorder                  no
     7456     10    BlackMaskTopBorder                   no
     7457     11    BlackMaskRightBorder                 no
     7458     12    BlackMaskBottomBorder                no
    43877459
    43887460=head3 Canon ColorData1 Tags
     
    43907462These tags are used by the 20D and 350D.
    43917463
    4392    Index   Tag Name                             Writable
    4393    -----   --------                             --------
     7464  Index2   Tag Name                             Writable
     7465  ------   --------                             --------
    43947466     25    WB_RGGBLevelsAsShot                  int16s[4]
    43957467     29    ColorTempAsShot                      int16s
     
    44177489
    44187490Camera color calibration data.  For the 20D, 350D, 1DmkII and 1DSmkII the
    4419 order of the cooefficients is A, B, C, Temperature, but for newer models it
     7491order of the coefficients is A, B, C, Temperature, but for newer models it
    44207492is B, C, A, Temperature.  These tags are extracted only when the Unknown
    44217493option is used.
    44227494
    4423    Index   Tag Name                             Writable
    4424    -----   --------                             --------
     7495  Index2   Tag Name                             Writable
     7496  ------   --------                             --------
    44257497      0    CameraColorCalibration01?            int16s[4]
    44267498      4    CameraColorCalibration02?            int16s[4]
     
    44437515These tags are used by the 1DmkII and 1DSmkII.
    44447516
    4445    Index   Tag Name                             Writable
    4446    -----   --------                             --------
     7517  Index2   Tag Name                             Writable
     7518  ------   --------                             --------
    44477519     24    WB_RGGBLevelsAuto                    int16s[4]
    44487520     28    ColorTempAuto                        int16s
     
    45087580These tags are used by the 1DmkIIN, 5D, 30D and 400D.
    45097581
    4510    Index   Tag Name                             Writable
    4511    -----   --------                             --------
     7582  Index2   Tag Name                             Writable
     7583  ------   --------                             --------
    45127584      0    ColorDataVersion                     int16s
    45137585     63    WB_RGGBLevelsAsShot                  int16s[4]
     
    45407612    132    ColorTempCustom                      int16s
    45417613    133    ColorCalib?                          Canon ColorCalib
     7614    196    PerChannelBlackLevel                 int16u[4]
    45427615    584    FlashOutput                          int16s
    45437616    585    FlashBatteryLevel                    int16s
     
    45487621
    45497622These tags are used by the 1DmkIII, 1DSmkIII, 1DmkIV, 5DmkII, 7D, 40D, 50D,
    4550 450D, 500D, 550D, 1000D and 1100D.
    4551 
    4552    Index   Tag Name                             Writable
    4553    -----   --------                             --------
     762360D, 450D, 500D, 550D, 1000D and 1100D.
     7624
     7625  Index2   Tag Name                             Writable
     7626  ------   --------                             --------
    45547627      0    ColorDataVersion                     int16s
    45557628     63    ColorCoefs                           Canon ColorCoefs
    45567629    168    ColorCalib?                          Canon ColorCalib
     7630    231    AverageBlackLevel                    int16u[4]
    45577631    640    RawMeasuredRGGB                      int32u[4]
     7632    692    PerChannelBlackLevel                 int16u[4]
     7633    696    NormalWhiteLevel                     int16u
     7634    697    SpecularWhiteLevel                   int16u
     7635    698    LinearityUpperMargin                 int16u
     7636    715    PerChannelBlackLevel                 int16u[4]
     7637    719    NormalWhiteLevel                     int16u
     7638           PerChannelBlackLevel                 int16u[4]
     7639    720    SpecularWhiteLevel                   int16u
     7640    721    LinearityUpperMargin                 int16u
     7641    723    NormalWhiteLevel                     int16u
     7642    724    SpecularWhiteLevel                   int16u
     7643    725    LinearityUpperMargin                 int16u
    45587644
    45597645=head3 Canon ColorCoefs Tags
    45607646
    4561    Index   Tag Name                             Writable
    4562    -----   --------                             --------
     7647  Index2   Tag Name                             Writable
     7648  ------   --------                             --------
    45637649      0    WB_RGGBLevelsAsShot                  int16s[4]
    45647650      4    ColorTempAsShot                      int16s
     
    46107696=head3 Canon ColorData5 Tags
    46117697
    4612 These tags are used by the PowerShot G10.
    4613 
    4614    Index   Tag Name                             Writable
    4615    -----   --------                             --------
     7698These tags are used by many EOS M and PowerShot models.
     7699
     7700  Index2   Tag Name                             Writable
     7701  ------   --------                             --------
     7702      0    ColorDataVersion                     int16s
    46167703     71    ColorCoefs                           Canon ColorCoefs
    4617     186    CameraColorCalibration01?            int16s[5]
    4618     191    CameraColorCalibration02?            int16s[5]
    4619     196    CameraColorCalibration03?            int16s[5]
    4620     201    CameraColorCalibration04?            int16s[5]
    4621     206    CameraColorCalibration05?            int16s[5]
    4622     211    CameraColorCalibration06?            int16s[5]
    4623     216    CameraColorCalibration07?            int16s[5]
    4624     221    CameraColorCalibration08?            int16s[5]
    4625     226    CameraColorCalibration09?            int16s[5]
    4626     231    CameraColorCalibration10?            int16s[5]
    4627     236    CameraColorCalibration11?            int16s[5]
    4628     241    CameraColorCalibration12?            int16s[5]
    4629     246    CameraColorCalibration13?            int16s[5]
    4630     251    CameraColorCalibration14?            int16s[5]
    4631     256    CameraColorCalibration15?            int16s[5]
     7704           ColorCoefs2                          Canon ColorCoefs2
     7705    186    ColorCalib2?                         Canon ColorCalib2
     7706    255    ColorCalib2?                         Canon ColorCalib2
     7707    264    PerChannelBlackLevel                 int16s[4]
     7708    333    PerChannelBlackLevel                 int16s[4]
     7709   1385    NormalWhiteLevel                     int16u
     7710   1386    SpecularWhiteLevel                   int16u
     7711
     7712=head3 Canon ColorCoefs2 Tags
     7713
     7714  Index2   Tag Name                             Writable
     7715  ------   --------                             --------
     7716      0    WB_RGGBLevelsAsShot                  int16s[4]
     7717      7    ColorTempAsShot                      int16s
     7718      8    WB_RGGBLevelsAuto                    int16s[4]
     7719     15    ColorTempAuto                        int16s
     7720     16    WB_RGGBLevelsMeasured                int16s[4]
     7721     23    ColorTempMeasured                    int16s
     7722     24    WB_RGGBLevelsUnknown?                int16s[4]
     7723     31    ColorTempUnknown?                    int16s
     7724     32    WB_RGGBLevelsDaylight                int16s[4]
     7725     39    ColorTempDaylight                    int16s
     7726     40    WB_RGGBLevelsShade                   int16s[4]
     7727     47    ColorTempShade                       int16s
     7728     48    WB_RGGBLevelsCloudy                  int16s[4]
     7729     55    ColorTempCloudy                      int16s
     7730     56    WB_RGGBLevelsTungsten                int16s[4]
     7731     63    ColorTempTungsten                    int16s
     7732     64    WB_RGGBLevelsFluorescent             int16s[4]
     7733     71    ColorTempFluorescent                 int16s
     7734     72    WB_RGGBLevelsKelvin                  int16s[4]
     7735     79    ColorTempKelvin                      int16s
     7736     80    WB_RGGBLevelsFlash                   int16s[4]
     7737     87    ColorTempFlash                       int16s
     7738     88    WB_RGGBLevelsUnknown2?               int16s[4]
     7739     95    ColorTempUnknown2?                   int16s
     7740     96    WB_RGGBLevelsUnknown3?               int16s[4]
     7741    103    ColorTempUnknown3?                   int16s
     7742    104    WB_RGGBLevelsUnknown4?               int16s[4]
     7743    111    ColorTempUnknown4?                   int16s
     7744    112    WB_RGGBLevelsUnknown5?               int16s[4]
     7745    119    ColorTempUnknown5?                   int16s
     7746    120    WB_RGGBLevelsUnknown6?               int16s[4]
     7747    127    ColorTempUnknown6?                   int16s
     7748    128    WB_RGGBLevelsUnknown7?               int16s[4]
     7749    135    ColorTempUnknown7?                   int16s
     7750    136    WB_RGGBLevelsUnknown8?               int16s[4]
     7751    143    ColorTempUnknown8?                   int16s
     7752    144    WB_RGGBLevelsUnknown9?               int16s[4]
     7753    151    ColorTempUnknown9?                   int16s
     7754    152    WB_RGGBLevelsUnknown10?              int16s[4]
     7755    159    ColorTempUnknown10?                  int16s
     7756    160    WB_RGGBLevelsUnknown11?              int16s[4]
     7757    167    ColorTempUnknown11?                  int16s
     7758    168    WB_RGGBLevelsUnknown12?              int16s[4]
     7759    175    ColorTempUnknown12?                  int16s
     7760    176    WB_RGGBLevelsUnknown13?              int16s[4]
     7761    183    ColorTempUnknown13?                  int16s
     7762
     7763=head3 Canon ColorCalib2 Tags
     7764
     7765B, C, A, D, Temperature.
     7766
     7767  Index2   Tag Name                             Writable
     7768  ------   --------                             --------
     7769      0    CameraColorCalibration01?            int16s[5]
     7770      5    CameraColorCalibration02?            int16s[5]
     7771     10    CameraColorCalibration03?            int16s[5]
     7772     15    CameraColorCalibration04?            int16s[5]
     7773     20    CameraColorCalibration05?            int16s[5]
     7774     25    CameraColorCalibration06?            int16s[5]
     7775     30    CameraColorCalibration07?            int16s[5]
     7776     35    CameraColorCalibration08?            int16s[5]
     7777     40    CameraColorCalibration09?            int16s[5]
     7778     45    CameraColorCalibration10?            int16s[5]
     7779     50    CameraColorCalibration11?            int16s[5]
     7780     55    CameraColorCalibration12?            int16s[5]
     7781     60    CameraColorCalibration13?            int16s[5]
     7782     65    CameraColorCalibration14?            int16s[5]
     7783     70    CameraColorCalibration15?            int16s[5]
    46327784
    46337785=head3 Canon ColorData6 Tags
    46347786
    4635 These tags are used by the EOS 600D.
    4636 
    4637    Index   Tag Name                             Writable
    4638    -----   --------                             --------
     7787These tags are used by the EOS 600D and 1200D.
     7788
     7789  Index2   Tag Name                             Writable
     7790  ------   --------                             --------
    46397791      0    ColorDataVersion                     int16s
    46407792     63    WB_RGGBLevelsAsShot                  int16s[4]
     
    46897841    187    ColorTempUnknown15?                  int16s
    46907842    188    ColorCalib?                          Canon ColorCalib
     7843    251    AverageBlackLevel                    int16u[4]
    46917844    404    RawMeasuredRGGB                      int32u[4]
     7845    479    PerChannelBlackLevel                 int16u[4]
     7846    483    NormalWhiteLevel                     int16u
     7847    484    SpecularWhiteLevel                   int16u
     7848    485    LinearityUpperMargin                 int16u
     7849
     7850=head3 Canon ColorData7 Tags
     7851
     7852These tags are used by the EOS 1DX, 5DmkIII, 6D, 100D, 650D, 700D, M and 7DmkII.
     7853
     7854  Index2   Tag Name                             Writable
     7855  ------   --------                             --------
     7856      0    ColorDataVersion                     int16s
     7857     63    WB_RGGBLevelsAsShot                  int16s[4]
     7858     67    ColorTempAsShot                      int16s
     7859     68    WB_RGGBLevelsAuto                    int16s[4]
     7860     72    ColorTempAuto                        int16s
     7861     73    WB_RGGBLevelsMeasured                int16s[4]
     7862     77    ColorTempMeasured                    int16s
     7863     78    WB_RGGBLevelsUnknown?                int16s[4]
     7864     82    ColorTempUnknown?                    int16s
     7865     83    WB_RGGBLevelsUnknown2?               int16s[4]
     7866     87    ColorTempUnknown2?                   int16s
     7867     88    WB_RGGBLevelsUnknown3?               int16s[4]
     7868     92    ColorTempUnknown3?                   int16s
     7869     93    WB_RGGBLevelsUnknown4?               int16s[4]
     7870     97    ColorTempUnknown4?                   int16s
     7871     98    WB_RGGBLevelsUnknown5?               int16s[4]
     7872    102    ColorTempUnknown5?                   int16s
     7873    103    WB_RGGBLevelsUnknown6?               int16s[4]
     7874    107    ColorTempUnknown6?                   int16s
     7875    108    WB_RGGBLevelsUnknown7?               int16s[4]
     7876    112    ColorTempUnknown7?                   int16s
     7877    113    WB_RGGBLevelsUnknown8?               int16s[4]
     7878    117    ColorTempUnknown8?                   int16s
     7879    118    WB_RGGBLevelsUnknown9?               int16s[4]
     7880    122    ColorTempUnknown9?                   int16s
     7881    123    WB_RGGBLevelsUnknown10?              int16s[4]
     7882    127    ColorTempUnknown10?                  int16s
     7883    128    WB_RGGBLevelsDaylight                int16s[4]
     7884    132    ColorTempDaylight                    int16s
     7885    133    WB_RGGBLevelsShade                   int16s[4]
     7886    137    ColorTempShade                       int16s
     7887    138    WB_RGGBLevelsCloudy                  int16s[4]
     7888    142    ColorTempCloudy                      int16s
     7889    143    WB_RGGBLevelsTungsten                int16s[4]
     7890    147    ColorTempTungsten                    int16s
     7891    148    WB_RGGBLevelsFluorescent             int16s[4]
     7892    152    ColorTempFluorescent                 int16s
     7893    153    WB_RGGBLevelsKelvin                  int16s[4]
     7894    157    ColorTempKelvin                      int16s
     7895    158    WB_RGGBLevelsFlash                   int16s[4]
     7896    162    ColorTempFlash                       int16s
     7897    163    WB_RGGBLevelsUnknown11?              int16s[4]
     7898    167    ColorTempUnknown11?                  int16s
     7899    168    WB_RGGBLevelsUnknown12?              int16s[4]
     7900    172    ColorTempUnknown12?                  int16s
     7901    173    WB_RGGBLevelsUnknown13?              int16s[4]
     7902    177    ColorTempUnknown13?                  int16s
     7903    178    WB_RGGBLevelsUnknown14?              int16s[4]
     7904    182    ColorTempUnknown14?                  int16s
     7905    183    WB_RGGBLevelsUnknown15?              int16s[4]
     7906    187    ColorTempUnknown15?                  int16s
     7907    188    WB_RGGBLevelsUnknown16?              int16s[4]
     7908    192    ColorTempUnknown16?                  int16s
     7909    193    WB_RGGBLevelsUnknown17?              int16s[4]
     7910    197    ColorTempUnknown17?                  int16s
     7911    198    WB_RGGBLevelsUnknown18?              int16s[4]
     7912    202    ColorTempUnknown18?                  int16s
     7913    203    WB_RGGBLevelsUnknown19?              int16s[4]
     7914    207    ColorTempUnknown19?                  int16s
     7915    208    WB_RGGBLevelsUnknown20?              int16s[4]
     7916    212    ColorTempUnknown20?                  int16s
     7917    213    ColorCalib?                          Canon ColorCalib
     7918    276    AverageBlackLevel                    int16u[4]
     7919    429    RawMeasuredRGGB                      int32u[4]
     7920    504    PerChannelBlackLevel                 int16u[4]
     7921    508    NormalWhiteLevel                     int16u
     7922    509    SpecularWhiteLevel                   int16u
     7923    510    LinearityUpperMargin                 int16u
     7924    619    RawMeasuredRGGB                      int32u[4]
     7925    728    PerChannelBlackLevel                 int16u[4]
     7926    732    NormalWhiteLevel                     int16u
     7927    733    SpecularWhiteLevel                   int16u
     7928    734    LinearityUpperMargin                 int16u
     7929
     7930=head3 Canon ColorData8 Tags
     7931
     7932  Index2   Tag Name                             Writable
     7933  ------   --------                             --------
     7934      0    ColorDataVersion                     int16s
     7935     63    WB_RGGBLevelsAsShot                  int16s[4]
     7936     67    ColorTempAsShot                      int16s
     7937     68    WB_RGGBLevelsAuto                    int16s[4]
     7938     72    ColorTempAuto                        int16s
     7939     73    WB_RGGBLevelsMeasured                int16s[4]
     7940     77    ColorTempMeasured                    int16s
     7941     78    WB_RGGBLevelsUnknown?                int16s[4]
     7942     82    ColorTempUnknown?                    int16s
     7943     83    WB_RGGBLevelsUnknown2?               int16s[4]
     7944     87    ColorTempUnknown2?                   int16s
     7945     88    WB_RGGBLevelsUnknown3?               int16s[4]
     7946     92    ColorTempUnknown3?                   int16s
     7947     93    WB_RGGBLevelsUnknown4?               int16s[4]
     7948     97    ColorTempUnknown4?                   int16s
     7949     98    WB_RGGBLevelsUnknown5?               int16s[4]
     7950    102    ColorTempUnknown5?                   int16s
     7951    103    WB_RGGBLevelsUnknown6?               int16s[4]
     7952    107    ColorTempUnknown6?                   int16s
     7953    108    WB_RGGBLevelsUnknown7?               int16s[4]
     7954    112    ColorTempUnknown7?                   int16s
     7955    113    WB_RGGBLevelsUnknown8?               int16s[4]
     7956    117    ColorTempUnknown8?                   int16s
     7957    118    WB_RGGBLevelsUnknown9?               int16s[4]
     7958    122    ColorTempUnknown9?                   int16s
     7959    123    WB_RGGBLevelsUnknown10?              int16s[4]
     7960    127    ColorTempUnknown10?                  int16s
     7961    128    WB_RGGBLevelsUnknown11?              int16s[4]
     7962    132    ColorTempUnknown11?                  int16s
     7963    133    WB_RGGBLevelsDaylight                int16s[4]
     7964    137    ColorTempDaylight                    int16s
     7965    138    WB_RGGBLevelsShade                   int16s[4]
     7966    142    ColorTempShade                       int16s
     7967    143    WB_RGGBLevelsCloudy                  int16s[4]
     7968    147    ColorTempCloudy                      int16s
     7969    148    WB_RGGBLevelsTungsten                int16s[4]
     7970    152    ColorTempTungsten                    int16s
     7971    153    WB_RGGBLevelsFluorescent             int16s[4]
     7972    157    ColorTempFluorescent                 int16s
     7973    158    WB_RGGBLevelsKelvin                  int16s[4]
     7974    162    ColorTempKelvin                      int16s
     7975    163    WB_RGGBLevelsFlash                   int16s[4]
     7976    167    ColorTempFlash                       int16s
     7977    168    WB_RGGBLevelsUnknown12?              int16s[4]
     7978    172    ColorTempUnknown12?                  int16s
     7979    173    WB_RGGBLevelsUnknown13?              int16s[4]
     7980    177    ColorTempUnknown13?                  int16s
     7981    178    WB_RGGBLevelsUnknown14?              int16s[4]
     7982    182    ColorTempUnknown14?                  int16s
     7983    183    WB_RGGBLevelsUnknown15?              int16s[4]
     7984    187    ColorTempUnknown15?                  int16s
     7985    188    WB_RGGBLevelsUnknown16?              int16s[4]
     7986    192    ColorTempUnknown16?                  int16s
     7987    193    WB_RGGBLevelsUnknown17?              int16s[4]
     7988    197    ColorTempUnknown17?                  int16s
     7989    198    WB_RGGBLevelsUnknown18?              int16s[4]
     7990    202    ColorTempUnknown18?                  int16s
     7991    203    WB_RGGBLevelsUnknown19?              int16s[4]
     7992    207    ColorTempUnknown19?                  int16s
     7993    208    WB_RGGBLevelsUnknown20?              int16s[4]
     7994    212    ColorTempUnknown20?                  int16s
     7995    213    WB_RGGBLevelsUnknown21?              int16s[4]
     7996    217    ColorTempUnknown21?                  int16s
     7997    218    WB_RGGBLevelsUnknown22?              int16s[4]
     7998    222    ColorTempUnknown22?                  int16s
     7999    223    WB_RGGBLevelsUnknown23?              int16s[4]
     8000    227    ColorTempUnknown23?                  int16s
     8001    228    WB_RGGBLevelsUnknown24?              int16s[4]
     8002    232    ColorTempUnknown24?                  int16s
     8003    233    WB_RGGBLevelsUnknown25?              int16s[4]
     8004    237    ColorTempUnknown25?                  int16s
     8005    238    WB_RGGBLevelsUnknown26?              int16s[4]
     8006    242    ColorTempUnknown26?                  int16s
     8007    243    WB_RGGBLevelsUnknown27?              int16s[4]
     8008    247    ColorTempUnknown27?                  int16s
     8009    248    WB_RGGBLevelsUnknown28?              int16s[4]
     8010    252    ColorTempUnknown28?                  int16s
     8011    253    WB_RGGBLevelsUnknown29?              int16s[4]
     8012    257    ColorTempUnknown29?                  int16s
     8013    258    WB_RGGBLevelsUnknown30?              int16s[4]
     8014    262    ColorTempUnknown30?                  int16s
     8015    263    ColorCalib?                          Canon ColorCalib
     8016    326    AverageBlackLevel                    int16u[4]
     8017    556    PerChannelBlackLevel                 int16u[4]
     8018    560    NormalWhiteLevel                     int16u
     8019    561    SpecularWhiteLevel                   int16u
     8020    562    LinearityUpperMargin                 int16u
     8021    778    PerChannelBlackLevel                 int16u[4]
     8022    782    NormalWhiteLevel                     int16u
     8023    783    SpecularWhiteLevel                   int16u
     8024    784    LinearityUpperMargin                 int16u
     8025
     8026=head3 Canon ColorData9 Tags
     8027
     8028  Index2   Tag Name                             Writable
     8029  ------   --------                             --------
     8030      0    ColorDataVersion                     int16s
     8031     71    WB_RGGBLevelsAsShot                  int16s[4]
     8032     75    ColorTempAsShot                      int16s
     8033     76    WB_RGGBLevelsAuto                    int16s[4]
     8034     80    ColorTempAuto                        int16s
     8035     81    WB_RGGBLevelsMeasured                int16s[4]
     8036     85    ColorTempMeasured                    int16s
     8037     86    WB_RGGBLevelsUnknown?                int16s[4]
     8038     90    ColorTempUnknown?                    int16s
     8039     91    WB_RGGBLevelsUnknown2?               int16s[4]
     8040     95    ColorTempUnknown2?                   int16s
     8041     96    WB_RGGBLevelsUnknown3?               int16s[4]
     8042    100    ColorTempUnknown3?                   int16s
     8043    101    WB_RGGBLevelsUnknown4?               int16s[4]
     8044    105    ColorTempUnknown4?                   int16s
     8045    106    WB_RGGBLevelsUnknown5?               int16s[4]
     8046    110    ColorTempUnknown5?                   int16s
     8047    111    WB_RGGBLevelsUnknown6?               int16s[4]
     8048    115    ColorTempUnknown6?                   int16s
     8049    116    WB_RGGBLevelsUnknown7?               int16s[4]
     8050    120    ColorTempUnknown7?                   int16s
     8051    121    WB_RGGBLevelsUnknown8?               int16s[4]
     8052    125    ColorTempUnknown8?                   int16s
     8053    126    WB_RGGBLevelsUnknown9?               int16s[4]
     8054    130    ColorTempUnknown9?                   int16s
     8055    131    WB_RGGBLevelsUnknown10?              int16s[4]
     8056    135    ColorTempUnknown10?                  int16s
     8057    136    WB_RGGBLevelsDaylight                int16s[4]
     8058    140    ColorTempDaylight                    int16s
     8059    141    WB_RGGBLevelsShade                   int16s[4]
     8060    145    ColorTempShade                       int16s
     8061    146    WB_RGGBLevelsCloudy                  int16s[4]
     8062    150    ColorTempCloudy                      int16s
     8063    151    WB_RGGBLevelsTungsten                int16s[4]
     8064    155    ColorTempTungsten                    int16s
     8065    156    WB_RGGBLevelsFluorescent             int16s[4]
     8066    160    ColorTempFluorescent                 int16s
     8067    161    WB_RGGBLevelsKelvin                  int16s[4]
     8068    165    ColorTempKelvin                      int16s
     8069    166    WB_RGGBLevelsFlash                   int16s[4]
     8070    170    ColorTempFlash                       int16s
     8071    171    WB_RGGBLevelsUnknown11?              int16s[4]
     8072    175    ColorTempUnknown11?                  int16s
     8073    176    WB_RGGBLevelsUnknown12?              int16s[4]
     8074    180    ColorTempUnknown12?                  int16s
     8075    181    WB_RGGBLevelsUnknown13?              int16s[4]
     8076    185    ColorTempUnknown13?                  int16s
     8077    186    WB_RGGBLevelsUnknown14?              int16s[4]
     8078    190    ColorTempUnknown14?                  int16s
     8079    191    WB_RGGBLevelsUnknown15?              int16s[4]
     8080    195    ColorTempUnknown15?                  int16s
     8081    196    WB_RGGBLevelsUnknown16?              int16s[4]
     8082    200    ColorTempUnknown16?                  int16s
     8083    201    WB_RGGBLevelsUnknown17?              int16s[4]
     8084    205    ColorTempUnknown17?                  int16s
     8085    206    WB_RGGBLevelsUnknown18?              int16s[4]
     8086    210    ColorTempUnknown18?                  int16s
     8087    211    WB_RGGBLevelsUnknown19?              int16s[4]
     8088    215    ColorTempUnknown19?                  int16s
     8089    216    WB_RGGBLevelsUnknown20?              int16s[4]
     8090    220    ColorTempUnknown20?                  int16s
     8091    221    WB_RGGBLevelsUnknown21?              int16s[4]
     8092    225    ColorTempUnknown21?                  int16s
     8093    226    WB_RGGBLevelsUnknown22?              int16s[4]
     8094    230    ColorTempUnknown22?                  int16s
     8095    231    WB_RGGBLevelsUnknown23?              int16s[4]
     8096    235    ColorTempUnknown23?                  int16s
     8097    236    WB_RGGBLevelsUnknown24?              int16s[4]
     8098    240    ColorTempUnknown24?                  int16s
     8099    241    WB_RGGBLevelsUnknown25?              int16s[4]
     8100    245    ColorTempUnknown25?                  int16s
     8101    246    WB_RGGBLevelsUnknown26?              int16s[4]
     8102    250    ColorTempUnknown26?                  int16s
     8103    251    WB_RGGBLevelsUnknown27?              int16s[4]
     8104    255    ColorTempUnknown27?                  int16s
     8105    256    WB_RGGBLevelsUnknown28?              int16s[4]
     8106    260    ColorTempUnknown28?                  int16s
     8107    261    WB_RGGBLevelsUnknown29?              int16s[4]
     8108    265    ColorTempUnknown29?                  int16s
     8109    266    ColorCalib?                          Canon ColorCalib
     8110    329    PerChannelBlackLevel                 int16u[4]
     8111    796    NormalWhiteLevel                     int16u
     8112    797    SpecularWhiteLevel                   int16u
     8113    798    LinearityUpperMargin                 int16u
     8114
     8115=head3 Canon ColorData10 Tags
     8116
     8117  Index2   Tag Name                             Writable
     8118  ------   --------                             --------
     8119      0    ColorDataVersion                     int16s
     8120     85    WB_RGGBLevelsAsShot                  int16s[4]
     8121     89    ColorTempAsShot                      int16s
     8122     90    WB_RGGBLevelsAuto                    int16s[4]
     8123     94    ColorTempAuto                        int16s
     8124     95    WB_RGGBLevelsMeasured                int16s[4]
     8125     99    ColorTempMeasured                    int16s
     8126    100    WB_RGGBLevelsUnknown?                int16s[4]
     8127    104    ColorTempUnknown?                    int16s
     8128    105    WB_RGGBLevelsUnknown2?               int16s[4]
     8129    109    ColorTempUnknown2?                   int16s
     8130    110    WB_RGGBLevelsUnknown3?               int16s[4]
     8131    114    ColorTempUnknown3?                   int16s
     8132    115    WB_RGGBLevelsUnknown4?               int16s[4]
     8133    119    ColorTempUnknown4?                   int16s
     8134    120    WB_RGGBLevelsUnknown5?               int16s[4]
     8135    124    ColorTempUnknown5?                   int16s
     8136    125    WB_RGGBLevelsUnknown6?               int16s[4]
     8137    129    ColorTempUnknown6?                   int16s
     8138    130    WB_RGGBLevelsUnknown7?               int16s[4]
     8139    134    ColorTempUnknown7?                   int16s
     8140    135    WB_RGGBLevelsUnknown8?               int16s[4]
     8141    139    ColorTempUnknown8?                   int16s
     8142    140    WB_RGGBLevelsUnknown9?               int16s[4]
     8143    144    ColorTempUnknown9?                   int16s
     8144    145    WB_RGGBLevelsUnknown10?              int16s[4]
     8145    149    ColorTempUnknown10?                  int16s
     8146    150    WB_RGGBLevelsDaylight                int16s[4]
     8147    154    ColorTempDaylight                    int16s
     8148    155    WB_RGGBLevelsShade                   int16s[4]
     8149    159    ColorTempShade                       int16s
     8150    160    WB_RGGBLevelsCloudy                  int16s[4]
     8151    164    ColorTempCloudy                      int16s
     8152    165    WB_RGGBLevelsTungsten                int16s[4]
     8153    169    ColorTempTungsten                    int16s
     8154    170    WB_RGGBLevelsFluorescent             int16s[4]
     8155    174    ColorTempFluorescent                 int16s
     8156    175    WB_RGGBLevelsKelvin                  int16s[4]
     8157    179    ColorTempKelvin                      int16s
     8158    180    WB_RGGBLevelsFlash                   int16s[4]
     8159    184    ColorTempFlash                       int16s
     8160    185    WB_RGGBLevelsUnknown11?              int16s[4]
     8161    189    ColorTempUnknown11?                  int16s
     8162    190    WB_RGGBLevelsUnknown12?              int16s[4]
     8163    194    ColorTempUnknown12?                  int16s
     8164    195    WB_RGGBLevelsUnknown13?              int16s[4]
     8165    199    ColorTempUnknown13?                  int16s
     8166    200    WB_RGGBLevelsUnknown14?              int16s[4]
     8167    204    ColorTempUnknown14?                  int16s
     8168    205    WB_RGGBLevelsUnknown15?              int16s[4]
     8169    209    ColorTempUnknown15?                  int16s
     8170    210    WB_RGGBLevelsUnknown16?              int16s[4]
     8171    214    ColorTempUnknown16?                  int16s
     8172    215    WB_RGGBLevelsUnknown17?              int16s[4]
     8173    219    ColorTempUnknown17?                  int16s
     8174    220    WB_RGGBLevelsUnknown18?              int16s[4]
     8175    224    ColorTempUnknown18?                  int16s
     8176    225    WB_RGGBLevelsUnknown19?              int16s[4]
     8177    229    ColorTempUnknown19?                  int16s
     8178    230    WB_RGGBLevelsUnknown20?              int16s[4]
     8179    234    ColorTempUnknown20?                  int16s
     8180    235    WB_RGGBLevelsUnknown21?              int16s[4]
     8181    239    ColorTempUnknown21?                  int16s
     8182    240    WB_RGGBLevelsUnknown22?              int16s[4]
     8183    244    ColorTempUnknown22?                  int16s
     8184    245    WB_RGGBLevelsUnknown23?              int16s[4]
     8185    249    ColorTempUnknown23?                  int16s
     8186    250    WB_RGGBLevelsUnknown24?              int16s[4]
     8187    254    ColorTempUnknown24?                  int16s
     8188    255    WB_RGGBLevelsUnknown25?              int16s[4]
     8189    259    ColorTempUnknown25?                  int16s
     8190    260    WB_RGGBLevelsUnknown26?              int16s[4]
     8191    264    ColorTempUnknown26?                  int16s
     8192    265    WB_RGGBLevelsUnknown27?              int16s[4]
     8193    269    ColorTempUnknown27?                  int16s
     8194    270    WB_RGGBLevelsUnknown28?              int16s[4]
     8195    274    ColorTempUnknown28?                  int16s
     8196    275    WB_RGGBLevelsUnknown29?              int16s[4]
     8197    279    ColorTempUnknown29?                  int16s
     8198    280    ColorCalib?                          Canon ColorCalib
     8199    343    PerChannelBlackLevel                 int16u[4]
     8200    810    NormalWhiteLevel                     int16u
     8201    811    SpecularWhiteLevel                   int16u
     8202    812    LinearityUpperMargin                 int16u
    46928203
    46938204=head3 Canon ColorDataUnknown Tags
    46948205
    4695    Index   Tag Name                             Writable
    4696    -----   --------                             --------
    4697   [no tags known]
     8206  Index2   Tag Name                             Writable
     8207  ------   --------                             --------
     8208      0    ColorDataVersion                     no
    46988209
    46998210=head3 Canon ColorInfo Tags
    47008211
    4701    Index   Tag Name                             Writable
    4702    -----   --------                             --------
     8212  Index2   Tag Name                             Writable
     8213  ------   --------                             --------
    47038214      1    Saturation                           int16s
    47048215      2    ColorTone                            int16s
     
    47078218=head3 Canon AFMicroAdj Tags
    47088219
    4709    Index   Tag Name                             Writable
    4710    -----   --------                             --------
    4711       1    AFMicroAdjActive                     int32s
     8220  Index4   Tag Name                             Writable
     8221  ------   --------                             --------
     8222      1    AFMicroAdjMode                       int32s
    47128223      2    AFMicroAdjValue                      rational64s
    47138224
    47148225=head3 Canon VignettingCorr Tags
    47158226
    4716 This information is found in images from the 1DmkIV, 5DmkII, 7D, 50D, 500D
    4717 and 550D.
    4718 
    4719    Index   Tag Name                             Writable
    4720    -----   --------                             --------
     8227This information is found in images from newer EOS models.
     8228
     8229  Index2   Tag Name                             Writable
     8230  ------   --------                             --------
     8231      0    VignettingCorrVersion                no
    47218232      2    PeripheralLighting                   int16s
     8233      3    DistortionCorrection                 int16s
     8234      4    ChromaticAberrationCorr              int16s
     8235      5    ChromaticAberrationCorr              int16s
    47228236      6    PeripheralLightingValue              int16s
     8237      9    DistortionCorrectionValue            int16s
    47238238     11    OriginalImageWidth                   int16s
    47248239     12    OriginalImageHeight                  int16s
    47258240
     8241=head3 Canon VignettingCorrUnknown Tags
     8242
     8243Vignetting correction from PowerShot models.
     8244
     8245  Index2   Tag Name                             Writable
     8246  ------   --------                             --------
     8247      0    VignettingCorrVersion                no
     8248
    47268249=head3 Canon VignettingCorr2 Tags
    47278250
    4728    Index   Tag Name                             Writable
    4729    -----   --------                             --------
     8251  Index4   Tag Name                             Writable
     8252  ------   --------                             --------
    47308253      5    PeripheralLightingSetting            int32s
     8254      6    ChromaticAberrationSetting           int32s
     8255      7    DistortionCorrectionSetting          int32s
    47318256
    47328257=head3 Canon LightingOpt Tags
     
    47348259This information is new in images from the EOS 7D.
    47358260
    4736    Index   Tag Name                             Writable
    4737    -----   --------                             --------
     8261  Index4   Tag Name                             Writable
     8262  ------   --------                             --------
     8263      1    PeripheralIlluminationCorr           int32s
    47388264      2    AutoLightingOptimizer                int32s
     8265      3    HighlightTonePriority                int32s
     8266      4    LongExposureNoiseReduction           int32s
     8267      5    HighISONoiseReduction                int32s
    47398268
    47408269=head3 Canon LensInfo Tags
    47418270
    4742    Index   Tag Name                             Writable
    4743    -----   --------                             --------
     8271  Index1   Tag Name                             Writable
     8272  ------   --------                             --------
    47448273      0    LensSerialNumber                     undef[5]
    47458274
    47468275=head3 Canon Ambience Tags
    47478276
    4748    Index   Tag Name                             Writable
    4749    -----   --------                             --------
     8277  Index4   Tag Name                             Writable
     8278  ------   --------                             --------
    47508279      1    AmbienceSelection                    int32s
    47518280
     8281=head3 Canon MultiExp Tags
     8282
     8283  Index4   Tag Name                             Writable
     8284  ------   --------                             --------
     8285      1    MultiExposure                        int32s
     8286      2    MultiExposureControl                 int32s
     8287      3    MultiExposureShots                   int32s
     8288
    47528289=head3 Canon FilterInfo Tags
    47538290
     
    47568293  Tag ID   Tag Name                             Writable
    47578294  ------   --------                             --------
    4758   0x0101   GrainyBWFilter                       N
    4759   0x0201   SoftFocusFilter                      N
    4760   0x0301   ToyCameraFilter                      N
    4761   0x0401   MiniatureFilter                      N
    4762   0x0402   MiniatureFilterOrientation           N
    4763   0x0403   MiniatureFilterPosition              N
     8295  0x0101   GrainyBWFilter                       no
     8296  0x0201   SoftFocusFilter                      no
     8297  0x0301   ToyCameraFilter                      no
     8298  0x0401   MiniatureFilter                      no
     8299  0x0402   MiniatureFilterOrientation           no
     8300  0x0403   MiniatureFilterPosition              no
     8301  0x0404   MiniatureFilterParameter             no
     8302  0x0501   FisheyeFilter                        no
     8303  0x0601   PaintingFilter                       no
     8304  0x0701   WatercolorFilter                     no
     8305
     8306=head3 Canon HDRInfo Tags
     8307
     8308  Index4   Tag Name                             Writable
     8309  ------   --------                             --------
     8310      1    HDR                                  int32s
     8311      2    HDREffect                            int32s
     8312
     8313=head3 Canon AFConfig Tags
     8314
     8315  Index4   Tag Name                             Writable
     8316  ------   --------                             --------
     8317      1    AFConfigTool                         int32s
     8318      2    AFTrackingSensitivity                int32s
     8319      3    AFAccelDecelTracking                 int32s
     8320      4    AFPointSwitching                     int32s
     8321      5    AIServoFirstImage                    int32s
     8322      6    AIServoSecondImage                   int32s
     8323      7    USMLensElectronicMF                  int32s
     8324      8    AFAssistBeam                         int32s
     8325      9    OneShotAFRelease                     int32s
     8326     10    AutoAFPointSelEOSiTRAF               int32s
     8327     11    LensDriveWhenAFImpossible            int32s
     8328     12    SelectAFAreaSelectionMode            int32s
     8329     13    AFAreaSelectionMethod                int32s
     8330     14    OrientationLinkedAF                  int32s
     8331     15    ManualAFPointSelPattern              int32s
     8332     16    AFPointDisplayDuringFocus            int32s
     8333     17    VFDisplayIllumination                int32s
     8334     18    AFStatusViewfinder                   int32s
     8335     19    InitialAFPointInServo                int32s
     8336
     8337=head3 Canon RawBurstInfo Tags
     8338
     8339  Index4   Tag Name                             Writable
     8340  ------   --------                             --------
     8341      1    RawBurstImageNum                     int32u
     8342      2    RawBurstImageCount                   int32u
     8343
     8344=head3 Canon CTMD Tags
     8345
     8346Canon Timed MetaData tags found in CR3 images.  The ExtractEmbedded option
     8347is automatically applied when reading CR3 files to be able to extract this
     8348information.
     8349
     8350  Tag ID   Tag Name                             Writable
     8351  ------   --------                             --------
     8352  0x0001   TimeStamp                            no
     8353  0x0004   FocalInfo                            Canon FocalInfo
     8354  0x0005   ExposureInfo                         Canon ExposureInfo
     8355  0x0007   ExifInfo7                            Canon ExifInfo
     8356  0x0008   ExifInfo8                            Canon ExifInfo
     8357  0x0009   ExifInfo9                            Canon ExifInfo
     8358
     8359=head3 Canon FocalInfo Tags
     8360
     8361  Index4   Tag Name                             Writable
     8362  ------   --------                             --------
     8363      0    FocalLength                          no
     8364
     8365=head3 Canon ExposureInfo Tags
     8366
     8367  Index4   Tag Name                             Writable
     8368  ------   --------                             --------
     8369      0    FNumber                              no
     8370      1    ExposureTime                         no
     8371      2    ISO                                  no
     8372
     8373=head3 Canon ExifInfo Tags
     8374
     8375  Tag ID   Tag Name                             Writable
     8376  ------   --------                             --------
     8377  0x8769   ExifIFD                              EXIF
     8378  0x927c   MakerNoteCanon                       Canon
     8379
     8380=head3 Canon CDI1 Tags
     8381
     8382  Tag ID   Tag Name                             Writable
     8383  ------   --------                             --------
     8384  'IAD1'   IAD1                                 Canon IAD1
     8385
     8386=head3 Canon IAD1 Tags
     8387
     8388  Index2   Tag Name                             Writable
     8389  ------   --------                             --------
     8390  [no tags known]
     8391
     8392=head3 Canon CMP1 Tags
     8393
     8394  Index2   Tag Name                             Writable
     8395  ------   --------                             --------
     8396      8    ImageWidth                           no
     8397     10    ImageHeight                          no
     8398
     8399=head3 Canon CNOP Tags
     8400
     8401  Tag ID   Tag Name                             Writable
     8402  ------   --------                             --------
     8403  [no tags known]
    47648404
    47658405=head3 Canon CNTH Tags
    47668406
    4767 Canon-specific QuickTime tags found in the CNTH atom of MOV videos from some
    4768 cameras such as the PowerShot S95.
     8407Canon-specific QuickTime tags found in the CNTH atom of MOV/MP4 videos from
     8408some cameras.
    47698409
    47708410  Tag ID   Tag Name                             Writable
    47718411  ------   --------                             --------
    4772   'CNDA'   ThumbnailImage                       N
     8412  'CNDA'   ThumbnailImage                       undef
     8413
     8414=head3 Canon uuid Tags
     8415
     8416Tags extracted from the uuid atom of MP4 videos from cameras such as the
     8417SX280, and CR3 images from cameras such as the EOS M50.
     8418
     8419  Tag ID   Tag Name                             Writable
     8420  ------   --------                             --------
     8421  'CCTP'   CanonCCTP                            Canon CCTP
     8422  'CMT1'   IFD0                                 EXIF
     8423  'CMT2'   ExifIFD                              EXIF
     8424  'CMT3'   MakerNoteCanon                       Canon
     8425  'CMT4'   GPSInfo                              GPS
     8426  'CNCV'   CompressorVersion                    no
     8427  'CNOP'   CanonCNOP                            Canon CNOP
     8428  'CNTH'   CanonCNTH                            Canon CNTH
     8429  'THMB'   ThumbnailImage                       no
     8430
     8431=head3 Canon CCTP Tags
     8432
     8433  Tag ID   Tag Name                             Writable
     8434  ------   --------                             --------
     8435  [no tags known]
     8436
     8437=head3 Canon Skip Tags
     8438
     8439Information found in the "skip" atom of Canon MOV videos.
     8440
     8441  Tag ID   Tag Name                             Writable
     8442  ------   --------                             --------
     8443  'CNDB'   Unknown_CNDB?                        no
     8444
     8445=head3 Canon uuid2 Tags
     8446
     8447  Tag ID   Tag Name                             Writable
     8448  ------   --------                             --------
     8449  'CNOP'   CanonVRD                             CanonVRD
    47738450
    47748451=head2 CanonCustom Tags
     
    49618638Personal function settings for the EOS-1D.
    49628639
    4963    Index   Tag Name                             Writable
    4964    -----   --------                             --------
     8640  Index2   Tag Name                             Writable
     8641  ------   --------                             --------
    49658642      1    PF0CustomFuncRegistration            int16u
    49668643      2    PF1DisableShootingModes              int16u
     
    49958672=head3 CanonCustom PersonalFuncValues Tags
    49968673
    4997    Index   Tag Name                             Writable
    4998    -----   --------                             --------
     8674  Index2   Tag Name                             Writable
     8675  ------   --------                             --------
    49998676      1    PF1Value                             int16u
    50008677      2    PF2Value                             int16u
     
    50418718  0x0104   AEBAutoCancel                        int32s
    50428719  0x0105   AEBSequence                          int32s
    5043   0x0106   AEBShotCount                         int32s[n]
     8720  0x0106   AEBShotCount                         int32s
     8721           AEBShotCount                         int32s[2]
    50448722  0x0107   SpotMeterLinkToAFPoint               int32s
    50458723  0x0108   SafetyShift                          int32s
    5046   0x0109   UsableShootingModes                  int32s[2]
    5047   0x010a   UsableMeteringModes                  int32s[2]
     8724  0x0109   UsableShootingModes                  int32s
     8725           UsableShootingModes                  int32s[2]
     8726  0x010a   UsableMeteringModes                  int32s
     8727           UsableMeteringModes                  int32s[2]
    50488728  0x010b   ExposureModeInManual                 int32s
    50498729  0x010c   ShutterSpeedRange                    int32s[3]
     8730           ShutterSpeedRange                    int32s[4]
    50508731  0x010d   ApertureRange                        int32s[3]
     8732           ApertureRange                        int32s[4]
    50518733  0x010e   ApplyShootingMeteringMode            int32s[8]
    50528734  0x010f   FlashSyncSpeedAv                     int32s
    5053   0x0110   FEMicroadjustment                    int32s[3]
    5054   0x0111   AEMicroadjustment                    int32s[3]
     8735  0x0110   AEMicroadjustment                    int32s[3]
     8736  0x0111   FEMicroadjustment                    int32s[3]
     8737  0x0112   SameExposureForNewAperture           int32s
     8738  0x0113   ExposureCompAutoCancel               int32s
     8739  0x0114   AELockMeterModeAfterFocus            int32s
    50558740  0x0201   LongExposureNoiseReduction           int32s
    50568741  0x0202   HighISONoiseReduction                int32s
     
    50638748  0x0408   LCDIlluminationDuringBulb            int32s
    50648749  0x0409   InfoButtonWhenShooting               int32s
     8750  0x040a   ViewfinderWarnings                   int32s
     8751  0x040b   LVShootingAreaDisplay                int32s
     8752  0x040c   LVShootingAreaDisplay                int32s
    50658753  0x0501   USMLensElectronicMF                  int32s
    50668754  0x0502   AIServoTrackingSensitivity           int32s
     
    50878775  0x0516   OrientationLinkedAFPoint             int32s
    50888776  0x0517   MultiControllerWhileMetering         int32s
     8777  0x0518   AccelerationTracking                 int32s
     8778  0x0519   AIServoFirstImagePriority            int32s
     8779  0x051a   AIServoSecondImagePriority           int32s
     8780  0x051b   AFAreaSelectMethod                   int32s
     8781  0x051c   AutoAFPointColorTracking             int32s
     8782  0x051d   VFDisplayIllumination                int32s
     8783  0x051e   InitialAFPointAIServoAF              int32s
    50898784  0x060f   MirrorLockup                         int32s
    5090   0x0610   ContinuousShootingSpeed              int32s[3]
     8785  0x0610   ContinuousShootingSpeed              int32s[6]
     8786           ContinuousShootingSpeed              int32s[5]
     8787           ContinuousShootingSpeed              int32s[3]
    50918788  0x0611   ContinuousShotLimit                  int32s[2]
     8789  0x0612   RestrictDriveModes                   int32s
     8790           RestrictDriveModes                   int32s[2]
    50928791  0x0701   Shutter-AELock                       int32s
    50938792           AFAndMeteringButtons                 int32s
     
    51058804  0x070c   CustomControls                       int32s
    51068805  0x070d   StartMovieShooting                   int32s
     8806  0x070e   FlashButtonFunction                  int32s
     8807  0x070f   MultiFunctionLock                    int32s
     8808  0x0710   TrashButtonFunction                  int32s
     8809  0x0711   ShutterReleaseWithoutLens            int32s
     8810  0x0712   ControlRingRotation                  int32s
     8811  0x0713   FocusRingRotation                    int32s
     8812  0x0714   RFLensMFFocusRingSensitivity         int32s
     8813  0x0715   CustomizeDials                       int32s
    51078814  0x080b   FocusingScreen                       int32s
    5108   0x080c   TimerLength                          int32s[4]
     8815  0x080c   TimerLength                          int32s[3]
     8816           TimerLength                          int32s[4]
    51098817  0x080d   ShortReleaseTimeLag                  int32s
    51108818  0x080e   AddAspectRatioInfo                   int32s
     
    51128820  0x0810   LiveViewExposureSimulation           int32s
    51138821  0x0811   LCDDisplayAtPowerOn                  int32s
     8822  0x0812   MemoAudioQuality                     int32s
     8823  0x0813   DefaultEraseOption                   int32s
     8824  0x0814   RetractLensOnPowerOff                int32s
     8825  0x0815   AddIPTCInformation                   int32s
     8826  0x0816   AudioCompression                     int32s
    51148827
    51158828=head2 CanonVRD Tags
    51168829
    51178830Canon Digital Photo Professional writes VRD (Recipe Data) information as a
    5118 trailer record to JPEG, TIFF, CRW and CR2 images, or as a stand-alone VRD
    5119 file.  The tags listed below represent information found in this record.
    5120 The complete VRD data record may be accessed as a block using the Extra
    5121 'CanonVRD' tag, but this tag is not extracted or copied unless specified
    5122 explicitly.
     8831trailer record to JPEG, TIFF, CRW and CR2 images, or as stand-alone VRD or
     8832DR4 files.  The tags listed below represent information found in these
     8833records.  The complete VRD/DR4 data record may be accessed as a block using
     8834the Extra 'CanonVRD' or 'CanonDR4' tag, but this tag is not extracted or
     8835copied unless specified explicitly.
    51238836
    51248837  Tag ID       Tag Name                         Writable
     
    51278840  0xffff00f5   IHLData                          CanonVRD IHL
    51288841  0xffff00f6   XMP                              XMP
     8842  0xffff00f7   Edit4Data                        CanonVRD Edit4
    51298843
    51308844=head3 CanonVRD Edit Tags
     
    51408854=head3 CanonVRD Ver1 Tags
    51418855
    5142    Index   Tag Name                             Writable
    5143    -----   --------                             --------
    5144       2    VRDVersion                           N
    5145       8    WBAdjRGBLevels                       int16u[3]
     8856  Index1   Tag Name                             Writable
     8857  ------   --------                             --------
     8858      2    VRDVersion                           no
     8859      6    WBAdjRGGBLevels                      int16u[4]
    51468860     24    WhiteBalanceAdj                      int16u
    51478861     26    WBAdjColorTemp                       int16u
     
    51888902=head3 CanonVRD StampTool Tags
    51898903
    5190    Index   Tag Name                             Writable
    5191    -----   --------                             --------
    5192       0    StampToolCount                       N
     8904  Index1   Tag Name                             Writable
     8905  ------   --------                             --------
     8906      0    StampToolCount                       no
    51938907
    51948908=head3 CanonVRD Ver2 Tags
     
    51968910Tags added in DPP version 2.0 and later.
    51978911
    5198    Index   Tag Name                             Writable
    5199    -----   --------                             --------
     8912  Index2   Tag Name                             Writable
     8913  ------   --------                             --------
    52008914      2    PictureStyle                         int16s
    52018915      3    IsCustomPictureStyle                 int16s
     
    52618975     74    UnknownOutputHighlightPoint?         int16s
    52628976     75    UnknownOutputShadowPoint?            int16s
     8977     76    CustomColorTone                      int16s
     8978     77    CustomSaturation                     int16s
    52638979     78    CustomContrast                       int16s
    52648980     79    CustomLinear                         int16s
     
    52688984     83    CustomOutputHighlightPoint           int16s
    52698985     84    CustomOutputShadowPoint              int16s
    5270      88    CustomPictureStyleData               N
     8986     88    CustomPictureStyleData               no
    52718987     94    ChrominanceNoiseReduction            int16s
    52728988     95    LuminanceNoiseReduction              int16s
     
    53049020    142    CheckMark2                           int16u
    53059021    144    UnsharpMask                          int16s
    5306     146    UnsharpMaskStrength                  int16s
    5307     148    UnsharpMaskFineness                  int16s
    5308     150    UnsharpMaskThreshold                 int16s
     9022    146    StandardUnsharpMaskStrength          int16s
     9023    148    StandardUnsharpMaskFineness          int16s
     9024    150    StandardUnsharpMaskThreshold         int16s
     9025    152    PortraitUnsharpMaskStrength          int16s
     9026    154    PortraitUnsharpMaskFineness          int16s
     9027    156    PortraitUnsharpMaskThreshold         int16s
     9028    158    LandscapeUnsharpMaskStrength         int16s
     9029    160    LandscapeUnsharpMaskFineness         int16s
     9030    162    LandscapeUnsharpMaskThreshold        int16s
     9031    164    NeutraUnsharpMaskStrength            int16s
     9032    166    NeutralUnsharpMaskFineness           int16s
     9033    168    NeutralUnsharpMaskThreshold          int16s
     9034    170    FaithfulUnsharpMaskStrength          int16s
     9035    172    FaithfulUnsharpMaskFineness          int16s
     9036    174    FaithfulUnsharpMaskThreshold         int16s
     9037    176    MonochromeUnsharpMaskStrength        int16s
     9038    178    MonochromeUnsharpMaskFineness        int16s
     9039    180    MonochromeUnsharpMaskThreshold       int16s
     9040    182    CustomUnsharpMaskStrength            int16s
     9041    184    CustomUnsharpMaskFineness            int16s
     9042    186    CustomUnsharpMaskThreshold           int16s
     9043    188    CustomDefaultUnsharpStrength         int16s
     9044    190    CustomDefaultUnsharpFineness         int16s
     9045    192    CustomDefaultUnsharpThreshold        int16s
     9046    214    CropCircleActive                     int16s
     9047    215    CropCircleX                          int16s
     9048    216    CropCircleY                          int16s
     9049    217    CropCircleRadius                     int16s
     9050    220    DLOOn                                int16s
     9051    221    DLOSetting                           int16s
     9052    222    DLOShootingDistance                  int16s
     9053    223    DLODataLength                        no
     9054    224    DLOInfo                              CanonVRD DLOInfo
     9055    225    CameraRawColorTone                   int16s
     9056    226    CameraRawSaturation                  int16s
     9057    227    CameraRawContrast                    int16s
     9058    228    CameraRawLinear                      int16s
     9059    229    CameraRawSharpness                   int16s
     9060    230    CameraRawHighlightPoint              int16s
     9061    231    CameraRawShadowPoint                 int16s
     9062    232    CameraRawOutputHighlightPoint        int16s
     9063    233    CameraRawOutputShadowPoint           int16s
     9064
     9065=head3 CanonVRD DLOInfo Tags
     9066
     9067Tags added when DLO (Digital Lens Optimizer) is on.
     9068
     9069  Index2   Tag Name                             Writable
     9070  ------   --------                             --------
     9071      4    DLOSettingApplied                    int16s
     9072      5    DLOVersion                           string[10]
     9073     10    DLOData                              no
    53099074
    53109075=head3 CanonVRD IHL Tags
     
    53139078  ------   --------                             --------
    53149079  0x0001   IHL_EXIF                             EXIF
    5315            IHL_EXIF?                            N
    5316   0x0003   ThumbnailImage                       N
    5317   0x0004   PreviewImage                         N
    5318   0x0005   RawCodecVersion                      N
    5319   0x0006   CRCDevelParams?                      N
     9080           IHL_EXIF?                            no
     9081  0x0003   ThumbnailImage                       no
     9082  0x0004   PreviewImage                         no
     9083  0x0005   RawCodecVersion                      no
     9084  0x0006   CRCDevelParams?                      no
     9085
     9086=head3 CanonVRD Edit4 Tags
     9087
     9088Canon DPP version 4 edit information.
     9089
     9090   Index   Tag Name                             Writable
     9091   -----   --------                             --------
     9092      0    DR4                                  CanonVRD DR4
     9093
     9094=head3 CanonVRD DR4 Tags
     9095
     9096Tags written by Canon DPP version 4 in CanonVRD trailers and DR4 files. Each
     9097tag has three associated flag words which are stored with the directory
     9098entry, some of which are extracted as a separate tag, indicated in the table
     9099below by a decimal appended to the tag ID (.0, .1 or .2).
     9100
     9101  Tag ID       Tag Name                         Writable
     9102  ------       --------                         --------
     9103  'header'     DR4Header                        CanonVRD DR4Header
     9104  0x10002      Rotation                         yes
     9105  0x10003      AngleAdj                         yes
     9106  0x10021      CustomPictureStyle               yes
     9107  0x10101      CheckMark                        yes
     9108  0x10200      WorkColorSpace                   yes
     9109  0x20001      RawBrightnessAdj                 yes
     9110  0x20101      WhiteBalanceAdj                  yes
     9111  0x20102      WBAdjColorTemp                   yes
     9112  0x20105      WBAdjMagentaGreen                yes
     9113  0x20106      WBAdjBlueAmber                   yes
     9114  0x20125      WBAdjRGGBLevels                  yes
     9115  0x20200      GammaLinear                      yes
     9116  0x20301      PictureStyle                     yes
     9117  0x20303      ContrastAdj                      yes
     9118  0x20304      ColorToneAdj                     yes
     9119  0x20305      ColorSaturationAdj               yes
     9120  0x20306      MonochromeToningEffect           yes
     9121  0x20307      MonochromeFilterEffect           yes
     9122  0x20308      UnsharpMaskStrength              yes
     9123  0x20309      UnsharpMaskFineness              yes
     9124  0x2030a      UnsharpMaskThreshold             yes
     9125  0x2030b      ShadowAdj                        yes
     9126  0x2030c      HighlightAdj                     yes
     9127  0x20310      SharpnessAdj                     yes
     9128  0x20310.0    SharpnessAdjOn                   yes
     9129  0x20311      SharpnessStrength                yes
     9130  0x20400      ToneCurve                        CanonVRD ToneCurve
     9131  0x20400.1    ToneCurveOriginal                yes
     9132  0x20410      ToneCurveBrightness              yes
     9133  0x20411      ToneCurveContrast                yes
     9134  0x20500      AutoLightingOptimizer            yes
     9135  0x20500.0    AutoLightingOptimizerOn          yes
     9136  0x20600      LuminanceNoiseReduction          yes
     9137  0x20601      ChrominanceNoiseReduction        yes
     9138  0x20670      ColorMoireReduction              yes
     9139  0x20670.0    ColorMoireReductionOn            yes
     9140  0x20701      ShootingDistance                 yes
     9141  0x20702      PeripheralIllumination           yes
     9142  0x20702.0    PeripheralIlluminationOn         yes
     9143  0x20703      ChromaticAberration              yes
     9144  0x20703.0    ChromaticAberrationOn            yes
     9145  0x20704      ColorBlurOn                      yes
     9146  0x20705      DistortionCorrection             yes
     9147  0x20705.0    DistortionCorrectionOn           yes
     9148  0x20706      DLOSetting                       yes
     9149  0x20706.0    DLOOn                            yes
     9150  0x20707      ChromaticAberrationRed           yes
     9151  0x20708      ChromaticAberrationBlue          yes
     9152  0x20709      DistortionEffect                 yes
     9153  0x2070b      DiffractionCorrectionOn          yes
     9154  0x20900      ColorHue                         yes
     9155  0x20901      SaturationAdj                    yes
     9156  0x20910      RedHSL                           yes
     9157  0x20911      OrangeHSL                        yes
     9158  0x20912      YellowHSL                        yes
     9159  0x20913      GreenHSL                         yes
     9160  0x20914      AquaHSL                          yes
     9161  0x20915      BlueHSL                          yes
     9162  0x20916      PurpleHSL                        yes
     9163  0x20917      MagentaHSL                       yes
     9164  0x20a00      GammaInfo                        CanonVRD GammaInfo
     9165  0x30101      CropAspectRatio                  yes
     9166  0x30102      CropAspectRatioCustom            yes
     9167  0xf0100      CropInfo                         CanonVRD CropInfo
     9168  0xf0500      CustomPictureStyleData           yes
     9169  0xf0510      StampInfo                        CanonVRD StampInfo
     9170  0xf0511      DustInfo                         CanonVRD DustInfo
     9171  0xf0512      LensFocalLength                  yes
     9172
     9173=head3 CanonVRD DR4Header Tags
     9174
     9175  Index4   Tag Name                             Writable
     9176  ------   --------                             --------
     9177      3    DR4CameraModel                       int32u
     9178
     9179=head3 CanonVRD ToneCurve Tags
     9180
     9181  Index4   Tag Name                             Writable
     9182  ------   --------                             --------
     9183      0    ToneCurveColorSpace                  int32u
     9184      1    ToneCurveShape                       int32u
     9185      3    ToneCurveInputRange                  int32u[2]
     9186      5    ToneCurveOutputRange                 int32u[2]
     9187      7    RGBCurvePoints                       int32u[21]
     9188     10    ToneCurveX                           int32u
     9189     11    ToneCurveY                           int32u
     9190     45    RedCurvePoints                       int32u[21]
     9191     83    GreenCurvePoints                     int32u[21]
     9192    121    BlueCurvePoints                      int32u[21]
     9193
     9194=head3 CanonVRD GammaInfo Tags
     9195
     9196  Index8   Tag Name                             Writable
     9197  ------   --------                             --------
     9198      2    GammaContrast                        double
     9199      3    GammaColorTone                       double
     9200      4    GammaSaturation                      double
     9201      5    GammaUnsharpMaskStrength             double
     9202      6    GammaUnsharpMaskFineness             double
     9203      7    GammaUnsharpMaskThreshold            double
     9204      8    GammaSharpnessStrength               double
     9205      9    GammaShadow                          double
     9206     10    GammaHighlight                       double
     9207     12    GammaBlackPoint                      double
     9208     13    GammaWhitePoint                      double
     9209     14    GammaMidPoint                        double
     9210     15    GammaCurveOutputRange                double[2]
     9211
     9212=head3 CanonVRD CropInfo Tags
     9213
     9214  Index4   Tag Name                             Writable
     9215  ------   --------                             --------
     9216      0    CropActive                           int32s
     9217      1    CropRotatedOriginalWidth             int32s
     9218      2    CropRotatedOriginalHeight            int32s
     9219      3    CropX                                int32s
     9220      4    CropY                                int32s
     9221      5    CropWidth                            int32s
     9222      6    CropHeight                           int32s
     9223      8    CropRotation                         double
     9224     10    CropOriginalWidth                    int32s
     9225     11    CropOriginalHeight                   int32s
     9226
     9227=head3 CanonVRD StampInfo Tags
     9228
     9229  Index4   Tag Name                             Writable
     9230  ------   --------                             --------
     9231      2    StampToolCount                       no
     9232
     9233=head3 CanonVRD DustInfo Tags
     9234
     9235  Index4   Tag Name                             Writable
     9236  ------   --------                             --------
     9237      2    DustDeleteApplied                    no
    53209238
    53219239=head2 Casio Tags
     
    53699287  0x2089   FaceInfo1                            Casio FaceInfo1
    53709288           FaceInfo2                            Casio FaceInfo2
    5371            FaceInfoUnknown?                     Y
     9289           FaceInfoUnknown?                     yes
    53729290  0x211c   FacesDetected                        int8u
    53739291  0x3000   RecordMode                           int16u
     
    53869304  0x3016   Enhancement                          int16u
    53879305  0x3017   ColorFilter                          int16u
    5388   0x301b   UnknownMode?                         int16u
     9306  0x301b   ArtMode                              int16u
    53899307  0x301c   SequenceNumber                       int16u
    53909308  0x301d   BracketSequence                      int16u[2]
     
    53959313  0x3031   SpecialEffectSetting                 int16u
    53969314  0x3103   DriveMode                            int16u
     9315  0x310b   ArtModeParameters                    int8u[3]
    53979316  0x4001   CaptureFrameRate                     int16u[n]
    53989317  0x4003   VideoQuality                         int16u
     
    54029321Face-detect tags extracted from models such as the EX-H5.
    54039322
    5404    Index   Tag Name                             Writable
    5405    -----   --------                             --------
     9323  Index1   Tag Name                             Writable
     9324  ------   --------                             --------
    54069325      0    FacesDetected                        int8u
    54079326      1    FaceDetectFrameSize                  int16u[2]
     
    54219340Face-detect tags extracted from models such as the EX-H20G and EX-ZR100.
    54229341
    5423    Index   Tag Name                             Writable
    5424    -----   --------                             --------
     9342  Index1   Tag Name                             Writable
     9343  ------   --------                             --------
    54259344      2    FacesDetected                        int8u
    54269345      4    FaceDetectFrameSize                  int16u[2]
     
    54429361Casio QV-7000SX.
    54439362
    5444    Index   Tag Name                             Writable
    5445    -----   --------                             --------
    5446      44    CasioQuality                         N
    5447      55    FocalRange?                          N
    5448      77    DateTimeOriginal                     N
    5449      98    ModelType                            N
    5450     114    ManufactureIndex                     N
    5451     124    ManufactureCode                      N
     9363  Index1   Tag Name                             Writable
     9364  ------   --------                             --------
     9365     44    CasioQuality                         no
     9366     55    FocalRange?                          no
     9367     77    DateTimeOriginal                     no
     9368     98    ModelType                            no
     9369    114    ManufactureIndex                     no
     9370    124    ManufactureCode                      no
    54529371
    54539372=head3 Casio AVI Tags
     
    54559374This information is found in Casio GV-10 AVI videos.
    54569375
    5457    Index   Tag Name                             Writable
    5458    -----   --------                             --------
    5459       0    Software                             N
     9376  Index1   Tag Name                             Writable
     9377  ------   --------                             --------
     9378      0    Software                             no
     9379
     9380=head2 DJI Tags
     9381
     9382This table lists tags found in the maker notes of images from some DJI
     9383Phantom drones.
     9384
     9385  Tag ID   Tag Name                             Writable
     9386  ------   --------                             --------
     9387  0x0001   Make                                 string
     9388  0x0003   SpeedX                               float
     9389  0x0004   SpeedY                               float
     9390  0x0005   SpeedZ                               float
     9391  0x0006   Pitch                                float
     9392  0x0007   Yaw                                  float
     9393  0x0008   Roll                                 float
     9394  0x0009   CameraPitch                          float
     9395  0x000a   CameraYaw                            float
     9396  0x000b   CameraRoll                           float
     9397
     9398=head3 DJI XMP Tags
     9399
     9400XMP tags used by DJI for images from drones.
     9401
     9402These tags belong to the ExifTool XMP-drone-dji family 1 group.
     9403
     9404  Tag Name                                      Writable
     9405  --------                                      --------
     9406  AbsoluteAltitude                              real
     9407  CalibratedFocalLength                         real
     9408  CalibratedOpticalCenterX                      real
     9409  CalibratedOpticalCenterY                      real
     9410  CamReverse                                    string
     9411  DewarpData                                    string
     9412  DewarpFlag                                    string
     9413  FlightPitchDegree                             real
     9414  FlightRollDegree                              real
     9415  FlightXSpeed                                  real
     9416  FlightYSpeed                                  real
     9417  FlightYawDegree                               real
     9418  FlightZSpeed                                  real
     9419  GPSLatitude                                   real/
     9420  GPSLongitude                                  real/
     9421  GPSLongtitude                                 real
     9422  GimbalPitchDegree                             real
     9423  GimbalReverse                                 string
     9424  GimbalRollDegree                              real
     9425  GimbalYawDegree                               real
     9426  Latitude                                      real
     9427  Longitude                                     real
     9428  RelativeAltitude                              real
     9429  RtkFlag                                       string
     9430  RtkStdHgt                                     real
     9431  RtkStdLat                                     real
     9432  RtkStdLon                                     real
     9433  SelfData                                      string
     9434
     9435=head3 DJI ThermalParams Tags
     9436
     9437Thermal parameters extracted from APP4 of DJI RJPEG files from the ZH20T.
     9438
     9439  Index1   Tag Name                             Writable
     9440  ------   --------                             --------
     9441     36    K1                                   no
     9442     40    K2                                   no
     9443     44    K3                                   no
     9444     48    K4                                   no
     9445     52    KF                                   no
     9446     56    B1                                   no
     9447     60    B2                                   no
     9448     68    ObjectDistance                       no
     9449     70    RelativeHumidity                     no
     9450     72    Emissivity                           no
     9451     74    Reflection                           no
     9452     76    AmbientTemperature                   no
     9453     80    D2                                   no
     9454     84    KJ                                   no
     9455     86    DB                                   no
     9456     88    KK                                   no
     9457
     9458=head2 FLIR Tags
     9459
     9460Information extracted from the maker notes of JPEG images from thermal
     9461imaging cameras by FLIR Systems Inc.
     9462
     9463  Tag ID   Tag Name                             Writable
     9464  ------   --------                             --------
     9465  0x0001   ImageTemperatureMax                  rational64u
     9466  0x0002   ImageTemperatureMin                  rational64u
     9467  0x0003   Emissivity                           rational64u
     9468  0x0004   UnknownTemperature?                  rational64u
     9469  0x0005   CameraTemperatureRangeMax?           rational64u
     9470  0x0006   CameraTemperatureRangeMin?           rational64u
     9471
     9472=head3 FLIR FFF Tags
     9473
     9474Information extracted from FLIR FFF images and the APP1 FLIR segment of JPEG
     9475images.  These tags may also be extracted from the first frame of an FLIR
     9476SEQ file.
     9477
     9478  Tag ID       Tag Name                         Writable
     9479  ------       --------                         --------
     9480  '_header'    FFFHeader                        FLIR Header
     9481  0x0001       RawData                          FLIR RawData
     9482  0x0005       GainDeadData                     FLIR GainDeadData
     9483  0x0006       CoarseData                       FLIR CoarseData
     9484  0x000e       EmbeddedImage                    FLIR EmbeddedImage
     9485  0x0020       CameraInfo                       FLIR CameraInfo
     9486  0x0021       MeasurementInfo                  FLIR MeasInfo
     9487  0x0022       PaletteInfo                      FLIR PaletteInfo
     9488  0x0023       TextInfo                         FLIR TextInfo
     9489  0x0024       EmbeddedAudioFile                no
     9490  0x0028       PaintData                        FLIR PaintData
     9491  0x002a       PiP                              FLIR PiP
     9492  0x002b       GPSInfo                          FLIR GPSInfo
     9493  0x002c       MeterLink                        FLIR MeterLink
     9494  0x002e       ParameterInfo                    FLIR ParamInfo
     9495
     9496=head3 FLIR Header Tags
     9497
     9498Tags extracted from the FLIR FFF/AFF header.
     9499
     9500  Index1   Tag Name                             Writable
     9501  ------   --------                             --------
     9502      4    CreatorSoftware                      no
     9503
     9504=head3 FLIR RawData Tags
     9505
     9506The thermal image data may be stored either as raw data, or in PNG format.
     9507If stored as raw data, ExifTool adds a TIFF header to allow the data to be
     9508viewed as a TIFF image.  If stored in PNG format, the PNG image is extracted
     9509as-is.  Note that most FLIR cameras using the PNG format seem to write the
     951016-bit raw image data in the wrong byte order.
     9511
     9512  Index2   Tag Name                             Writable
     9513  ------   --------                             --------
     9514      1    RawThermalImageWidth                 no
     9515      2    RawThermalImageHeight                no
     9516     16    RawThermalImageType                  no
     9517   16.1    RawThermalImage                      no
     9518
     9519=head3 FLIR GainDeadData Tags
     9520
     9521Information found in FFF-format .GAN calibration image files.
     9522
     9523  Index2   Tag Name                             Writable
     9524  ------   --------                             --------
     9525      1    GainDeadMapImageWidth                no
     9526      2    GainDeadMapImageHeight               no
     9527     16    GainDeadMapImageType                 no
     9528   16.1    GainDeadMapImage                     no
     9529
     9530=head3 FLIR CoarseData Tags
     9531
     9532Information found in FFF-format .CRS correction image files.
     9533
     9534  Index2   Tag Name                             Writable
     9535  ------   --------                             --------
     9536      1    CoarseMapImageWidth                  no
     9537      2    CoarseMapImageHeight                 no
     9538     16    CoarseMapImageType                   no
     9539   16.1    CoarseMapImage                       no
     9540
     9541=head3 FLIR EmbeddedImage Tags
     9542
     9543  Index2   Tag Name                             Writable
     9544  ------   --------                             --------
     9545      1    EmbeddedImageWidth                   no
     9546      2    EmbeddedImageHeight                  no
     9547     16    EmbeddedImageType                    no
     9548   16.1    EmbeddedImage                        no
     9549
     9550=head3 FLIR CameraInfo Tags
     9551
     9552FLIR camera information.  The Planck tags are variables used in the
     9553temperature calculation.  See
     9554L<https://exiftool.org/forum/index.php?topic=4898.msg23972#msg23972>
     9555for details.
     9556
     9557  Index1   Tag Name                             Writable
     9558  ------   --------                             --------
     9559     32    Emissivity                           no
     9560     36    ObjectDistance                       no
     9561     40    ReflectedApparentTemperature         no
     9562     44    AtmosphericTemperature               no
     9563     48    IRWindowTemperature                  no
     9564     52    IRWindowTransmission                 no
     9565     60    RelativeHumidity                     no
     9566     88    PlanckR1                             no
     9567     92    PlanckB                              no
     9568     96    PlanckF                              no
     9569    112    AtmosphericTransAlpha1               no
     9570    116    AtmosphericTransAlpha2               no
     9571    120    AtmosphericTransBeta1                no
     9572    124    AtmosphericTransBeta2                no
     9573    128    AtmosphericTransX                    no
     9574    144    CameraTemperatureRangeMax            no
     9575    148    CameraTemperatureRangeMin            no
     9576    152    CameraTemperatureMaxClip             no
     9577    156    CameraTemperatureMinClip             no
     9578    160    CameraTemperatureMaxWarn             no
     9579    164    CameraTemperatureMinWarn             no
     9580    168    CameraTemperatureMaxSaturated        no
     9581    172    CameraTemperatureMinSaturated        no
     9582    212    CameraModel                          no
     9583    244    CameraPartNumber                     no
     9584    260    CameraSerialNumber                   no
     9585    276    CameraSoftware                       no
     9586    368    LensModel                            no
     9587    400    LensPartNumber                       no
     9588    416    LensSerialNumber                     no
     9589    436    FieldOfView                          no
     9590    492    FilterModel                          no
     9591    508    FilterPartNumber                     no
     9592    540    FilterSerialNumber                   no
     9593    776    PlanckO                              no
     9594    780    PlanckR2                             no
     9595    784    RawValueRangeMin                     no
     9596    786    RawValueRangeMax                     no
     9597    824    RawValueMedian                       no
     9598    828    RawValueRange                        no
     9599    900    DateTimeOriginal                     no
     9600    912    FocusStepCount                       no
     9601   1116    FocusDistance                        no
     9602   1124    FrameRate                            no
     9603
     9604=head3 FLIR MeasInfo Tags
     9605
     9606Tags listed below are only for the first measurement tool, however multiple
     9607measurements may be added, and information is extracted for all of them.
     9608Tags for subsequent measurements are generated as required with the prefixes
     9609"Meas2", "Meas3", etc.
     9610
     9611  Tag Name                                      Writable
     9612  --------                                      --------
     9613  Meas1Label                                    no
     9614  Meas1Params                                   no
     9615  Meas1Type                                     no
     9616
     9617=head3 FLIR PaletteInfo Tags
     9618
     9619  Index1   Tag Name                             Writable
     9620  ------   --------                             --------
     9621      0    PaletteColors                        no
     9622      6    AboveColor                           no
     9623      9    BelowColor                           no
     9624     12    OverflowColor                        no
     9625     15    UnderflowColor                       no
     9626     18    Isotherm1Color                       no
     9627     21    Isotherm2Color                       no
     9628     26    PaletteMethod                        no
     9629     27    PaletteStretch                       no
     9630     48    PaletteFileName                      no
     9631     80    PaletteName                          no
     9632    112    Palette                              no
     9633
     9634=head3 FLIR TextInfo Tags
     9635
     9636  Tag Name                                      Writable
     9637  --------                                      --------
     9638  Label0                                        no
     9639  Label1                                        no
     9640  Label2                                        no
     9641  Label3                                        no
     9642  Value0                                        no
     9643  Value1                                        no
     9644  Value2                                        no
     9645  Value3                                        no
     9646
     9647=head3 FLIR PaintData Tags
     9648
     9649Information generated by FLIR Tools "Paint colors" tool.
     9650
     9651  Index2   Tag Name                             Writable
     9652  ------   --------                             --------
     9653      5    PaintImageWidth                      no
     9654      6    PaintImageHeight                     no
     9655     20    PaintImageType                       no
     9656   20.1    PaintImage                           no
     9657
     9658=head3 FLIR PiP Tags
     9659
     9660FLIR Picture in Picture tags.
     9661
     9662  Index2   Tag Name                             Writable
     9663  ------   --------                             --------
     9664      0    Real2IR                              no
     9665      2    OffsetX                              no
     9666      3    OffsetY                              no
     9667      4    PiPX1                                no
     9668      5    PiPX2                                no
     9669      6    PiPY1                                no
     9670      7    PiPY2                                no
     9671
     9672=head3 FLIR GPSInfo Tags
     9673
     9674  Index1   Tag Name                             Writable
     9675  ------   --------                             --------
     9676      0    GPSValid                             no
     9677      4    GPSVersionID                         no
     9678      8    GPSLatitudeRef                       no
     9679     10    GPSLongitudeRef                      no
     9680     16    GPSLatitude                          no
     9681     24    GPSLongitude                         no
     9682     32    GPSAltitude                          no
     9683     64    GPSDOP                               no
     9684     68    GPSSpeedRef                          no
     9685     70    GPSTrackRef                          no
     9686     76    GPSSpeed                             no
     9687     80    GPSTrack                             no
     9688     88    GPSMapDatum                          no
     9689
     9690=head3 FLIR MeterLink Tags
     9691
     9692Tags containing Meterlink humidity meter information.
     9693
     9694  Index1   Tag Name                             Writable
     9695  ------   --------                             --------
     9696     26    Reading1Units                        no
     9697     28    Reading1Description                  no
     9698     32    Reading1Device                       no
     9699     96    Reading1Value                        no
     9700    126    Reading2Units                        no
     9701    128    Reading2Description                  no
     9702    132    Reading2Device                       no
     9703    196    Reading2Value                        no
     9704    226    Reading3Units                        no
     9705    228    Reading3Description                  no
     9706    232    Reading3Device                       no
     9707    296    Reading3Value                        no
     9708    326    Reading4Units                        no
     9709    328    Reading4Description                  no
     9710    332    Reading4Device                       no
     9711    396    Reading4Value                        no
     9712
     9713=head3 FLIR ParamInfo Tags
     9714
     9715  Tag Name                                      Writable
     9716  --------                                      --------
     9717  DateTimeGenerated                             no
     9718  Param0                                        no
     9719  Param1                                        no
     9720  Param2                                        no
     9721  Param3                                        no
     9722
     9723=head3 FLIR UserData Tags
     9724
     9725Tags written by some FLIR cameras in a top-level (!) "udta" atom of MP4
     9726videos.
     9727
     9728  Tag ID   Tag Name                             Writable
     9729  ------   --------                             --------
     9730  'uuid'   FLIR_Parts                           FLIR Parts
     9731           FLIR_Serial                          FLIR SerialNums
     9732           FLIR_Params                          FLIR Params
     9733           FLIR_UnknownUUID                     FLIR UnknownUUID
     9734           FLIR_GPS                             FLIR GPS_UUID
     9735           FLIR_MoreInfo                        FLIR MoreInfo
     9736           SoftwareComponents?                  no
     9737           FLIR_Unknown?                        no
     9738           Units                                no+
     9739           ThumbnailImage                       no
     9740
     9741=head3 FLIR Parts Tags
     9742
     9743Tags extracted from the "uuid" box with ID 43c3993b0f94424b82056b66513f485d
     9744in FLIR MP4 videos.
     9745
     9746  Index1   Tag Name                             Writable
     9747  ------   --------                             --------
     9748      4    BAHPVer                              no
     9749           BALPVer                              no
     9750           Battery                              no
     9751           BAVPVer                              no
     9752           CamCore                              no
     9753           DetectorBoard                        no
     9754           Detector                             no
     9755           GIDCVer                              no
     9756           GIDPVer                              no
     9757           GIPC_CPLD                            no
     9758           GIPCVer                              no
     9759           GIXIVer                              no
     9760           MainBoard                            no
     9761           Optics                               no
     9762           PartNumber                           no
     9763
     9764=head3 FLIR SerialNums Tags
     9765
     9766Tags extracted from the "uuid" box with ID 57f5b93e51e448afa0d9c3ef1b37f712
     9767in FLIR MP4 videos.
     9768
     9769  Index1   Tag Name                             Writable
     9770  ------   --------                             --------
     9771     12    UnknownSerial1?                      no
     9772     45    UnknownSerial2?                      no
     9773     78    UnknownSerial3?                      no
     9774    111    UnknownSerial4?                      no
     9775    123    UnknownNumber?                       no
     9776    126    CameraSerialNumber                   no
     9777
     9778=head3 FLIR Params Tags
     9779
     9780Tags extracted from the "uuid" box with ID 41e5dcf9e80a41ceadfe7f0c58082c19
     9781in FLIR MP4 videos.
     9782
     9783  Index4   Tag Name                             Writable
     9784  ------   --------                             --------
     9785      1    ReflectedApparentTemperature         no
     9786      2    AtmosphericTemperature               no
     9787      3    Emissivity                           no
     9788      4    ObjectDistance                       no
     9789      5    RelativeHumidity                     no
     9790      6    EstimatedAtmosphericTrans            no
     9791      7    IRWindowTemperature                  no
     9792      8    IRWindowTransmission                 no
     9793
     9794=head3 FLIR UnknownUUID Tags
     9795
     9796Tags extracted from the "uuid" box with ID 574520502cbb44adae5415e9b839d903
     9797in FLIR MP4 videos.
     9798
     9799  Index4   Tag Name                             Writable
     9800  ------   --------                             --------
     9801  [no tags known]
     9802
     9803=head3 FLIR GPS_UUID Tags
     9804
     9805Tags extracted from the "uuid" box with ID 7f2e21008b464918afb1de709a74f6f5
     9806in FLIR MP4 videos.
     9807
     9808  Index4   Tag Name                             Writable
     9809  ------   --------                             --------
     9810      1    GPSLatitude                          no
     9811      2    GPSLongitude                         no
     9812      3    GPSAltitude                          no
     9813
     9814=head3 FLIR MoreInfo Tags
     9815
     9816Tags extracted from the "uuid" box with ID 2b452fdc74354094baee22a6b23a7cf8
     9817in FLIR MP4 videos.
     9818
     9819  Index1   Tag Name                             Writable
     9820  ------   --------                             --------
     9821      5    LensModel                            no
     9822     11    UnknownTemperature1?                 no
     9823     15    UnknownTemperature2?                 no
     9824
     9825=head3 FLIR AFF Tags
     9826
     9827Tags extracted from FLIR "AFF" SEQ images.
     9828
     9829  Tag ID       Tag Name                         Writable
     9830  ------       --------                         --------
     9831  '_header'    AFFHeader                        FLIR Header
     9832  0x0001       AFF1                             FLIR AFF1
     9833  0x0005       AFF5                             FLIR AFF5
     9834
     9835=head3 FLIR AFF1 Tags
     9836
     9837  Index2   Tag Name                             Writable
     9838  ------   --------                             --------
     9839      1    SensorWidth                          no
     9840      2    SensorHeight                         no
     9841
     9842=head3 FLIR AFF5 Tags
     9843
     9844  Index2   Tag Name                             Writable
     9845  ------   --------                             --------
     9846     19    SensorWidth                          no
     9847     20    SensorHeight                         no
     9848
     9849=head3 FLIR FPF Tags
     9850
     9851Tags extracted from FLIR Public image Format (FPF) files.
     9852
     9853  Index1   Tag Name                             Writable
     9854  ------   --------                             --------
     9855     32    FPFVersion                           no
     9856     36    ImageDataOffset                      no
     9857     40    ImageType                            no
     9858     42    ImagePixelFormat                     no
     9859     44    ImageWidth                           no
     9860     46    ImageHeight                          no
     9861     48    ExternalTriggerCount                 no
     9862     52    SequenceFrameNumber                  no
     9863    120    CameraModel                          no
     9864    152    CameraPartNumber                     no
     9865    184    CameraSerialNumber                   no
     9866    216    CameraTemperatureRangeMin            no
     9867    220    CameraTemperatureRangeMax            no
     9868    224    LensModel                            no
     9869    256    LensPartNumber                       no
     9870    288    LensSerialNumber                     no
     9871    320    FilterModel                          no
     9872    336    FilterPartNumber                     no
     9873    384    FilterSerialNumber                   no
     9874    480    Emissivity                           no
     9875    484    ObjectDistance                       no
     9876    488    ReflectedApparentTemperature         no
     9877    492    AtmosphericTemperature               no
     9878    496    RelativeHumidity                     no
     9879    500    ComputedAtmosphericTrans             no
     9880    504    EstimatedAtmosphericTrans            no
     9881    508    ReferenceTemperature                 no
     9882    512    IRWindowTemperature                  no
     9883    516    IRWindowTransmission                 no
     9884    584    DateTimeOriginal                     no
     9885    676    CameraScaleMin                       no
     9886    680    CameraScaleMax                       no
     9887    684    CalculatedScaleMin                   no
     9888    688    CalculatedScaleMax                   no
     9889    692    ActualScaleMin                       no
     9890    696    ActualScaleMax                       no
    54609891
    54619892=head2 FujiFilm Tags
     
    54749905  0x100a   WhiteBalanceFineTune                 int32s[2]
    54759906  0x100b   NoiseReduction                       int16u
    5476   0x100e   HighISONoiseReduction                int16u
     9907  0x100e   NoiseReduction                       int16u
    54779908  0x1010   FujiFlashMode                        int16u
    54789909  0x1011   FlashExposureComp                    rational64s
    54799910  0x1020   Macro                                int16u
    54809911  0x1021   FocusMode                            int16u
     9912  0x1022   AFMode                               int16u
    54819913  0x1023   FocusPixel                           int16u[2]
     9914  0x102b   PrioritySettings                     FujiFilm PrioritySettings
     9915  0x102d   FocusSettings                        FujiFilm FocusSettings
     9916  0x102e   AFCSettings                          FujiFilm AFCSettings
    54829917  0x1030   SlowSync                             int16u
    54839918  0x1031   PictureMode                          int16u
     9919  0x1032   ExposureCount                        int16u
    54849920  0x1033   EXRAuto                              int16u
    54859921  0x1034   EXRMode                              int16u
     9922  0x1040   ShadowTone                           int32s
     9923  0x1041   HighlightTone                        int32s
     9924  0x1044   DigitalZoom                          int32u
     9925  0x1045   LensModulationOptimizer              int32u
     9926  0x1047   GrainEffect                          int32s
     9927  0x1048   ColorChromeEffect                    int32s
     9928  0x1049   BWAdjustment                         int8s
     9929  0x104d   CropMode                             int16u
     9930  0x104e   ColorChromeFXBlue                    int32s
     9931  0x1050   ShutterType                          int16u
    54869932  0x1100   AutoBracketing                       int16u
    54879933  0x1101   SequenceNumber                       int16u
     9934  0x1103   DriveSettings                        FujiFilm DriveSettings
     9935  0x1153   PanoramaAngle                        int16u
     9936  0x1154   PanoramaDirection                    int16u
     9937  0x1201   AdvancedFilter                       int32u
    54889938  0x1210   ColorMode                            int16u
    54899939  0x1300   BlurWarning                          int16u
     
    55009950  0x1407   MaxApertureAtMaxFocal                rational64s
    55019951  0x140b   AutoDynamicRange                     int16u
     9952  0x1422   ImageStabilization                   int16u[3]
     9953  0x1425   SceneRecognition                     int16u
     9954  0x1431   Rating                               int32u
     9955  0x1436   ImageGeneration                      int16u
     9956  0x1438   ImageCount                           int16u
     9957  0x1443   DRangePriority                       int16u
     9958  0x1444   DRangePriorityAuto                   int16u
     9959  0x1445   DRangePriorityFixed                  int16u
     9960  0x1446   FlickerReduction                     int32u
     9961  0x3803   VideoRecordingMode                   int32u
     9962  0x3804   PeripheralLighting                   int16u
     9963  0x3806   VideoCompression                     int16u
     9964  0x3820   FrameRate                            int16u
     9965  0x3821   FrameWidth                           int16u
     9966  0x3822   FrameHeight                          int16u
     9967  0x3824   FullHDHighSpeedRec                   int32u
     9968  0x4005   FaceElementSelected                  int16u[4]
    55029969  0x4100   FacesDetected                        int16u
    55039970  0x4103   FacePositions                        int16u[n]
     9971  0x4200   NumFaceElements                      int16u
     9972  0x4201   FaceElementTypes                     int8u[n]
     9973  0x4203   FaceElementPositions                 int16u[n]
    55049974  0x4282   FaceRecInfo                          FujiFilm FaceRecInfo
    55059975  0x8000   FileSource                           string
     
    55089978  0xb211   Parallax                             rational64s
    55099979
     9980=head3 FujiFilm PrioritySettings Tags
     9981
     9982  Index2   Tag Name                             Writable
     9983  ------   --------                             --------
     9984    0.1    AF-SPriority                         int16u & 0x0f
     9985    0.2    AF-CPriority                         int16u & 0xf0
     9986
     9987=head3 FujiFilm FocusSettings Tags
     9988
     9989  Index4   Tag Name                             Writable
     9990  ------   --------                             --------
     9991    0.1    FocusMode2                           int32u & 0xff
     9992    0.2    AFAreaMode                           int32u & 0xf00
     9993    0.3    AFAreaPointSize                      int32u & 0xf000
     9994    0.4    AFAreaZoneSize                       int32u & 0xf0000
     9995
     9996=head3 FujiFilm AFCSettings Tags
     9997
     9998  Index4   Tag Name                             Writable
     9999  ------   --------                             --------
     10000      0    AF-CSetting                          int32u
     10001    0.1    AF-CTrackingSensitivity              int32u & 0x0f
     10002    0.2    AF-CSpeedTrackingSensitivity         int32u & 0xf0
     10003    0.3    AF-CZoneAreaSwitching                int32u & 0xf00
     10004
     10005=head3 FujiFilm DriveSettings Tags
     10006
     10007  Index4   Tag Name                             Writable
     10008  ------   --------                             --------
     10009    0.1    DriveMode                            int32u & 0xff
     10010    0.2    DriveSpeed                           int32u & 0xff000000
     10011
    551010012=head3 FujiFilm FaceRecInfo Tags
    551110013
     
    551410016  Tag Name                                      Writable
    551510017  --------                                      --------
    5516   Face1Birthday                                 N
    5517   Face1Category                                 N
    5518   Face1Name                                     N
    5519   Face2Birthday                                 N
    5520   Face2Category                                 N
    5521   Face2Name                                     N
    5522   Face3Birthday                                 N
    5523   Face3Category                                 N
    5524   Face3Name                                     N
    5525   Face4Birthday                                 N
    5526   Face4Category                                 N
    5527   Face4Name                                     N
    5528   Face5Birthday                                 N
    5529   Face5Category                                 N
    5530   Face5Name                                     N
    5531   Face6Birthday                                 N
    5532   Face6Category                                 N
    5533   Face6Name                                     N
    5534   Face7Birthday                                 N
    5535   Face7Category                                 N
    5536   Face7Name                                     N
    5537   Face8Birthday                                 N
    5538   Face8Category                                 N
    5539   Face8Name                                     N
     10018  Face1Birthday                                 no
     10019  Face1Category                                 no
     10020  Face1Name                                     no
     10021  Face2Birthday                                 no
     10022  Face2Category                                 no
     10023  Face2Name                                     no
     10024  Face3Birthday                                 no
     10025  Face3Category                                 no
     10026  Face3Name                                     no
     10027  Face4Birthday                                 no
     10028  Face4Category                                 no
     10029  Face4Name                                     no
     10030  Face5Birthday                                 no
     10031  Face5Category                                 no
     10032  Face5Name                                     no
     10033  Face6Birthday                                 no
     10034  Face6Category                                 no
     10035  Face6Name                                     no
     10036  Face7Birthday                                 no
     10037  Face7Category                                 no
     10038  Face7Name                                     no
     10039  Face8Birthday                                 no
     10040  Face8Category                                 no
     10041  Face8Name                                     no
    554010042
    554110043=head3 FujiFilm RAF Tags
     
    554610048RAF-format information.
    554710049
     10050  Tag ID  Tag Name                              Writable
     10051  ------  --------                              --------
     10052  0x0100  RawImageFullSize                      no
     10053  0x0110  RawImageCropTopLeft                   no
     10054  0x0111  RawImageCroppedSize                   no
     10055  0x0115  RawImageAspectRatio                   no
     10056  0x0121  RawImageSize                          no
     10057  0x0130  FujiLayout                            no
     10058  0x0131  XTransLayout                          no
     10059  0x2000  WB_GRGBLevelsAuto                     no
     10060  0x2100  WB_GRGBLevelsDaylight                 no
     10061  0x2200  WB_GRGBLevelsCloudy                   no
     10062  0x2300  WB_GRGBLevelsDaylightFluor            no
     10063  0x2301  WB_GRGBLevelsDayWhiteFluor            no
     10064  0x2302  WB_GRGBLevelsWhiteFluorescent         no
     10065  0x2310  WB_GRGBLevelsWarmWhiteFluor           no
     10066  0x2311  WB_GRGBLevelsLivingRoomWarmWhiteFluor no
     10067  0x2400  WB_GRGBLevelsTungsten                 no
     10068  0x2ff0  WB_GRGBLevels                         no
     10069  0x9200  RelativeExposure                      no
     10070  0x9650  RawExposureBias                       no
     10071  0xc000  RAFData                               FujiFilm RAFData
     10072
     10073=head3 FujiFilm RAFData Tags
     10074
     10075  Index1   Tag Name                             Writable
     10076  ------   --------                             --------
     10077      0    RawImageWidth                        no
     10078      4    RawImageWidth                        no
     10079           RawImageHeight                       no
     10080      8    RawImageWidth                        no
     10081           RawImageHeight                       no
     10082     12    RawImageHeight                       no
     10083
     10084=head3 FujiFilm IFD Tags
     10085
     10086Tags found in the FujiIFD information of RAF images from some models.
     10087
    554810088  Tag ID   Tag Name                             Writable
    554910089  ------   --------                             --------
    5550   0x0100   RawImageFullSize                     N
    5551   0x0121   RawImageSize                         N
    5552   0x0130   FujiLayout                           N
    5553   0x2ff0   WB_GRGBLevels                        N
     10090  0xf000   FujiIFD                              FujiFilm IFD
     10091  0xf001   RawImageFullWidth                    no
     10092  0xf002   RawImageFullHeight                   no
     10093  0xf003   BitsPerSample                        no
     10094  0xf007   StripOffsets                         no
     10095  0xf008   StripByteCounts                      no
     10096  0xf00a   BlackLevel                           no
     10097  0xf00b   GeometricDistortionParams            no
     10098  0xf00c   WB_GRBLevelsStandard                 no
     10099  0xf00d   WB_GRBLevelsAuto                     no
     10100  0xf00e   WB_GRBLevels                         no
     10101  0xf00f   ChromaticAberrationParams            no
     10102  0xf010   VignettingParams                     no
    555410103
    555510104=head3 FujiFilm FFMV Tags
     
    555710106Information found in the FFMV atom of MOV videos.
    555810107
    5559    Index   Tag Name                             Writable
    5560    -----   --------                             --------
    5561       0    MovieStreamName                      N
     10108  Index1   Tag Name                             Writable
     10109  ------   --------                             --------
     10110      0    MovieStreamName                      no
     10111
     10112=head3 FujiFilm MOV Tags
     10113
     10114This information is found in MOV videos from some FujiFilm cameras.
     10115
     10116  Index1   Tag Name                             Writable
     10117  ------   --------                             --------
     10118      0    Make                                 no
     10119     24    Model                                no
     10120     46    ExposureTime                         no
     10121     50    FNumber                              no
     10122     58    ExposureCompensation                 no
    556210123
    556310124=head2 GE Tags
     
    559010151  Tag ID               Tag Name                 Writable
    559110152  ------               --------                 --------
    5592   'Lens Shading'       LensShading              N
    5593   'PreviewImage'       PreviewImage             N
    5594   'Serial Number'      SerialNumber             N
     10153  'Lens Shading'       LensShading              no
     10154  'PreviewImage'       PreviewImage             no
     10155  'Serial Number'      SerialNumber             no
    559510156
    559610157=head3 HP Type4 Tags
     
    559810159These tags are used by the PhotoSmart M627.
    559910160
    5600    Index   Tag Name                             Writable
    5601    -----   --------                             --------
    5602      12    MaxAperture                          N
    5603      16    ExposureTime                         N
    5604      20    CameraDateTime                       N
    5605      52    ISO                                  N
    5606      92    SerialNumber                         N
     10161  Index1   Tag Name                             Writable
     10162  ------   --------                             --------
     10163     12    MaxAperture                          no
     10164     16    ExposureTime                         no
     10165     20    CameraDateTime                       no
     10166     52    ISO                                  no
     10167     92    SerialNumber                         no
    560710168
    560810169=head3 HP Type6 Tags
     
    561010171These tags are used by the PhotoSmart M425, M525 and M527.
    561110172
    5612    Index   Tag Name                             Writable
    5613    -----   --------                             --------
    5614      12    FNumber                              N
    5615      16    ExposureTime                         N
    5616      20    CameraDateTime                       N
    5617      52    ISO                                  N
    5618      88    SerialNumber                         N
     10173  Index1   Tag Name                             Writable
     10174  ------   --------                             --------
     10175     12    FNumber                              no
     10176     16    ExposureTime                         no
     10177     20    CameraDateTime                       no
     10178     52    ISO                                  no
     10179     88    SerialNumber                         no
    561910180
    562010181=head3 HP TDHD Tags
     
    562610187  Tag ID   Tag Name                             Writable
    562710188  ------   --------                             --------
    5628   'CMSN'   SerialNumber                         N
    5629   'FWRV'   FirmwareVersion                      N
     10189  'CMSN'   SerialNumber                         no
     10190  'FWRV'   FirmwareVersion                      no
    563010191  'LSLV'   LSLV                                 HP TDHD
    563110192  'TDHD'   TDHD                                 HP TDHD
     
    563710198  Tag ID   Tag Name                             Writable
    563810199  ------   --------                             --------
    5639   0x0002   CPUVersions                          N
    5640   0x0003   Quality                              N
     10200  0x0002   CPUVersions                          no
     10201  0x0003   Quality                              no
    564110202
    564210203=head3 JVC Text Tags
     
    564610207  Tag ID   Tag Name                             Writable
    564710208  ------   --------                             --------
    5648   'QTY'    Quality                              N
    5649   'VER'    MakerNoteVersion                     N
     10209  'QTY'    Quality                              no
     10210  'VER'    MakerNoteVersion                     no
    565010211
    565110212=head2 Kodak Tags
     
    566310224Z7590.
    566410225
    5665    Index   Tag Name                             Writable
    5666    -----   --------                             --------
     10226  Index1   Tag Name                             Writable
     10227  ------   --------                             --------
    566710228      0    KodakModel                           string[8]
    566810229      9    Quality                              int8u
     
    570010261    107    Sharpness                            int8s
    570110262
     10263=head3 Kodak IFD Tags
     10264
     10265These tags are found in a separate IFD of JPEG, TIFF, DCR and KDC images
     10266from some older Kodak models such as the DC50, DC120, DCS760C, DCS Pro 14N,
     1026714nx, SLR/n, Pro Back and Canon EOS D2000.
     10268
     10269  Tag ID   Tag Name                             Writable
     10270  ------   --------                             --------
     10271  0x0000   KodakVersion                         int8u[4]
     10272  0x0001   UnknownEV?                           rational64u
     10273  0x0003   ExposureValue                        rational64u
     10274  0x03e9   OriginalFileName                     string
     10275  0x03ea   KodakTag                             int32u
     10276  0x03eb   SensorLeftBorder                     int16u
     10277  0x03ec   SensorTopBorder                      int16u
     10278  0x03ed   SensorImageWidth                     int16u
     10279  0x03ee   SensorImageHeight                    int16u
     10280  0x03ef   BlackLevelTop                        int16u
     10281  0x03f0   BlackLevelBottom                     int16u
     10282  0x03f1   TextualInfo                          Kodak TextualInfo
     10283  0x03f2   FlashMode?                           int16u
     10284  0x03f3   FlashCompensation                    rational64s
     10285  0x03f4   WindMode?                            int16u
     10286  0x03f5   FocusMode?                           int16u
     10287  0x03f8   MinAperture                          rational64u
     10288  0x03f9   MaxAperture                          rational64u
     10289  0x03fa   WhiteBalanceMode?                    int16u
     10290  0x03fb   WhiteBalanceDetected?                int16u
     10291  0x03fc   WhiteBalance                         int16u
     10292  0x03fd   Processing                           Kodak Processing
     10293           ProcessingParameters                 no
     10294  0x03fe   ImageAbsoluteX                       int16s
     10295  0x03ff   ImageAbsoluteY                       int16s
     10296  0x0400   ApplicationKeyString                 string
     10297  0x0401   Time                                 string
     10298  0x0402   GPSString                            string
     10299  0x0403   EventLogCapture?                     no
     10300  0x0404   ComponentTable?                      no
     10301  0x0405   CustomIlluminant?                    int16u
     10302  0x0406   CameraTemperature                    rational64s
     10303           CameraTemperature                    no
     10304  0x0407   AdapterVoltage                       rational64u
     10305  0x0408   BatteryVoltage                       rational64u
     10306  0x0409   DacVoltages                          no
     10307  0x040a   IlluminantDetectorData?              no
     10308  0x040b   PixelClockFrequency                  int32u
     10309  0x040c   CenterPixel                          int16u[3]
     10310  0x040d   BurstCount                           int16u
     10311  0x040e   BlackLevelRough                      int16u
     10312  0x040f   OffsetMapHorizontal?                 no
     10313  0x0410   OffsetMapVertical?                   no
     10314  0x0411   Histogram?                           no
     10315  0x0412   VerticalClockOverlaps                int16u[2]
     10316  0x0413   SensorTemperature                    no
     10317  0x0414   XilinxVersion                        string
     10318  0x0415   FirmwareVersion                      int32u
     10319  0x0416   BlackLevelRoughAfter                 int16u
     10320  0x0417   BrightRowsTop                        no
     10321  0x0418   EventLogProcess                      no
     10322  0x0419   DacVoltagesFlush                     no
     10323  0x041a   FlashUsed                            no
     10324  0x041b   FlashType                            no
     10325  0x041c   SelfTimer                            no
     10326  0x041d   AFMode                               no
     10327  0x041e   LensType                             no
     10328  0x041f   ImageCropX                           int16s
     10329  0x0420   ImageCropY                           int16s
     10330  0x0421   AdjustedTbnImageWidth                no
     10331  0x0422   AdjustedTbnImageHeight               no
     10332  0x0423   IntegrationTime                      int32u
     10333  0x0424   BracketingMode                       no
     10334  0x0425   BracketingStep                       no
     10335  0x0426   BracketingCounter                    no
     10336  0x042e   HuffmanTableLength                   no
     10337  0x042f   HuffmanTableValue                    no
     10338  0x0438   MainBoardVersion                     int32u
     10339  0x0439   ImagerBoardVersion                   int32u
     10340  0x044c   FocusEdgeMap                         no
     10341  0x05e6   IdleTiming                           no
     10342  0x05e7   FlushTiming                          no
     10343  0x05e8   IntegrateTiming                      no
     10344  0x05e9   RegisterReadTiming                   no
     10345  0x05ea   FirstLineTransferTiming              no
     10346  0x05eb   ShiftTiming                          no
     10347  0x05ec   NormalLineTransferTiming             no
     10348  0x05ed   TestTransferTiming                   no
     10349  0x05fa   MinimumFlushRows                     no
     10350  0x05fd   ImagerPowerOnDelayMsec               int32u
     10351  0x05fe   ImagerInitialTimingCode              no
     10352  0x05ff   ImagerLogicProgram                   no
     10353  0x0600   ImagerBiasSettlingDelayMsec          int32u
     10354  0x0604   IdleSequence                         no
     10355  0x0605   FirstFlushSequence                   no
     10356  0x0606   FinalFlushSequence                   no
     10357  0x0607   SampleBlackSequence                  no
     10358  0x0608   TransferSequence                     no
     10359  0x060e   DacCountsPerVolt                     no
     10360  0x060f   BlackDacChannel                      no
     10361  0x0610   BlackAdCountsPerDacVolt              no
     10362  0x0611   BlackTarget                          no
     10363  0x0612   BlackDacSettlingMsec                 no
     10364  0x07d0   StandardMatrixDaylight               rational64s[9]
     10365  0x07d1   StandardMatrixTungsten               rational64s[9]
     10366  0x07d2   StandardMatrixFluorescent            rational64s[9]
     10367  0x07d3   StandardMatrixFlash                  rational64s[9]
     10368  0x07d4   StandardMatrixCustom                 rational64s[9]
     10369  0x07da   DeviantMatrixDaylight                rational64s[9]
     10370  0x07db   DeviantMatrixTungsten                rational64s[9]
     10371  0x07dc   DeviantMatrixFluorescent             rational64s[9]
     10372  0x07dd   DeviantMatrixFlash                   rational64s[9]
     10373  0x07de   DeviantMatrixCustom                  rational64s[9]
     10374  0x07e4   UniqueMatrixDaylight                 rational64s[9]
     10375  0x07e5   UniqueMatrixTungsten                 rational64s[9]
     10376  0x07e6   UniqueMatrixFluorescent              rational64s[9]
     10377  0x07e7   UniqueMatrixFlash                    rational64s[9]
     10378  0x07e8   UniqueMatrixCustom                   rational64s[9]
     10379  0x07e9   UniqueMatrixAuto                     rational64s[9]
     10380  0x0834   StandardWhiteDaylight                rational64s[3]
     10381  0x0835   StandardWhiteTungsten                rational64s[3]
     10382  0x0836   StandardWhiteFluorescent             rational64s[3]
     10383  0x0837   StandardWhiteFlash                   rational64s[3]
     10384  0x0838   StandardWhiteCustom                  rational64s[3]
     10385  0x083e   DeviantWhiteDaylight                 rational64s[3]
     10386  0x083f   DeviantWhiteTungsten                 rational64s[3]
     10387  0x0840   DeviantWhiteFluorescent              rational64s[3]
     10388  0x0841   DeviantWhiteFlash                    rational64s[3]
     10389  0x0842   DeviantWhiteCustom                   rational64s[3]
     10390  0x0846   ColorTemperature                     int16u
     10391  0x0847   WB_RGBLevelsAsShot                   no
     10392  0x0848   WB_RGBLevelsDaylight                 no
     10393  0x0849   WB_RGBLevelsTungsten                 no
     10394  0x084a   WB_RGBLevelsFluorescent              no
     10395  0x084b   WB_RGBLevelsFlash                    no
     10396  0x084c   WB_RGBLevelsCustom                   no
     10397  0x084d   WB_RGBLevelsAuto                     no
     10398  0x0852   WB_RGBMulDaylight                    rational64u[3]
     10399  0x0853   WB_RGBMulTungsten                    rational64u[3]
     10400  0x0854   WB_RGBMulFluorescent                 rational64u[3]
     10401  0x0855   WB_RGBMulFlash                       rational64u[3]
     10402  0x085c   WB_RGBCoeffsDaylight                 no
     10403  0x085d   WB_RGBCoeffsTungsten                 no
     10404  0x085e   WB_RGBCoeffsFluorescent              no
     10405  0x085f   WB_RGBCoeffsFlash                    no
     10406  0x0898   ExposureGainDaylight                 rational64s
     10407  0x0899   ExposureGainTungsten                 rational64s
     10408  0x089a   ExposureGainFluorescent              rational64s
     10409  0x089b   ExposureGainFlash                    rational64s
     10410  0x089c   ExposureGainCustom                   rational64s
     10411  0x089d   AnalogISOTable                       rational64u[3]
     10412  0x089e   AnalogCaptureISO                     int32u
     10413  0x089f   ISOCalibrationGain                   rational64u
     10414  0x08a0   ISOCalibrationGainTable              no
     10415  0x08a1   ExposureHeadroomFactor               no
     10416  0x08ab   LinearitySplineTags                  no
     10417  0x08fc   MonitorMatrix                        rational64s[9]
     10418  0x08fd   TonScaleTable                        no
     10419  0x08fe   Gamma                                rational64u
     10420  0x08ff   LogLinTable                          no
     10421  0x0900   LinLogTable                          no
     10422  0x0901   GammaTable                           no
     10423  0x0902   LogScale                             rational64u
     10424  0x0903   BaseISO                              rational64u
     10425  0x0904   LinLogCoring                         int16u
     10426  0x0905   PatternGainConversionTable           no
     10427  0x0906   DefectCount                          no
     10428  0x0907   DefectList                           no
     10429  0x0908   DefectListPacked                     no
     10430  0x0909   ImageSpace                           int16u
     10431  0x090a   ThumbnailCompressionTable            no
     10432  0x090b   ThumbnailExpansionTable              no
     10433  0x090c   ImageCompressionTable                no
     10434  0x090d   ImageExpansionTable                  no
     10435  0x090e   EighteenPercentPoint                 no
     10436  0x090f   DefectIsoCode                        int16u
     10437  0x0910   BaseISODaylight                      rational64u
     10438  0x0911   BaseISOTungsten                      rational64u
     10439  0x0912   BaseISOFluorescent                   rational64u
     10440  0x0913   BaseISOFlash                         rational64u
     10441  0x091a   MatrixSelectThreshold                int16s
     10442  0x091b   MatrixSelectK                        rational64u
     10443  0x091c   IlluminantDetectTable                no
     10444  0x091d   RGTable                              no
     10445  0x091e   MatrixSelectThreshold1               int16s
     10446  0x091f   MatrixSelectThreshold2               int16s
     10447  0x0924   PortraitMatrix                       no
     10448  0x0925   PortraitToneScaleTable               no
     10449  0x092e   EnableSharpening                     int16u
     10450  0x092f   SharpeningKernel                     int16s[25]
     10451  0x0930   EdgeMapSlope                         int16u
     10452  0x0931   EdgeMapX1                            int16u
     10453  0x0932   EdgeMapX2                            int16u
     10454  0x0933   KernelDenominators                   int16u[3]
     10455  0x0934   EdgeMapX3                            int16u
     10456  0x0935   EdgeMapX4                            int16u
     10457  0x0936   SharpenForThumbnail                  no
     10458  0x0937   EdgeSpline                           no
     10459  0x0938   DownSampleBy2Hor                     no
     10460  0x0939   DownSampleBy2Ver                     no
     10461  0x093a   DownSampleBy4Hor                     no
     10462  0x093b   DownSampleBy4Ver                     no
     10463  0x093c   DownSampleBy3Hor                     no
     10464  0x093d   DownSampleBy3Ver                     no
     10465  0x093e   DownSampleBy6Hor                     no
     10466  0x093f   DownSampleBy6Ver                     no
     10467  0x0940   DownSampleBy2Hor3MPdcr               no
     10468  0x0941   DownSampleBy2Ver3MPdcr               no
     10469  0x0942   ThumbnailResizeRatio                 no
     10470  0x0943   AtCaptureUserCrop                    int32u[4]
     10471  0x0944   ImageResolution                      int32u
     10472  0x0945   ImageResolutionJpg                   int32u
     10473  0x094c   USMParametersLow                     no
     10474  0x094d   USMParametersMed                     no
     10475  0x094e   USMParametersHigh                    no
     10476  0x094f   USMParametersHost                    no
     10477  0x0950   EdgeSplineLow                        no
     10478  0x0951   EdgeSplineMed                        no
     10479  0x0952   EdgeSplineHigh                       no
     10480  0x0953   USMParametersHost6MP                 no
     10481  0x0954   USMParametersHost3MP                 no
     10482  0x0960   PatternImagerWidth                   int16u
     10483  0x0961   PatternImagerHeight                  int16u
     10484  0x0962   PatternAreaWidth                     int16u
     10485  0x0963   PatternAreaHeight                    int16u
     10486  0x0964   PatternCorrectionGains               no
     10487  0x0965   PatternCorrectionOffsets             no
     10488  0x0966   PatternX                             int16u
     10489  0x0967   PatternY                             int16u
     10490  0x0968   PatternCorrectionFactors             no
     10491  0x0969   PatternCorrectionFactorScale         int16u
     10492  0x096a   PatternCropRows1                     int16u
     10493  0x096b   PatternCropRows2                     int16u
     10494  0x096c   PatternCropCols1                     int16u
     10495  0x096d   PatternCropCols2                     int16u
     10496  0x096e   PixelCorrectionGains                 no
     10497  0x096f   StitchRows                           no
     10498  0x0970   StitchColumns                        no
     10499  0x0971   PixelCorrectionScale                 int16u
     10500  0x0972   PixelCorrectionOffset                int16u
     10501  0x0988   LensTableIndex                       no
     10502  0x0992   DiffTileGains602832                  no
     10503  0x0993   DiffTileGains24t852822               no
     10504  0x099c   TileGainDeterminationTable           no
     10505  0x099d   NemoBlurKernel                       no
     10506  0x099e   NemoTileSize                         no
     10507  0x099f   NemoGainFactors                      no
     10508  0x09a0   NemoDarkLimit                        no
     10509  0x09a1   NemoHighlight12Limit                 no
     10510  0x09c4   ImagerFileProductionLevel            int16u
     10511  0x09c5   ImagerFileDateCreated                int32u
     10512  0x09c6   CalibrationVersion                   string
     10513  0x09c7   ImagerFileTagsVersionStandard        int16u
     10514  0x09c8   IFCameraModel                        string
     10515  0x09c9   CalibrationHistory                   string
     10516  0x09ca   CalibrationLog                       no
     10517  0x09ce   SensorSerialNumber                   string
     10518  0x09f6   DefectConcealArtCorrectThres         no
     10519  0x09f7   SglColDCACThres1                     no
     10520  0x09f8   SglColDCACThres2                     no
     10521  0x09f9   SglColDCACTHres3                     no
     10522  0x0a01   DblColDCACThres1                     no
     10523  0x0a02   DblColDCACThres2                     no
     10524  0x0a0a   DefectConcealThresTable              no
     10525  0x0a28   MonoUniqueMatrix                     no
     10526  0x0a29   MonoMonitorMatrix                    no
     10527  0x0a2a   MonoToneScaleTable                   no
     10528  0x0a5a   OmenInitialScaling                   no
     10529  0x0a5b   OmenInitialRows                      no
     10530  0x0a5c   OmenInitialColumns                   no
     10531  0x0a5d   OmenInitialIPFStrength               int32s[4]
     10532  0x0a5e   OmenEarlyStrength                    int32s[4]
     10533  0x0a5f   OmenAutoStrength                     int32s[4]
     10534  0x0a60   OmenAtCaptureStrength                int32s[4]
     10535  0x0a61   OmenAtCaptureMode                    no
     10536  0x0a62   OmenFocalLengthLimit                 int16s
     10537  0x0a64   OmenSurfaceIndex                     int16s
     10538  0x0a65   OmenPercentToRationalLimitsRed       no
     10539  0x0a66   OmenPercentToRationalLimitsGoR       no
     10540  0x0a67   OmenPercentToRationalLimitsBlue      no
     10541  0x0a68   OmenPercentToRationalLimitsGoB       no
     10542  0x0a6e   OmenEarlyGoBSurface                  no
     10543  0x0a6f   OmenEarlyGoBRows                     no
     10544  0x0a70   OmenEarlyGoBColumns                  no
     10545  0x0a73   OmenSmoothingKernel                  no
     10546  0x0a74   OmenGradientOffset                   no
     10547  0x0a75   OmenGradientKernel                   no
     10548  0x0a76   OmenGradientKernelTaps               no
     10549  0x0a77   OmenRatioClipFactors                 no
     10550  0x0a78   OmenRatioExclusionFactors            no
     10551  0x0a79   OmenGradientExclusionLimits          no
     10552  0x0a7a   OmenROICoordinates                   no
     10553  0x0a7b   OmenROICoefficients                  no
     10554  0x0a7c   OmenRangeWeighting                   no
     10555  0x0a7d   OmenMeanToStrength                   no
     10556  0x0bb8   FactoryWhiteGainsDaylight            no
     10557  0x0bb9   FactoryWhiteOffsetsDaylight          no
     10558  0x0bba   DacGainsCoarse                       no
     10559  0x0bbb   DacGainsFine                         no
     10560  0x0bbc   DigitalExposureGains                 no
     10561  0x0bbd   DigitalExposureBiases                no
     10562  0x0bbe   BlackClamp                           no
     10563  0x0bbf   ChannelCoarseGainAdjust              no
     10564  0x0bc0   BlackClampOffset                     no
     10565  0x0bf4   DMPixelThresholdFactor               no
     10566  0x0bf5   DMWindowThresholdFactor              no
     10567  0x0bf6   DMTrimFraction                       no
     10568  0x0bf7   DMSmoothRejThresh                    no
     10569  0x0bf8   DMFillRejThresh                      no
     10570  0x0bf9   VMWsize                              no
     10571  0x0bfa   DMErodeRadius                        no
     10572  0x0bfb   DMNumPatches                         no
     10573  0x0bfc   DMNoiseScale                         no
     10574  0x0bfe   BrightDefectThreshold                no
     10575  0x0bff   BrightDefectIntegrationMS            no
     10576  0x0c00   BrightDefectIsoCode                  no
     10577  0x0c03   TopDarkRow1                          no
     10578  0x0c04   TopDarkRow2                          no
     10579  0x0c05   BottomDarkRow1                       no
     10580  0x0c06   BottomDarkRow2                       no
     10581  0x0c07   LeftDarkCol1                         no
     10582  0x0c08   LeftDarkCol2                         no
     10583  0x0c09   RightDarkCol1                        no
     10584  0x0c0a   RightDarkCol2                        no
     10585  0x0c0b   HMPixThresh                          no
     10586  0x0c0c   HMColThresh                          no
     10587  0x0c0d   HMWsize                              no
     10588  0x0c0e   HMColRejThresh                       no
     10589  0x0c0f   VMPixThresh                          no
     10590  0x0c10   VMColThresh                          no
     10591  0x0c11   VMNbands                             no
     10592  0x0c12   VMColDropThresh                      no
     10593  0x0c13   VMPatchResLimit                      no
     10594  0x0c14   MapScale                             no
     10595  0x0c1c   Klut                                 no
     10596  0x0c1d   RimNonlinearity                      no
     10597  0x0c1e   InverseRimNonlinearity               no
     10598  0x0c1f   RembrandtToneScale                   no
     10599  0x0c20   RimToNifColorTransform               no
     10600  0x0c21   RimToNifScaleFactor                  no
     10601  0x0c22   NifNonlinearity                      no
     10602  0x0c23   SBALogTransform                      no
     10603  0x0c24   InverseSBALogTransform               no
     10604  0x0c25   SBABlack                             int16u
     10605  0x0c26   SBAGray                              int16u
     10606  0x0c27   SBAWhite                             int16u
     10607  0x0c28   GaussianWeights                      no
     10608  0x0c29   SfsBoundary                          no
     10609  0x0c2a   CoringTableBest                      no
     10610  0x0c2b   CoringTableBetter                    no
     10611  0x0c2c   CoringTableGood                      no
     10612  0x0c2d   ExposureReferenceGain                no
     10613  0x0c2e   ExposureReferenceOffset              no
     10614  0x0c2f   SBARedBalanceLut                     no
     10615  0x0c30   SBAGreenBalanceLut                   no
     10616  0x0c31   SBABlueBalanceLut                    no
     10617  0x0c32   SBANeutralBAL                        int32s
     10618  0x0c33   SBAGreenMagentaBAL                   int32s
     10619  0x0c34   SBAIlluminantBAL                     int32s
     10620  0x0c35   SBAAnalysisComplete                  int8u
     10621  0x0c36   JPEGQTableBest                       no
     10622  0x0c37   JPEGQTableBetter                     no
     10623  0x0c38   JPEGQTableGood                       no
     10624  0x0c39   RembrandtPortraitToneScale           no
     10625  0x0c3a   RembrandtConsumerToneScale           no
     10626  0x0c3b   CFAGreenThreshold1                   no
     10627  0x0c3c   CFAGreenThreshold2                   no
     10628  0x0c3d   QTableLarge50Pct                     no
     10629  0x0c3e   QTableLarge67Pct                     no
     10630  0x0c3f   QTableLarge100Pct                    no
     10631  0x0c40   QTableMedium50Pct                    no
     10632  0x0c41   QTableMedium67Pct                    no
     10633  0x0c42   QTableMedium100Pct                   no
     10634  0x0c43   QTableSmall50Pct                     no
     10635  0x0c44   QTableSmall67Pct                     no
     10636  0x0c45   QTableSmall100Pct                    no
     10637  0x0c46   SBAHighGray                          int16u
     10638  0x0c47   SBALowGray                           int16u
     10639  0x0c48   CaptureLook                          int16u
     10640  0x0c49   SBAIllOffset                         int16s
     10641  0x0c4a   SBAGmOffset                          int16s
     10642  0x0c4b   NifNonlinearity12Bit                 no
     10643  0x0c4c   SharpeningOn                         no
     10644  0x0c4d   NifNonlinearity16Bit                 no
     10645  0x0c4e   RawHistogram                         no
     10646  0x0c4f   RawCFAComponentAverages              no
     10647  0x0c50   DisableFlagsPresent                  no
     10648  0x0c51   DelayCols                            no
     10649  0x0c52   DummyColsLeft                        no
     10650  0x0c53   TrashColsRight                       no
     10651  0x0c54   BlackColsRight                       no
     10652  0x0c55   DummyColsRight                       no
     10653  0x0c56   OverClockColsRight                   no
     10654  0x0c57   UnusedBlackRowsTopOut                no
     10655  0x0c58   TrashRowsBottom                      no
     10656  0x0c59   BlackRowsBottom                      no
     10657  0x0c5a   OverClockRowsBottom                  no
     10658  0x0c5b   BlackColsLeft                        no
     10659  0x0c5c   BlackRowsTop                         no
     10660  0x0c5d   PartialActiveColsLeft                no
     10661  0x0c5e   PartialActiveColsRight               no
     10662  0x0c5f   PartialActiveRowsTop                 no
     10663  0x0c60   PartialActiveRowsBottom              no
     10664  0x0c61   ProcessBorderColsLeft                int16u
     10665  0x0c62   ProcessBorderColsRight               int16u
     10666  0x0c63   ProcessBorderRowsTop                 int16u
     10667  0x0c64   ProcessBorderRowsBottom              int16u
     10668  0x0c65   ActiveCols                           no
     10669  0x0c66   ActiveRows                           no
     10670  0x0c67   FirstLines                           no
     10671  0x0c68   UnusedBlackRowsTopIn                 no
     10672  0x0c69   UnusedBlackRowsBottomIn              no
     10673  0x0c6a   UnusedBlackRowsBottomOut             no
     10674  0x0c6b   UnusedBlackColsLeftOut               no
     10675  0x0c6c   UnusedBlackColsLeftIn                no
     10676  0x0c6d   UnusedBlackColsRightIn               no
     10677  0x0c6e   UnusedBlackColsRightOut              no
     10678  0x0c6f   CFAOffsetRows                        int32u
     10679  0x0c70   ShiftCols                            int16s
     10680  0x0c71   CFAOffsetCols                        int32u
     10681  0x0c76   DarkMapScale                         no
     10682  0x0c77   HMapHandling                         no
     10683  0x0c78   VMapHandling                         no
     10684  0x0c79   DarkThreshold                        no
     10685  0x0c7a   DMDitherMatrix                       int16u
     10686  0x0c7b   DMDitherMatrixWidth                  int16u
     10687  0x0c7c   DMDitherMatrixHeight                 int16u
     10688  0x0c7d   MaxPixelValueThreshold               int16u
     10689  0x0c7e   HoleFillDeltaThreshold               int16u
     10690  0x0c7f   DarkPedestal                         int16u
     10691  0x0c80   ImageProcessingFileTagsVersionNumber int16u
     10692  0x0c81   ImageProcessingFileDateCreated       string
     10693  0x0c82   DoublingMicrovolts                   int32s
     10694  0x0c83   DarkFrameShortExposure               int32u
     10695  0x0c84   DarkFrameLongExposure                int32u
     10696  0x0c85   DarkFrameCountFactor                 rational64u
     10697  0x0c88   HoleFillDarkDeltaThreshold           int16u
     10698  0x0c89   FarkleWhiteThreshold                 no
     10699  0x0c8a   ColumnResetOffsets                   no
     10700  0x0c8b   ColumnGainFactors                    no
     10701  0x0c8c   Channel0LagKernel                    no
     10702  0x0c8d   Channel1LagKernel                    no
     10703  0x0c8e   Channel2LagKernel                    no
     10704  0x0c8f   Channel3LagKernel                    no
     10705  0x0c90   BluegrassTable                       no
     10706  0x0c91   BluegrassScale1                      no
     10707  0x0c92   BluegrassScale2                      no
     10708  0x0ce4   FinishedFileProcessingRequest        no
     10709  0x0ce5   FirmwareVersion                      string
     10710  0x0ce6   HostSoftwareExportVersion            no
     10711  0x0ce7   HostSoftwareRendering                int32u
     10712  0x0dac   DCS3XXProcessingInfoIFD              no
     10713  0x0dad   DCS3XXProcessingInfo                 no
     10714  0x0dae   IPAVersion                           int32u
     10715  0x0db6   FinishIPAVersion                     no
     10716  0x0db7   FinishIPFVersion                     no
     10717  0x0db8   FinishFileType                       int32u
     10718  0x0db9   FinishResolution                     int32u
     10719  0x0dba   FinishNoise                          int32u
     10720  0x0dbb   FinishSharpening                     int32u
     10721  0x0dbc   FinishLook                           int32u
     10722  0x0dbd   FinishExposure                       int32u
     10723  0x0e0b   SigmaScalingFactorLowRes             rational64u
     10724  0x0e0c   SigmaScalingFactorCamera             rational64u
     10725  0x0e0d   SigmaImpulseParameters               int16u[n]
     10726  0x0e0e   SigmaNoiseThreshTableV2              no
     10727  0x0e0f   SigmaSizeTable                       int16u[n]
     10728  0x0e10   DacGainsCoarseAdjPreIF41             no
     10729  0x0e11   SigmaNoiseFilterCalTableV1           no
     10730  0x0e12   SigmaNoiseFilterTableV1              no
     10731  0x0e13   Lin12ToKlut8                         no
     10732  0x0e14   SigmaNoiseFilterTableV1Version       no
     10733  0x0e15   Lin12ToKlut12                        no
     10734  0x0e16   Klut12ToLin12                        no
     10735  0x0e17   NifNonlinearity12To16                no
     10736  0x0e18   SBALog12Transform                    no
     10737  0x0e19   InverseSBALog12Transform             no
     10738  0x0e1a   ToneScale0                           no
     10739  0x0e1b   ToneScale1                           no
     10740  0x0e1c   ToneScale2                           no
     10741  0x0e1d   ToneScale3                           no
     10742  0x0e1e   ToneScale4                           no
     10743  0x0e1f   ToneScale5                           no
     10744  0x0e20   ToneScale6                           no
     10745  0x0e21   ToneScale7                           no
     10746  0x0e22   ToneScale8                           no
     10747  0x0e23   ToneScale9                           no
     10748  0x0e24   DayMat0                              no
     10749  0x0e25   DayMat1                              no
     10750  0x0e26   DayMat2                              no
     10751  0x0e27   DayMat3                              no
     10752  0x0e28   DayMat4                              no
     10753  0x0e29   DayMat5                              no
     10754  0x0e2a   DayMat6                              no
     10755  0x0e2b   DayMat7                              no
     10756  0x0e2c   DayMat8                              no
     10757  0x0e2d   DayMat9                              no
     10758  0x0e2e   TungMat0                             no
     10759  0x0e2f   TungMat1                             no
     10760  0x0e30   TungMat2                             no
     10761  0x0e31   TungMat3                             no
     10762  0x0e32   TungMat4                             no
     10763  0x0e33   TungMat5                             no
     10764  0x0e34   TungMat6                             no
     10765  0x0e35   TungMat7                             no
     10766  0x0e36   TungMat8                             no
     10767  0x0e37   TungMat9                             no
     10768  0x0e38   FluorMat0                            no
     10769  0x0e39   FluorMat1                            no
     10770  0x0e3a   FluorMat2                            no
     10771  0x0e3b   FluorMat3                            no
     10772  0x0e3c   FluorMat4                            no
     10773  0x0e3d   FluorMat5                            no
     10774  0x0e3e   FluorMat6                            no
     10775  0x0e3f   FluorMat7                            no
     10776  0x0e40   FluorMat8                            no
     10777  0x0e41   FluorMat9                            no
     10778  0x0e42   FlashMat0                            no
     10779  0x0e43   FlashMat1                            no
     10780  0x0e44   FlashMat2                            no
     10781  0x0e45   FlashMat3                            no
     10782  0x0e46   FlashMat4                            no
     10783  0x0e47   FlashMat5                            no
     10784  0x0e48   FlashMat6                            no
     10785  0x0e49   FlashMat7                            no
     10786  0x0e4a   FlashMat8                            no
     10787  0x0e4b   FlashMat9                            no
     10788  0x0e4c   KodakLook                            string
     10789  0x0e4d   IPFCameraModel                       string
     10790  0x0e4e   AH2GreenInterpolationThreshold       int16u
     10791  0x0e4f   ResamplingKernelDenominators067      int16u[3]
     10792  0x0e50   ResamplingKernelDenominators050      int16u[3]
     10793  0x0e51   ResamplingKernelDenominators100      int16u[3]
     10794  0x0e56   LookMat0                             no
     10795  0x0e57   LookMat1                             no
     10796  0x0e58   LookMat2                             no
     10797  0x0e59   LookMat3                             no
     10798  0x0e5a   LookMat4                             no
     10799  0x0e5b   LookMat5                             no
     10800  0x0e5c   LookMat6                             no
     10801  0x0e5d   LookMat7                             no
     10802  0x0e5e   LookMat8                             no
     10803  0x0e5f   LookMat9                             no
     10804  0x0e60   CFAInterpolationAlgorithm            int16u
     10805  0x0e61   CFAInterpolationMetric               int16u
     10806  0x0e62   CFAZipperFixThreshold                int16u
     10807  0x0e63   NoiseReductionParametersKhufuRGB     int16u[9]
     10808  0x0e64   NoiseReductionParametersKhufu6MP     int16u[9]
     10809  0x0e65   NoiseReductionParametersKhufu3MP     int16u[9]
     10810  0x0e6a   ChromaNoiseHighFThresh               int32u[2]
     10811  0x0e6b   ChromaNoiseLowFThresh                int32u[2]
     10812  0x0e6c   ChromaNoiseEdgeMapThresh             int32u
     10813  0x0e6d   ChromaNoiseColorSpace                int32u
     10814  0x0e6e   EnableChromaNoiseReduction           int16u
     10815  0x0e6f   NoiseReductionParametersHostRGB      int16u[9]
     10816  0x0e70   NoiseReductionParametersHost6MP      int16u[9]
     10817  0x0e71   NoiseReductionParametersHost3MP      int16u[9]
     10818  0x0e72   NoiseReductionParametersCamera       int16u[6]
     10819  0x0e73   NoiseReductionParametersAtCapture    int16u[6]
     10820  0x0e74   LCDMatrix                            rational64s[9]
     10821  0x0e75   LCDMatrixChickFix                    rational64s[9]
     10822  0x0e76   LCDMatrixMarvin                      rational64s[9]
     10823  0x0e7c   LCDGammaTableChickFix                no
     10824  0x0e7d   LCDGammaTableMarvin                  no
     10825  0x0e7e   LCDGammaTable                        no
     10826  0x0e7f   LCDSharpeningF1                      no
     10827  0x0e80   LCDSharpeningF2                      no
     10828  0x0e81   LCDSharpeningF3                      no
     10829  0x0e82   LCDSharpeningF4                      no
     10830  0x0e83   LCDEdgeMapX1                         no
     10831  0x0e84   LCDEdgeMapX2                         no
     10832  0x0e85   LCDEdgeMapX3                         no
     10833  0x0e86   LCDEdgeMapX4                         no
     10834  0x0e87   LCDEdgeMapSlope                      no
     10835  0x0e88   YCrCbMatrix                          no
     10836  0x0e89   LCDEdgeSpline                        no
     10837  0x0e92   Fac18Per                             int16u
     10838  0x0e93   Fac170Per                            int16u
     10839  0x0e94   Fac100Per                            int16u
     10840  0x0e9b   ExtraTickLocations                   no
     10841  0x0e9c   RGBtoeV0                             no
     10842  0x0e9d   RGBtoeV1                             no
     10843  0x0e9e   RGBtoeV2                             no
     10844  0x0e9f   RGBtoeV3                             no
     10845  0x0ea0   RGBtoeV4                             no
     10846  0x0ea1   RGBtoeV5                             no
     10847  0x0ea2   RGBtoeV6                             no
     10848  0x0ea3   RGBtoeV7                             no
     10849  0x0ea4   RGBtoeV8                             no
     10850  0x0ea5   RGBtoeV9                             no
     10851  0x0ea6   LCDHistLUT0                          no
     10852  0x0ea7   LCDHistLUT1                          no
     10853  0x0ea8   LCDHistLUT2                          no
     10854  0x0ea9   LCDHistLUT3                          no
     10855  0x0eaa   LCDHistLUT4                          no
     10856  0x0eab   LCDHistLUT5                          no
     10857  0x0eac   LCDHistLUT6                          no
     10858  0x0ead   LCDHistLUT7                          no
     10859  0x0eae   LCDHistLUT8                          no
     10860  0x0eaf   LCDHistLUT9                          no
     10861  0x0eb0   LCDLinearClipValue                   no
     10862  0x0ece   LCDStepYvalues                       no
     10863  0x0ecf   LCDStepYvaluesChickFix               no
     10864  0x0ed0   LCDStepYvaluesMarvin                 no
     10865  0x0ed8   InterpolationCoefficients            no
     10866  0x0ed9   InterpolationCoefficients6MP         no
     10867  0x0eda   InterpolationCoefficients3MP         no
     10868  0x0f00   NoiseReductionParametersHostNormal   no
     10869  0x0f01   NoiseReductionParametersHostStrong   no
     10870  0x0f02   NoiseReductionParametersHostLow      no
     10871  0x0f0a   MariahTextureThreshold               int16u
     10872  0x0f0b   MariahMapLoThreshold                 int16u
     10873  0x0f0c   MariahMapHiThreshold                 int16u
     10874  0x0f0d   MariahChromaBlurSize                 int16u
     10875  0x0f0e   MariahSigmaThreshold                 int16u
     10876  0x0f0f   MariahThresholds                     no
     10877  0x0f10   MariahThresholdsNormal               no
     10878  0x0f11   MariahThresholdsStrong               no
     10879  0x0f12   MariahThresholdsLow                  no
     10880  0x0f14   KhufuLinearRedMixingCoefficient      no
     10881  0x0f15   KhufuLinearGreenMixingCoefficient    no
     10882  0x0f16   KhufuLinearBlueMixingCoefficient     no
     10883  0x0f17   KhufuUSpaceC2MixingCoefficient       no
     10884  0x0f18   KhufuSigmaGaussianWeights            no
     10885  0x0f19   KhufuSigmaScalingFactors6MP          no
     10886  0x0f1a   KhufuSigmaScalingFactors3MP          no
     10887  0x0f1b   KhufuSigmaScalingFactors14MP         no
     10888  0x0f32   KhufuI0Thresholds                    no
     10889  0x0f33   KhufuI1Thresholds                    no
     10890  0x0f34   KhufuI2Thresholds                    no
     10891  0x0f35   KhufuI3Thresholds                    no
     10892  0x0f36   KhufuI4Thresholds                    no
     10893  0x0f37   KhufuI5Thresholds                    no
     10894  0x0f3c   CondadoDayBVThresh                   int16u
     10895  0x0f3d   CondadoNeuRange                      int16u
     10896  0x0f3e   CondadoBVFactor                      int16s
     10897  0x0f3f   CondadoIllFactor                     int16s
     10898  0x0f40   CondadoTunThresh                     int16s
     10899  0x0f41   CondadoFluThresh                     int16s
     10900  0x0f42   CondadoDayOffsets                    int16s[2]
     10901  0x0f43   CondadoTunOffsets                    int16s[2]
     10902  0x0f44   CondadoFluOffsets                    int16s[2]
     10903  0x0f5a   ERIMMToCRGB0Spline                   no
     10904  0x0f5b   ERIMMToCRGB1Spline                   no
     10905  0x0f5c   ERIMMToCRGB2Spline                   no
     10906  0x0f5d   ERIMMToCRGB3Spline                   no
     10907  0x0f5e   ERIMMToCRGB4Spline                   no
     10908  0x0f5f   ERIMMToCRGB5Spline                   no
     10909  0x0f60   ERIMMToCRGB6Spline                   no
     10910  0x0f61   ERIMMToCRGB7Spline                   no
     10911  0x0f62   ERIMMToCRGB8Spline                   no
     10912  0x0f63   ERIMMToCRGB9Spline                   no
     10913  0x0f64   CRGBToERIMM0Spline                   no
     10914  0x0f65   CRGBToERIMM1Spline                   no
     10915  0x0f66   CRGBToERIMM2Spline                   no
     10916  0x0f67   CRGBToERIMM3Spline                   no
     10917  0x0f68   CRGBToERIMM4Spline                   no
     10918  0x0f69   CRGBToERIMM5Spline                   no
     10919  0x0f6a   CRGBToERIMM6Spline                   no
     10920  0x0f6b   CRGBToERIMM7Spline                   no
     10921  0x0f6c   CRGBToERIMM8Spline                   no
     10922  0x0f6d   CRGBToERIMM9Spline                   no
     10923  0x0f6e   ERIMMNonLinearitySpline              no
     10924  0x0f6f   Delta12To8Spline                     no
     10925  0x0f70   Delta8To12Spline                     no
     10926  0x0f71   InverseMonitorMatrix                 no
     10927  0x0f72   NifNonlinearityExt                   no
     10928  0x0f73   InvNifNonLinearity                   no
     10929  0x0f74   RIMM13ToERIMM12Spline                no
     10930  0x0f78   ToneScale0Spline                     no
     10931  0x0f79   ToneScale1Spline                     no
     10932  0x0f7a   ToneScale2Spline                     no
     10933  0x0f7b   ToneScale3Spline                     no
     10934  0x0f7c   ToneScale4Spline                     no
     10935  0x0f7d   ToneScale5Spline                     no
     10936  0x0f7e   ToneScale6Spline                     no
     10937  0x0f7f   ToneScale7Spline                     no
     10938  0x0f80   ToneScale8Spline                     no
     10939  0x0f81   ToneScale9Spline                     no
     10940  0x0f82   ERIMMToneScale0Spline                no
     10941  0x0f83   ERIMMToneScale1Spline                no
     10942  0x0f84   ERIMMToneScale2Spline                no
     10943  0x0f85   ERIMMToneScale3Spline                no
     10944  0x0f86   ERIMMToneScale4Spline                no
     10945  0x0f87   ERIMMToneScale5Spline                no
     10946  0x0f88   ERIMMToneScale6Spline                no
     10947  0x0f89   ERIMMToneScale7Spline                no
     10948  0x0f8a   ERIMMToneScale8Spline                no
     10949  0x0f8b   ERIMMToneScale9Spline                no
     10950  0x0f8c   RIMMToCRGB0Spline                    no
     10951  0x0f8d   RIMMToCRGB1Spline                    no
     10952  0x0f8e   RIMMToCRGB2Spline                    no
     10953  0x0f8f   RIMMToCRGB3Spline                    no
     10954  0x0f90   RIMMToCRGB4Spline                    no
     10955  0x0f91   RIMMToCRGB5Spline                    no
     10956  0x0f92   RIMMToCRGB6Spline                    no
     10957  0x0f93   RIMMToCRGB7Spline                    no
     10958  0x0f94   RIMMToCRGB8Spline                    no
     10959  0x0f95   RIMMToCRGB9Spline                    no
     10960  0x0fa0   QTableLarge25Pct                     no
     10961  0x0fa1   QTableMedium25Pct                    no
     10962  0x0fa2   QTableSmall25Pct                     no
     10963  0x1130   NoiseReductionKernel                 no
     10964  0x1388   UserMetaData                         no
     10965  0x1389   InputProfile                         undef
     10966  0x138a   KodakLookProfile                     undef
     10967  0x138b   OutputProfile                        undef
     10968  0x1390   SourceProfilePrefix                  string
     10969  0x1391   ToneCurveProfileName                 string
     10970  0x1392   InputProfile                         ICC_Profile
     10971  0x1393   ProcessParametersV2                  no
     10972  0x1394   ReservedBlob2                        no
     10973  0x1395   ReservedBlob3                        no
     10974  0x1396   ReservedBlob4                        no
     10975  0x1397   ReservedBlob5                        no
     10976  0x1398   ReservedBlob6                        no
     10977  0x1399   ReservedBlob7                        no
     10978  0x139a   ReservedBlob8                        no
     10979  0x139b   ReservedBlob9                        no
     10980  0x1770   ScriptVersion                        int32u
     10981  0x177a   ImagerTimingData                     no
     10982  0x1784   ISO                                  int32u
     10983  0x17a2   Scav11Cols                           no
     10984  0x17a3   Scav12Cols                           no
     10985  0x17a4   Scav21Cols                           no
     10986  0x17a5   Scav22Cols                           no
     10987  0x17a6   ActiveCTEMonitor1Cols                no
     10988  0x17a7   ActiveCTEMonitor2Cols                no
     10989  0x17a8   ActiveCTEMonitorRows                 no
     10990  0x17a9   ActiveBuf1Cols                       no
     10991  0x17aa   ActiveBuf2Cols                       no
     10992  0x17ab   ActiveBuf1Rows                       no
     10993  0x17ac   ActiveBuf2Rows                       no
     10994  0x17c0   HRNoiseLines                         no
     10995  0x17c1   RNoiseLines                          no
     10996  0x17c2   ANoiseLines                          no
     10997  0x17d4   ImagerCols                           int16u
     10998  0x17de   ImagerRows                           int16u
     10999  0x17e8   PartialActiveCols1                   int32u
     11000  0x17f2   PartialActiveCols2                   int32u
     11001  0x17fc   PartialActiveRows1                   int32u
     11002  0x1806   PartialActiveRows2                   int32u
     11003  0x1810   ElectricalBlackColumns               int32u
     11004  0x181a   ResetBlackSegRows                    int32u
     11005  0x1838   CaptureWidthNormal                   int32u
     11006  0x1839   CaptureHeightNormal                  int32u
     11007  0x183a   CaptureWidthResetBlackSegNormal      no
     11008  0x183b   CaptureHeightResetBlackSegNormal     no
     11009  0x183c   DarkRefOffsetNormal                  no
     11010  0x1842   CaptureWidthTest                     int32u
     11011  0x1843   CaptureHeightTest                    no
     11012  0x1844   CaptureWidthResetBlackSegTest        no
     11013  0x1845   CaptureHeightResetBlackSegTest       no
     11014  0x1846   DarkRefOffsetTest                    no
     11015  0x184c   ImageSegmentStartLine                int32u
     11016  0x184d   ImageSegmentLines                    int32u
     11017  0x184e   SkipLineTime                         int32u
     11018  0x1860   FastResetLineTime                    int32u
     11019  0x186a   NormalLineTime                       int32u
     11020  0x1874   MinIntegrationRows                   int32u
     11021  0x187e   PreReadFastResetCount                int32u
     11022  0x1888   TransferTimeNormal                   int32u
     11023  0x1889   TransferTimeTest                     int32u
     11024  0x188a   QuietTime                            int32u
     11025  0x189c   OverClockCols                        int16u
     11026  0x18a6   H2ResetBlackPixels                   int32u
     11027  0x18b0   H3ResetBlackPixels                   int32u
     11028  0x18ba   BlackAcquireRows                     int32u
     11029  0x18c4   OverClockRows                        int16u
     11030  0x18ce   H3ResetBlackColumns                  int32u
     11031  0x18d8   DarkBlackSegRows                     int32u
     11032  0x1900   CrossbarEnable                       no
     11033  0x1901   FifoenOnePixelDelay                  int32u
     11034  0x1902   ReadoutTypeRequested                 int32u
     11035  0x1903   ReadoutTypeActual                    int32u
     11036  0x190a   OffsetDacValue                       int32u
     11037  0x1914   TempAmpGainX100                      int32u
     11038  0x191e   VarrayDacNominalValues               int32u[3]
     11039  0x1928   VddimDacNominalValues                no
     11040  0x1964   C14Configuration                     int32u
     11041  0x196e   TDA1Offset                           int32u[3]
     11042  0x196f   TDA1Bandwidth                        int32u
     11043  0x1970   TDA1Gain                             int32u[3]
     11044  0x1971   TDA1EdgePolarity                     int32u
     11045  0x1978   TDA2Offset                           int32u[3]
     11046  0x1979   TDA2Bandwidth                        int32u
     11047  0x197a   TDA2Gain                             int32u[3]
     11048  0x197b   TDA2EdgePolarity                     int32u
     11049  0x1982   TDA3Offset                           int32u[3]
     11050  0x1983   TDA3Bandwidth                        int32u
     11051  0x1984   TDA3Gain                             int32u[3]
     11052  0x1985   TDA3EdgePolarity                     int32u
     11053  0x198c   TDA4Offset                           int32u[3]
     11054  0x198d   TDA4Bandwidth                        int32u
     11055  0x198e   TDA4Gain                             int32u[3]
     11056  0x198f   TDA4EdgePolarity                     int32u
     11057  0xfde8   ComLenBlkSize                        int16u
     11058
     11059=head3 Kodak TextualInfo Tags
     11060
     11061Below is a list of tags which have been observed in the Kodak TextualInfo
     11062data, however ExifTool will extract information from any tags found here.
     11063
     11064  Tag ID                Tag Name                Writable
     11065  ------                --------                --------
     11066  'AF Function'         AFMode                  no
     11067  'Actual Compensation' ActualCompensation      no
     11068  'Aperture'            Aperture                no
     11069  'Auto Bracket'        AutoBracket             no
     11070  'Brightness Value'    BrightnessValue         no
     11071  'Camera'              CameraModel             no
     11072  'Camera body'         CameraBody              no
     11073  'Compensation'        ExposureCompensation    no
     11074  'Date'                Date                    no
     11075  'Exposure Bias'       ExposureBias            no
     11076  'Exposure Mode'       ExposureMode            no
     11077  'Firmware Version'    FirmwareVersion         no
     11078  'Flash Compensation'  FlashExposureComp       no
     11079  'Flash Fired'         FlashFired              no
     11080  'Flash Sync Mode'     FlashSyncMode           no
     11081  'Focal Length'        FocalLength             no
     11082  'Height'              KodakImageHeight        no
     11083  'ISO'                 ISO                     no
     11084  'ISO Speed'           ISO                     no
     11085  'Image Number'        ImageNumber             no
     11086  'Lens'                Lens                    no
     11087  'Max Aperture'        MaxAperture             no
     11088  'Meter Mode'          MeterMode               no
     11089  'Min Aperture'        MinAperture             no
     11090  'Popup Flash'         PopupFlash              no
     11091  'Serial Number'       SerialNumber            no
     11092  'Shooting Mode'       ShootingMode            no
     11093  'Shutter'             ShutterSpeed            no
     11094  'Temperature'         Temperature             no
     11095  'Time'                Time                    no
     11096  'White balance'       WhiteBalance            no
     11097  'Width'               KodakImageWidth         no
     11098  '_other_info'         OtherInfo               no
     11099
     11100=head3 Kodak Processing Tags
     11101
     11102  Index2   Tag Name                             Writable
     11103  ------   --------                             --------
     11104     20    WB_RGBLevels                         no
     11105
    570211106=head3 Kodak Type2 Tags
    570311107
     
    570611110and Minolta EX1500Z.
    570711111
    5708    Index   Tag Name                             Writable
    5709    -----   --------                             --------
     11112  Index1   Tag Name                             Writable
     11113  ------   --------                             --------
    571011114      8    KodakMaker                           string[32]
    571111115     40    KodakModel                           string[32]
     
    571711121These tags are used by the DC240, DC280, DC3400 and DC5000.
    571811122
    5719    Index   Tag Name                             Writable
    5720    -----   --------                             --------
     11123  Index1   Tag Name                             Writable
     11124  ------   --------                             --------
    572111125     12    YearCreated                          int16u
    572211126     14    MonthDayCreated                      int8u[2]
     
    573211136These tags are used by the DC200 and DC215.
    573311137
    5734    Index   Tag Name                             Writable
    5735    -----   --------                             --------
     11138  Index1   Tag Name                             Writable
     11139  ------   --------                             --------
    573611140     32    OriginalFileName                     string[12]
    573711141
     
    574111145and CX6230.
    574211146
    5743    Index   Tag Name                             Writable
    5744    -----   --------                             --------
     11147  Index1   Tag Name                             Writable
     11148  ------   --------                             --------
    574511149     20    ExposureTime                         int32u
    574611150     26    WhiteBalance                         int8u
     
    575711161These tags are used by the DX3215 and DX3700.
    575811162
    5759    Index   Tag Name                             Writable
    5760    -----   --------                             --------
     11163  Index1   Tag Name                             Writable
     11164  ------   --------                             --------
    576111165     16    ExposureTime                         int32u
    576211166     20    ISOSetting?                          int32u
     
    577611180by 8 digits.
    577711181
    5778    Index   Tag Name                             Writable
    5779    -----   --------                             --------
     11182  Index1   Tag Name                             Writable
     11183  ------   --------                             --------
    578011184      0    SerialNumber                         string[16]
    578111185
     
    583111235  0xfa54   ThumbnailWidth                       int16u
    583211236  0xfa55   ThumbnailHeight                      int16u
    5833   0xfa57   PreviewWidth                         int16u
    5834   0xfa58   PreviewHeight                        int16u
     11237  0xfa57   PreviewImageWidth                    int16u
     11238  0xfa58   PreviewImageHeight                   int16u
    583511239
    583611240=head3 Kodak SubIFD1 Tags
     
    590411308M550, as well as various cameras marketed by other manufacturers.
    590511309
    5906    Index   Tag Name                             Writable
    5907    -----   --------                             --------
     11310  Index1   Tag Name                             Writable
     11311  ------   --------                             --------
    590811312     12    FNumber                              int16u
    590911313     16    ExposureTime                         int32u
     
    591111315     52    ISO                                  int16u
    591211316     87    FirmwareVersion                      string[16]
    5913     168    SerialNumber                         string[12]
     11317    168    UnknownNumber                        no
     11318    196    UnknownNumber                        no
    591411319
    591511320=head3 Kodak Type10 Tags
     
    592611331  0x001d   FocalLength                          int32u
    592711332
     11333=head3 Kodak Type11 Tags
     11334
     11335These tags are found in models such as the PixPro S-1.  They are not
     11336writable because the inconsistency of Kodak maker notes is beginning to get
     11337on my nerves.
     11338
     11339  Tag ID   Tag Name                             Writable
     11340  ------   --------                             --------
     11341  0x0104   FirmwareVersion                      no
     11342  0x0203   PictureEffect                        no
     11343  0x0207   KodakModel                           no
     11344  0x0300   KodakMake                            no
     11345  0x0308   LensSerialNumber                     no
     11346  0x0309   LensModel                            no
     11347  0x030d   LevelMeter?                          no
     11348  0x0311   Pitch                                no
     11349  0x0312   Yaw                                  no
     11350  0x0313   Roll                                 no
     11351  0x0314   CX?                                  no
     11352  0x0315   CY?                                  no
     11353  0x0316   Rads?                                no
     11354
    592811355=head3 Kodak Unknown Tags
    592911356
    5930    Index   Tag Name                             Writable
    5931    -----   --------                             --------
     11357  Index1   Tag Name                             Writable
     11358  ------   --------                             --------
    593211359  [no tags known]
    5933 
    5934 =head3 Kodak IFD Tags
    5935 
    5936 These tags are found in a separate IFD of JPEG, TIFF, DCR and KDC images
    5937 from some older Kodak models such as the DC50, DC120, DCS760C, DCS Pro 14N,
    5938 14nx, SLR/n, Pro Back and Canon EOS D2000.
    5939 
    5940   Tag ID   Tag Name                             Writable
    5941   ------   --------                             --------
    5942   0x0001   UnknownEV?                           rational64u
    5943   0x0003   ExposureValue                        rational64u
    5944   0x03e9   OriginalFileName                     string
    5945   0x03eb   SensorLeftBorder                     N
    5946   0x03ec   SensorTopBorder                      N
    5947   0x03ed   SensorImageWidth                     N
    5948   0x03ee   SensorImageHeight                    N
    5949   0x03f1   TextualInfo                          Kodak TextualInfo
    5950   0x03fc   WhiteBalance                         int16u
    5951   0x03fd   Processing                           Kodak Processing
    5952   0x0401   Time                                 string
    5953   0x0414   NCDFileInfo                          string
    5954   0x0846   ColorTemperature                     int16u
    5955   0x0852   WB_RGBMul0                           N
    5956   0x0853   WB_RGBMul1                           N
    5957   0x0854   WB_RGBMul2                           N
    5958   0x0855   WB_RGBMul3                           N
    5959   0x085c   WB_RGBCoeffs0                        N
    5960   0x085d   WB_RGBCoeffs1                        N
    5961   0x085e   WB_RGBCoeffs2                        N
    5962   0x085f   WB_RGBCoeffs3                        N
    5963   0x0ce5   FirmwareVersion                      string
    5964   0x1391   ToneCurveFileName                    string
    5965   0x1784   ISO                                  int32u
    5966 
    5967 =head3 Kodak TextualInfo Tags
    5968 
    5969 Below is a list of tags which have been observed in the Kodak TextualInfo
    5970 data, however ExifTool will extract information from any tags found here.
    5971 
    5972   Tag ID                Tag Name                Writable
    5973   ------                --------                --------
    5974   'AF Function'         AFMode                  N
    5975   'Actual Compensation' ActualCompensation      N
    5976   'Aperture'            Aperture                N
    5977   'Auto Bracket'        AutoBracket             N
    5978   'Brightness Value'    BrightnessValue         N
    5979   'Camera'              CameraModel             N
    5980   'Camera body'         CameraBody              N
    5981   'Compensation'        ExposureCompensation    N
    5982   'Date'                Date                    N
    5983   'Exposure Bias'       ExposureBias            N
    5984   'Exposure Mode'       ExposureMode            N
    5985   'Firmware Version'    FirmwareVersion         N
    5986   'Flash Compensation'  FlashExposureComp       N
    5987   'Flash Fired'         FlashFired              N
    5988   'Flash Sync Mode'     FlashSyncMode           N
    5989   'Focal Length'        FocalLength             N
    5990   'Height'              KodakImageHeight        N
    5991   'ISO'                 ISO                     N
    5992   'ISO Speed'           ISO                     N
    5993   'Image Number'        ImageNumber             N
    5994   'Max Aperture'        MaxAperture             N
    5995   'Meter Mode'          MeterMode               N
    5996   'Min Aperture'        MinAperture             N
    5997   'Popup Flash'         PopupFlash              N
    5998   'Serial Number'       SerialNumber            N
    5999   'Shooting Mode'       ShootingMode            N
    6000   'Shutter'             ShutterSpeed            N
    6001   'Temperature'         Temperature             N
    6002   'Time'                Time                    N
    6003   'White balance'       WhiteBalance            N
    6004   'Width'               KodakImageWidth         N
    6005   '_other_info'         OtherInfo               N
    6006 
    6007 =head3 Kodak Processing Tags
    6008 
    6009    Index   Tag Name                             Writable
    6010    -----   --------                             --------
    6011      20    WB_RGBLevels                         N
    601211360
    601311361=head3 Kodak Meta Tags
     
    602011368  Tag ID   Tag Name                             Writable
    602111369  ------   --------                             --------
    6022   0xc350   FilmProductCode                      N
    6023   0xc351   ImageSourceEK                        N
    6024   0xc352   CaptureConditionsPAR                 N
     11370  0xc350   FilmProductCode                      no
     11371  0xc351   ImageSourceEK                        no
     11372  0xc352   CaptureConditionsPAR                 no
    602511373  0xc353   CameraOwner                          undef
    602611374  0xc354   SerialNumber                         undef
    6027   0xc355   UserSelectGroupTitle                 N
    6028   0xc356   DealerIDNumber                       N
    6029   0xc357   CaptureDeviceFID                     N
    6030   0xc358   EnvelopeNumber                       N
    6031   0xc359   FrameNumber                          N
    6032   0xc35a   FilmCategory                         N
    6033   0xc35b   FilmGencode                          N
    6034   0xc35c   ModelAndVersion                      N
    6035   0xc35d   FilmSize                             N
    6036   0xc35e   SBA_RGBShifts                        N
    6037   0xc35f   SBAInputImageColorspace              N
    6038   0xc360   SBAInputImageBitDepth                N
    6039   0xc361   SBAExposureRecord                    N
    6040   0xc362   UserAdjSBA_RGBShifts                 N
    6041   0xc363   ImageRotationStatus                  N
    6042   0xc364   RollGuidElements                     N
    6043   0xc365   MetadataNumber                       N
    6044   0xc366   EditTagArray                         N
    6045   0xc367   Magnification                        N
    6046   0xc36c   NativeXResolution                    N
    6047   0xc36d   NativeYResolution                    N
     11375  0xc355   UserSelectGroupTitle                 no
     11376  0xc356   DealerIDNumber                       no
     11377  0xc357   CaptureDeviceFID                     no
     11378  0xc358   EnvelopeNumber                       no
     11379  0xc359   FrameNumber                          no
     11380  0xc35a   FilmCategory                         no
     11381  0xc35b   FilmGencode                          no
     11382  0xc35c   ModelAndVersion                      no
     11383  0xc35d   FilmSize                             no
     11384  0xc35e   SBA_RGBShifts                        no
     11385  0xc35f   SBAInputImageColorspace              no
     11386  0xc360   SBAInputImageBitDepth                no
     11387  0xc361   SBAExposureRecord                    no
     11388  0xc362   UserAdjSBA_RGBShifts                 no
     11389  0xc363   ImageRotationStatus                  no
     11390  0xc364   RollGuidElements                     no
     11391  0xc365   MetadataNumber                       no
     11392  0xc366   EditTagArray                         no
     11393  0xc367   Magnification                        no
     11394  0xc36c   NativeXResolution                    no
     11395  0xc36d   NativeYResolution                    no
    604811396  0xc36e   KodakEffectsIFD                      Kodak SpecialEffects
    604911397  0xc36f   KodakBordersIFD                      Kodak Borders
    6050   0xc37a   NativeResolutionUnit                 N
    6051   0xc418   SourceImageDirectory                 N
    6052   0xc419   SourceImageFileName                  N
    6053   0xc41a   SourceImageVolumeName                N
    6054   0xc46c   PrintQuality                         N
    6055   0xc46e   ImagePrintStatus                     N
     11398  0xc37a   NativeResolutionUnit                 no
     11399  0xc418   SourceImageDirectory                 no
     11400  0xc419   SourceImageFileName                  no
     11401  0xc41a   SourceImageVolumeName                no
     11402  0xc46c   PrintQuality                         no
     11403  0xc46e   ImagePrintStatus                     no
    605611404
    605711405=head3 Kodak SpecialEffects Tags
     
    606211410  Tag ID   Tag Name                             Writable
    606311411  ------   --------                             --------
    6064   0x0000   DigitalEffectsVersion                N
    6065   0x0001   DigitalEffectsName                   N
    6066   0x0002   DigitalEffectsType                   N
     11412  0x0000   DigitalEffectsVersion                no
     11413  0x0001   DigitalEffectsName                   no
     11414  0x0002   DigitalEffectsType                   no
    606711415
    606811416=head3 Kodak Borders Tags
     
    607011418  Tag ID   Tag Name                             Writable
    607111419  ------   --------                             --------
    6072   0x0000   BordersVersion                       N
    6073   0x0001   BorderName                           N
    6074   0x0002   BorderID                             N
    6075   0x0003   BorderLocation                       N
    6076   0x0004   BorderType                           N
    6077   0x0008   WatermarkType                        N
     11420  0x0000   BordersVersion                       no
     11421  0x0001   BorderName                           no
     11422  0x0002   BorderID                             no
     11423  0x0003   BorderLocation                       no
     11424  0x0004   BorderType                           no
     11425  0x0008   WatermarkType                        no
    607811426
    607911427=head3 Kodak KDC_IFD Tags
     
    608611434  0xfa00   SerialNumber                         string
    608711435  0xfa0d   WhiteBalance                         int8u
    6088   0xfa25   WB_RGBLevelsAuto                     N
    6089   0xfa27   WB_RGBLevelsTungsten                 N
    6090   0xfa28   WB_RGBLevelsFluorescent              N
    6091   0xfa29   WB_RGBLevelsDaylight                 N
    6092   0xfa2a   WB_RGBLevelsShade                    N
     11436  0xfa25   WB_RGBLevelsAuto                     no
     11437  0xfa27   WB_RGBLevelsTungsten                 no
     11438  0xfa28   WB_RGBLevelsFluorescent              no
     11439  0xfa29   WB_RGBLevelsDaylight                 no
     11440  0xfa2a   WB_RGBLevelsShade                    no
     11441
     11442=head3 Kodak frea Tags
     11443
     11444Information stored in the "frea" atom of Kodak PixPro SP360 MP4 videos.
     11445
     11446  Tag ID   Tag Name                             Writable
     11447  ------   --------                             --------
     11448  'scra'   PreviewImage                         no
     11449  'thma'   ThumbnailImage                       no
     11450  'tima'   Duration                             no
     11451  'ver '   KodakVersion                         no
     11452
     11453=head3 Kodak Free Tags
     11454
     11455Information stored in the "free" atom of Kodak MP4 videos. (VERY bad form
     11456for Kodak to store useful information in an atom intended for unused space!)
     11457
     11458  Tag ID   Tag Name                             Writable
     11459  ------   --------                             --------
     11460  'AprV'   ApertureValue                        no
     11461  'BrtV'   BrightnessValue                      no
     11462  'Expc'   ExposureCompensation                 no
     11463  'Expo'   ExposureTime                         no
     11464  'FL35'   FocalLengthIn35mmFormat              no
     11465  'FNum'   FNumber                              no
     11466  'FoLn'   FocalLength                          no
     11467  'ISOS'   ISO                                  no
     11468  'SVer'   FirmwareVersion                      no
     11469  'Scrn'   PreviewInfo                          Kodak Scrn
     11470  'Seri'   SerialNumber                         no
     11471  'StSV'   ShutterSpeedValue                    no
     11472
     11473=head3 Kodak Scrn Tags
     11474
     11475  Index2   Tag Name                             Writable
     11476  ------   --------                             --------
     11477      0    PreviewImageWidth                    no
     11478      1    PreviewImageHeight                   no
     11479      2    PreviewImageLength                   no
     11480      4    PreviewImage                         no
     11481
     11482=head3 Kodak DcMD Tags
     11483
     11484Metadata directory found in MOV and MP4 videos from some Kodak cameras.
     11485
     11486  Tag ID   Tag Name                             Writable
     11487  ------   --------                             --------
     11488  'CMbo'   CameraByteOrder                      no
     11489  'Cmbo'   CameraByteOrder                      no
     11490  'DcEM'   DcEM                                 Kodak DcEM
     11491  'DcME'   DcME                                 Kodak DcME
     11492
     11493=head3 Kodak DcEM Tags
     11494
     11495  Tag ID   Tag Name                             Writable
     11496  ------   --------                             --------
     11497  [no tags known]
     11498
     11499=head3 Kodak DcME Tags
     11500
     11501  Tag ID   Tag Name                             Writable
     11502  ------   --------                             --------
     11503  [no tags known]
    609311504
    609411505=head3 Kodak MOV Tags
    609511506
    6096 This information is found in Kodak MOV videos from models such as the P880.
    6097 
    6098    Index   Tag Name                             Writable
    6099    -----   --------                             --------
    6100       0    Make                                 N
    6101      22    Model                                N
    6102      64    ModelType                            N
    6103      78    ExposureTime                         N
    6104      82    FNumber                              N
    6105      90    ExposureCompensation                 N
    6106     112    FocalLength                          N
     11507This information is found in the TAGS atom of MOV videos from Kodak models
     11508such as the P880.
     11509
     11510  Index1   Tag Name                             Writable
     11511  ------   --------                             --------
     11512      0    Make                                 no
     11513     22    Model                                no
     11514     64    ModelType                            no
     11515     78    ExposureTime                         no
     11516     82    FNumber                              no
     11517     90    ExposureCompensation                 no
     11518    112    FocalLength                          no
     11519
     11520=head3 Kodak pose Tags
     11521
     11522Streamed orientation information from the PixPro 4KVR360, extracted as
     11523sub-documents when the Duplicates option is used.
     11524
     11525  Tag ID               Tag Name                 Writable
     11526  ------               --------                 --------
     11527  'Accelerometer'      Accelerometer            no
     11528  'AngularVelocity'    AngularVelocity          no
    610711529
    610811530=head2 Leaf Tags
     
    611611538  Tag ID                          Tag Name      Writable
    611711539  ------                          --------      --------
    6118   'JPEG_preview_data'             PreviewImage  undef
    6119   'JPEG_preview_info'             PreviewInfo   N
    6120   'PDA_histogram_data'            PDAHistogram  N
    6121   'back_serial_number'            BackSerial    N
     11540  'JPEG_preview_data'             PreviewImage  no
     11541  'JPEG_preview_info'             PreviewInfo   no
     11542  'PDA_histogram_data'            PDAHistogram  no
     11543  'back_serial_number'            BackSerial    no
    612211544  'camera_profile'                CameraProfile Leaf CameraProfile
    612311545  'icc_camera_profile'            ICC_Profile   ICC_Profile
    6124   'icc_camera_to_tone_matrix'     ToneMatrix    N
    6125   'icc_camera_to_tone_space_flow' ToneSpaceFlow N
     11546  'icc_camera_to_tone_matrix'     ToneMatrix    no
     11547  'icc_camera_to_tone_space_flow' ToneSpaceFlow no
    612611548  'icc_rgb_ws_profile'            RGB_Profile   ICC_Profile
    6127   'image_offset'                  ImageOffset   N
    6128   'pattern_ratation_angle'        PatternAngle  N
     11549  'image_offset'                  ImageOffset   no
     11550  'pattern_ratation_angle'        PatternAngle  no
    612911551
    613011552=head3 Leaf CameraProfile Tags
     
    613511557  Tag ID               Tag Name                 Writable
    613611558  ------               --------                 --------
    6137   'back_type'          CameraBackType           N
     11559  'back_type'          CameraBackType           no
    613811560  'capture_profile'    CaptureProfile           Leaf CaptureProfile
    613911561  'image_profile'      ImageProfile             Leaf ImageProfile
    6140   'name'               CameraName               N
    6141   'type'               CameraType               N
    6142   'version'            CameraProfileVersion     N
     11562  'name'               CameraName               no
     11563  'type'               CameraType               no
     11564  'version'            CameraProfileVersion     no
    614311565
    614411566=head3 Leaf CaptureProfile Tags
     
    614911571  Tag ID                 Tag Name               Writable
    615011572  ------                 --------               --------
    6151   'CCD_rect'             CCDRect                N
    6152   'CCD_valid_rect'       CCDValidRect           N
    6153   'CCD_video_rect'       CCDVideoRect           N
    6154   'back_type'            CaptProfBackType       N
    6155   'center_dark_rect'     CenterDarkRect         N
    6156   'color_averages'       ColorAverages          N
    6157   'color_matrix'         ColorMatrix            N
    6158   'dark_correction_type' DarkCorrectionType     N
    6159   'image_bounds'         ImageBounds            N
    6160   'image_fields'         ImageFields            N
    6161   'image_offset'         ImageOffset            N
    6162   'left_dark_rect'       LeftDarkRect           N
    6163   'luminance_consts'     LuminanceConsts        N
    6164   'mosaic_pattern'       MosaicPattern          N
    6165   'name'                 CaptProfName           N
    6166   'number_of_planes'     NumberOfPlanes         N
    6167   'raw_data_rotation'    RawDataRotation        N
    6168   'reconstruction_type'  ReconstructionType     N
    6169   'right_dark_rect'      RightDarkRect          N
    6170   'serial_number'        CaptureSerial          N
    6171   'type'                 CaptProfType           N
    6172   'version'              CaptProfVersion        N
    6173   'xy_offset_info'       XYOffsetInfo           N
     11573  'CCD_rect'             CCDRect                no
     11574  'CCD_valid_rect'       CCDValidRect           no
     11575  'CCD_video_rect'       CCDVideoRect           no
     11576  'back_type'            CaptProfBackType       no
     11577  'center_dark_rect'     CenterDarkRect         no
     11578  'color_averages'       ColorAverages          no
     11579  'color_matrix'         ColorMatrix            no
     11580  'dark_correction_type' DarkCorrectionType     no
     11581  'image_bounds'         ImageBounds            no
     11582  'image_fields'         ImageFields            no
     11583  'image_offset'         ImageOffset            no
     11584  'left_dark_rect'       LeftDarkRect           no
     11585  'luminance_consts'     LuminanceConsts        no
     11586  'mosaic_pattern'       MosaicPattern          no
     11587  'name'                 CaptProfName           no
     11588  'number_of_planes'     NumberOfPlanes         no
     11589  'raw_data_rotation'    RawDataRotation        no
     11590  'reconstruction_type'  ReconstructionType     no
     11591  'right_dark_rect'      RightDarkRect          no
     11592  'serial_number'        CaptureSerial          no
     11593  'type'                 CaptProfType           no
     11594  'version'              CaptProfVersion        no
     11595  'xy_offset_info'       XYOffsetInfo           no
    617411596
    617511597=head3 Leaf ImageProfile Tags
     
    618011602  Tag ID               Tag Name                 Writable
    618111603  ------               --------                 --------
    6182   'back_type'          ImgProfBackType          N
    6183   'image_status'       ImageStatus              N
    6184   'name'               ImgProfName              N
    6185   'rotation_angle'     RotationAngle            N
     11604  'back_type'          ImgProfBackType          no
     11605  'image_status'       ImageStatus              no
     11606  'name'               ImgProfName              no
     11607  'rotation_angle'     RotationAngle            no
    618611608  'shoot_setup'        ShootSetup               Leaf ShootSetup
    6187   'type'               ImgProfType              N
    6188   'version'            ImgProfVersion           N
     11609  'type'               ImgProfType              no
     11610  'version'            ImgProfVersion           no
    618911611
    619011612=head3 Leaf ShootSetup Tags
     
    619511617  Tag ID               Tag Name                 Writable
    619611618  ------               --------                 --------
    6197   'back_type'          ShootObjBackType         N
     11619  'back_type'          ShootObjBackType         no
    619811620  'camera_setup'       CameraSetup              Leaf CameraSetup
    619911621  'capture_setup'      CaptureSetup             Leaf CaptureSetup
    620011622  'color_setup'        ColorSetup               Leaf ColorSetup
    620111623  'look_header'        LookHeader               Leaf LookHeader
    6202   'name'               ShootObjName             N
     11624  'name'               ShootObjName             no
    620311625  'save_setup'         SaveSetup                Leaf SaveSetup
    6204   'type'               ShootObjType             N
    6205   'version'            ShootObjVersion          N
     11626  'type'               ShootObjType             no
     11627  'version'            ShootObjVersion          no
    620611628
    620711629=head3 Leaf CameraSetup Tags
     
    621211634  Tag ID               Tag Name                 Writable
    621311635  ------               --------                 --------
    6214   'ISO_speed'          ISOSpeed                 N
    6215   'back_type'          CameraObjBackType        N
    6216   'camera_type'        CameraType               N
    6217   'lens_ID'            LensID                   N
    6218   'lens_type'          LensType                 N
    6219   'name'               CameraObjName            N
    6220   'strobe'             Strobe                   N
    6221   'type'               CameraObjType            N
    6222   'version'            CameraObjVersion         N
     11636  'ISO_speed'          ISOSpeed                 no
     11637  'back_type'          CameraObjBackType        no
     11638  'camera_type'        CameraType               no
     11639  'lens_ID'            LensID                   no
     11640  'lens_type'          LensType                 no
     11641  'name'               CameraObjName            no
     11642  'strobe'             Strobe                   no
     11643  'type'               CameraObjType            no
     11644  'version'            CameraObjVersion         no
    622311645
    622411646=head3 Leaf CaptureSetup Tags
     
    622911651  Tag ID               Tag Name                 Writable
    623011652  ------               --------                 --------
    6231   'Multi_quality'      MultiQuality             N
    6232   'back_type'          CaptureObjBackType       N
    6233   'name'               CaptureObjName           N
     11653  'Multi_quality'      MultiQuality             no
     11654  'back_type'          CaptureObjBackType       no
     11655  'name'               CaptureObjName           no
    623411656  'neutals'            Neutals                  Leaf Neutrals
    623511657  'selection'          Selection                Leaf Selection
    623611658  'sharpness'          Sharpness                Leaf Sharpness
    6237   'single_quality'     SingleQuality            N
     11659  'single_quality'     SingleQuality            no
    623811660  'tone_curve'         ToneCurve                Leaf ToneCurve
    6239   'type'               CaptureObjType           N
    6240   'version'            CaptureObjVersion        N
     11661  'type'               CaptureObjType           no
     11662  'version'            CaptureObjVersion        no
    624111663
    624211664=head3 Leaf Neutrals Tags
     
    624711669  Tag ID                 Tag Name               Writable
    624811670  ------                 --------               --------
    6249   'back_type'            NeutObjBackType        N
    6250   'color_casts'          ColorCasts             N
    6251   'highlight_end_points' HighlightEndPoints     N
    6252   'name'                 NeutObjName            N
    6253   'neutrals'             Neutrals               N
    6254   'shadow_end_points'    ShadowEndPoints        N
    6255   'type'                 NeutObjType            N
    6256   'version'              NeutObjVersion         N
     11671  'back_type'            NeutObjBackType        no
     11672  'color_casts'          ColorCasts             no
     11673  'highlight_end_points' HighlightEndPoints     no
     11674  'name'                 NeutObjName            no
     11675  'neutrals'             Neutrals               no
     11676  'shadow_end_points'    ShadowEndPoints        no
     11677  'type'                 NeutObjType            no
     11678  'version'              NeutObjVersion         no
    625711679
    625811680=head3 Leaf Selection Tags
     
    626311685  Tag ID               Tag Name                 Writable
    626411686  ------               --------                 --------
    6265   'back_type'          SelObjBackType           N
    6266   'locks'              Locks                    N
    6267   'name'               SelObjName               N
    6268   'orientation'        Orientation              N
    6269   'rect'               Rect                     N
    6270   'resolution'         Resolution               N
    6271   'scale'              Scale                    N
    6272   'type'               SelObjType               N
    6273   'version'            SelObjVersion            N
     11687  'back_type'          SelObjBackType           no
     11688  'locks'              Locks                    no
     11689  'name'               SelObjName               no
     11690  'orientation'        Orientation              no
     11691  'rect'               Rect                     no
     11692  'resolution'         Resolution               no
     11693  'scale'              Scale                    no
     11694  'type'               SelObjType               no
     11695  'version'            SelObjVersion            no
    627411696
    627511697=head3 Leaf Sharpness Tags
     
    628011702  Tag ID               Tag Name                 Writable
    628111703  ------               --------                 --------
    6282   'back_type'          SharpObjBackType         N
    6283   'data_len'           DataLen                  N
    6284   'name'               SharpObjName             N
    6285   'sharp_info'         SharpInfo                N
    6286   'sharp_method'       SharpMethod              N
    6287   'type'               SharpObjType             N
    6288   'version'            SharpObjVersion          N
     11704  'back_type'          SharpObjBackType         no
     11705  'data_len'           DataLen                  no
     11706  'name'               SharpObjName             no
     11707  'sharp_info'         SharpInfo                no
     11708  'sharp_method'       SharpMethod              no
     11709  'type'               SharpObjType             no
     11710  'version'            SharpObjVersion          no
    628911711
    629011712=head3 Leaf ToneCurve Tags
     
    629511717  Tag ID               Tag Name                 Writable
    629611718  ------               --------                 --------
    6297   'back_type'          ToneObjBackType          N
    6298   'gamma'              Gamma                    N
    6299   'name'               ToneObjName              N
    6300   'npts'               Npts                     N
    6301   'tones'              Tones                    N
    6302   'type'               ToneObjType              N
    6303   'version'            ToneObjVersion           N
     11719  'back_type'          ToneObjBackType          no
     11720  'gamma'              Gamma                    no
     11721  'name'               ToneObjName              no
     11722  'npts'               Npts                     no
     11723  'tones'              Tones                    no
     11724  'type'               ToneObjType              no
     11725  'version'            ToneObjVersion           no
    630411726
    630511727=head3 Leaf ColorSetup Tags
     
    631011732  Tag ID               Tag Name                 Writable
    631111733  ------               --------                 --------
    6312   'back_type'          ColorObjBackType         N
    6313   'color_mode'         ColorMode                N
    6314   'color_type'         ColorType                N
    6315   'has_ICC'            HasICC                   N
    6316   'input_profile'      InputProfile             N
    6317   'name'               ColorObjName             N
    6318   'output_profile'     OutputProfile            N
    6319   'type'               ColorObjType             N
    6320   'version'            ColorObjVersion          N
     11734  'back_type'          ColorObjBackType         no
     11735  'color_mode'         ColorMode                no
     11736  'color_type'         ColorType                no
     11737  'has_ICC'            HasICC                   no
     11738  'input_profile'      InputProfile             no
     11739  'name'               ColorObjName             no
     11740  'output_profile'     OutputProfile            no
     11741  'type'               ColorObjType             no
     11742  'version'            ColorObjVersion          no
    632111743
    632211744=head3 Leaf LookHeader Tags
     
    632711749  Tag ID               Tag Name                 Writable
    632811750  ------               --------                 --------
    6329   'back_type'          LookHeadBackType         N
    6330   'name'               LookHeadName             N
    6331   'type'               LookHeadType             N
    6332   'version'            LookHeadVersion          N
     11751  'back_type'          LookHeadBackType         no
     11752  'name'               LookHeadName             no
     11753  'type'               LookHeadType             no
     11754  'version'            LookHeadVersion          no
    633311755
    633411756=head3 Leaf SaveSetup Tags
     
    633911761  Tag ID                  Tag Name              Writable
    634011762  ------                  --------              --------
    6341   'back_type'             SaveObjBackType       N
    6342   'leaf_auto_active'      LeafAutoActive        N
    6343   'leaf_auto_base_name'   LeafAutoBaseName      N
    6344   'leaf_hot_folder'       LeafHotFolder         N
    6345   'leaf_open_proc_HDR'    LeafOpenProcHDR       N
    6346   'leaf_output_file_type' LeafOutputFileType    N
    6347   'leaf_save_selection'   LeafSaveSelection     N
    6348   'name'                  SaveObjName           N
    6349   'std_auto_active'       StdAutoActive         N
    6350   'std_base_name'         StdBaseName           N
    6351   'std_hot_folder'        StdHotFolder          N
    6352   'std_open_in_photoshop' StdOpenInPhotoshop    N
    6353   'std_output_bit_depth'  StdOutputBitDepth     N
    6354   'std_output_color_mode' StdOutputColorMode    N
    6355   'std_output_file_type'  StdOutputFileType     N
    6356   'std_oxygen'            StdOxygen             N
    6357   'std_save_selection'    StdSaveSelection      N
    6358   'std_scaled_output'     StdScaledOutput       N
    6359   'std_sharpen_output'    StdSharpenOutput      N
    6360   'type'                  SaveObjType           N
    6361   'version'               SaveObjVersion        N
     11763  'back_type'             SaveObjBackType       no
     11764  'leaf_auto_active'      LeafAutoActive        no
     11765  'leaf_auto_base_name'   LeafAutoBaseName      no
     11766  'leaf_hot_folder'       LeafHotFolder         no
     11767  'leaf_open_proc_HDR'    LeafOpenProcHDR       no
     11768  'leaf_output_file_type' LeafOutputFileType    no
     11769  'leaf_save_selection'   LeafSaveSelection     no
     11770  'name'                  SaveObjName           no
     11771  'std_auto_active'       StdAutoActive         no
     11772  'std_base_name'         StdBaseName           no
     11773  'std_hot_folder'        StdHotFolder          no
     11774  'std_open_in_photoshop' StdOpenInPhotoshop    no
     11775  'std_output_bit_depth'  StdOutputBitDepth     no
     11776  'std_output_color_mode' StdOutputColorMode    no
     11777  'std_output_file_type'  StdOutputFileType     no
     11778  'std_oxygen'            StdOxygen             no
     11779  'std_save_selection'    StdSaveSelection      no
     11780  'std_scaled_output'     StdScaledOutput       no
     11781  'std_sharpen_output'    StdSharpenOutput      no
     11782  'type'                  SaveObjType           no
     11783  'version'               SaveObjVersion        no
    636211784
    636311785=head3 Leaf SubIFD Tags
    636411786
    636511787Leaf writes a TIFF-format sub-IFD inside IFD0 of a MOS image.  No tags in
    6366 this sub-IFD are currently known, except for tag 0x8606 which really
    6367 shouldn't be here anyway (so it doesn't appear in the table below) because
    6368 it duplicates a reference to the same data of tag 0x8606 in IFD0.
     11788this sub-IFD are currently known, except for tags 0x8602 and 0x8606 which
     11789really shouldn't be here anyway (so they don't appear in the table below)
     11790because they duplicate references to the same data from tags with the same
     11791ID in IFD0.
    636911792
    637011793  Tag ID   Tag Name                             Writable
     
    638611809  0x0003   MinoltaCameraSettings                Minolta CameraSettings
    638711810  0x0004   MinoltaCameraSettings7D              Minolta CameraSettings7D
    6388   0x0018   ImageStabilization                   N
     11811  0x0010   CameraInfoA100                       Minolta CameraInfoA100
     11812  0x0018   ISInfoA100                           Minolta ISInfoA100
     11813           ImageStabilization                   no
    638911814  0x0020   WBInfoA100                           Minolta WBInfoA100
    639011815  0x0040   CompressedImageSize                  int32u
     
    641111836  0x0115   WhiteBalance                         int32u
    641211837  0x0e00   PrintIM                              PrintIM
    6413   0x0f00   MinoltaCameraSettings2               N
     11838  0x0f00   MinoltaCameraSettings2               no
    641411839
    641511840=head3 Minolta CameraSettings Tags
     
    641911844information may not be as reliable as it should be.  Because of this, tags
    642011845in the following tables are set to lower priority to prevent them from
    6421 superceding the values of same-named tags in other locations when duplicate
     11846superseding the values of same-named tags in other locations when duplicate
    642211847tags are disabled.
    642311848
    6424    Index   Tag Name                             Writable
    6425    -----   --------                             --------
     11849  Index4   Tag Name                             Writable
     11850  ------   --------                             --------
    642611851      1    ExposureMode                         int32u
    642711852      2    FlashMode                            int32u
     
    647711902=head3 Minolta CameraSettings7D Tags
    647811903
    6479    Index   Tag Name                             Writable
    6480    -----   --------                             --------
     11904  Index2   Tag Name                             Writable
     11905  ------   --------                             --------
    648111906      0    ExposureMode                         int16u
    648211907      2    MinoltaImageSize                     int16u
     
    650611931    117    ZoneMatchingOn                       int16u
    650711932
     11933=head3 Minolta CameraInfoA100 Tags
     11934
     11935Camera information for the Sony DSLR-A100.
     11936
     11937  Index1   Tag Name                             Writable
     11938  ------   --------                             --------
     11939      1    AFSensorActive                       int8u
     11940      2    AFStatusActiveSensor                 int16s
     11941      4    AFStatusTop-right                    int16s
     11942      6    AFStatusBottom-right                 int16s
     11943      8    AFStatusBottom                       int16s
     11944     10    AFStatusMiddleHorizontal             int16s
     11945     12    AFStatusCenterVertical               int16s
     11946     14    AFStatusTop                          int16s
     11947     16    AFStatusTop-left                     int16s
     11948     18    AFStatusBottom-left                  int16s
     11949     20    FocusLocked                          int8u
     11950     21    AFPoint                              int8u
     11951     22    AFMode                               int8u
     11952     45    AFStatusLeft                         int16s
     11953     47    AFStatusCenterHorizontal             int16s
     11954     49    AFStatusRight                        int16s
     11955     51    AFAreaMode                           int8u
     11956
     11957=head3 Minolta ISInfoA100 Tags
     11958
     11959Image stabilization information for the Sony DSLR-A100.
     11960
     11961  Index1   Tag Name                             Writable
     11962  ------   --------                             --------
     11963      0    ImageStabilization                   int16u
     11964
    650811965=head3 Minolta WBInfoA100 Tags
    650911966
    651011967White balance information for the Sony DSLR-A100.
    651111968
    6512    Index   Tag Name                             Writable
    6513    -----   --------                             --------
     11969  Index1   Tag Name                             Writable
     11970  ------   --------                             --------
     11971     14    DriveMode                            int8u
     11972     16    Rotation                             int8u
     11973     20    ImageStabilizationSetting            int8u
     11974     21    DynamicRangeOptimizerMode            int8u
     11975     42    ExposureCompensationMode             int8u
     11976     43    WBBracketShotNumber                  int8u
     11977     44    WhiteBalanceBracketing               int8u
     11978     45    ExposureBracketShotNumber            int8u
     11979     49    FlashFunction                        int16u
     11980     52    ExposureMode                         int16u
     11981     54    ColorMode                            int16u
     11982     56    AverageLV                            int16u
     11983     60    FrameNumber                          int8u
    651411984    150    WB_RGBLevels                         int16u[3]
    651511985    174    WB_GBRGLevels                        int16u[4]
    6516     772    WB_RBPresetFlash                     int16u[2]
    6517     776    WB_RBPresetCoolWhiteF                int16u[2]
    6518    1000    WB_RBPresetTungsten                  int16u[2]
    6519    1004    WB_RBPresetDaylight                  int16u[2]
    6520    1008    WB_RBPresetCloudy                    int16u[2]
    6521    1012    WB_RBPresetFlash                     int16u[2]
    6522    1020    WB_RedPresetsFluorescent             int16u[7]
    6523    1034    WB_BluePresetsFluorescent            int16u[7]
    6524    1048    WB_RBPresetShade                     int16u[2]
    6525    1060    WB_RBPresetCustom                    int16u[2]
     11986    192    WB_RedLevelsTungsten                 int16u[7]
     11987    206    WB_BlueLevelsTungsten                int16u[7]
     11988    220    WB_RedLevelsDaylight                 int16u[7]
     11989    234    WB_BlueLevelsDaylight                int16u[7]
     11990    248    WB_RedLevelsCloudy                   int16u[7]
     11991    262    WB_BlueLevelsCloudy                  int16u[7]
     11992    276    WB_RedLevelsFlash                    int16u[7]
     11993    290    WB_BlueLevelsFlash                   int16u[7]
     11994    332    WB_RedLevelsFluorescent              int16u[7]
     11995    346    WB_BlueLevelsFluorescent             int16u[7]
     11996    360    WB_RedLevelsShade                    int16u[7]
     11997    374    WB_BlueLevelsShade                   int16u[7]
     11998    392    WB_RedLevel6500K                     int16u
     11999    394    WB_BlueLevel6500K                    int16u
     12000    396    WB_RedLevelCustom                    int16u
     12001    398    WB_BlueLevelCustom                   int16u
     12002    408    WB_RedLevel3500K                     int16u
     12003    410    WB_BlueLevel3500K                    int16u
     12004    446    WB_RedLevelsKelvin                   int16u[75]
     12005    596    WB_BlueLevelsKelvin                  int16u[75]
     12006    772    WB_RBLevelsFlash                     int16u[2]
     12007    776    WB_RBLevelsCoolWhiteF                int16u[2]
     12008   1000    WB_RBLevelsTungsten                  int16u[2]
     12009   1004    WB_RBLevelsDaylight                  int16u[2]
     12010   1008    WB_RBLevelsCloudy                    int16u[2]
     12011   1012    WB_RBLevelsFlash                     int16u[2]
     12012   1020    WB_RedLevelsFluorescent              int16u[7]
     12013   1034    WB_BlueLevelsFluorescent             int16u[7]
     12014   1048    WB_RBLevelsShade                     int16u[2]
     12015   1056    WB_RBLevels6500K                     int16u[2]
     12016   1060    WB_RBLevelsCustom                    int16u[2]
     12017   1072    WB_RBLevels3500K                     int16u[2]
     12018   1320    WB_RBLevelsDaylight                  int16u[2]
     12019   1350    WB_RGBLevels                         int16u[3]
     12020   1576    AEMeteringSegments                   int8u[40]
     12021   1680    MeasuredLV                           int8u
     12022   1681    BrightnessValue                      int8u
     12023   4172    TiffMeteringImage                    no
     12024  18872    ExposureTime                         int8u
     12025  18874    ISO                                  int8u
     12026  18875    FocusDistance                        int8u
     12027  18877    LensType                             int16uRev
     12028  18880    ExposureCompensation                 int8s
     12029  18881    FlashExposureComp                    int8s
     12030  18882    ImageStabilization                   int8u
     12031  18883    BrightnessValue                      int8u
     12032  18885    MaxAperture                          int8u
     12033  18887    FNumber                              int8u
    652612034  18908    InternalSerialNumber                 string[12]
    652712035
    652812036=head3 Minolta CameraSettings5D Tags
    652912037
    6530    Index   Tag Name                             Writable
    6531    -----   --------                             --------
     12038  Index2   Tag Name                             Writable
     12039  ------   --------                             --------
    653212040     10    ExposureMode                         int16u
    653312041     12    MinoltaImageSize                     int16u
     
    656112069Camera settings information for the Sony DSLR-A100.
    656212070
    6563    Index   Tag Name                             Writable
    6564    -----   --------                             --------
     12071  Index2   Tag Name                             Writable
     12072  ------   --------                             --------
    656512073      0    ExposureMode                         int16u
    656612074      1    ExposureCompensationSetting          int16u
    656712075      5    HighSpeedSync                        int16u
    6568       6    ManualExposureTime                   int16u
    6569       7    ManualFNumber                        int16u
     12076      6    ShutterSpeedSetting                  int16u
     12077      7    ApertureSetting                      int16u
    657012078      8    ExposureTime                         int16u
    657112079      9    FNumber                              int16u
     
    657312081     11    WhiteBalance                         int16u
    657412082     12    FocusMode                            int16u
    6575      13    LocalAFAreaPoint                     int16u
     12083     13    AFPointSelected                      int16u
    657612084     14    AFAreaMode                           int16u
    657712085     15    FlashMode                            int16u
    6578      16    FlashExposureCompSetting             int16u
     12086     16    FlashExposureCompSet                 int16u
    657912087     18    MeteringMode                         int16u
    658012088     19    ISOSetting                           int16u
     
    664012148     94    ColorTemperature                     int16u
    664112149     95    ColorCompensationFilter              int16s
    6642      96    BatteryLevel                         int16u
     12150     96    BatteryState                         int16u
    664312151
    664412152=head3 Minolta MMA Tags
     
    664712155DiMAGE A2, S414 and 7Hi.
    664812156
    6649    Index   Tag Name                             Writable
    6650    -----   --------                             --------
    6651       0    Make                                 N
    6652      20    SoftwareVersion                      N
     12157  Index1   Tag Name                             Writable
     12158  ------   --------                             --------
     12159      0    Make                                 no
     12160     20    SoftwareVersion                      no
    665312161
    665412162=head3 Minolta MOV1 Tags
     
    665712165as the DiMage Z10 and X50.
    665812166
    6659    Index   Tag Name                             Writable
    6660    -----   --------                             --------
    6661       0    Make                                 N
    6662      32    ModelType                            N
    6663      46    ExposureTime                         N
    6664      50    FNumber                              N
    6665      58    ExposureCompensation                 N
    6666      80    FocalLength                          N
     12167  Index1   Tag Name                             Writable
     12168  ------   --------                             --------
     12169      0    Make                                 no
     12170     32    ModelType                            no
     12171     46    ExposureTime                         no
     12172     50    FNumber                              no
     12173     58    ExposureCompensation                 no
     12174     80    FocalLength                          no
    666712175
    666812176=head3 Minolta MOV2 Tags
     
    667112179DiMAGE X and Xt.
    667212180
    6673    Index   Tag Name                             Writable
    6674    -----   --------                             --------
    6675       0    Make                                 N
    6676      24    ModelType                            N
    6677      38    ExposureTime                         N
    6678      42    FNumber                              N
    6679      50    ExposureCompensation                 N
    6680      72    FocalLength                          N
     12181  Index1   Tag Name                             Writable
     12182  ------   --------                             --------
     12183      0    Make                                 no
     12184     24    ModelType                            no
     12185     38    ExposureTime                         no
     12186     42    FNumber                              no
     12187     50    ExposureCompensation                 no
     12188     72    FocalLength                          no
     12189
     12190=head2 Motorola Tags
     12191
     12192  Tag ID   Tag Name                             Writable
     12193  ------   --------                             --------
     12194  0x5500   BuildNumber                          string
     12195  0x5501   SerialNumber                         string
     12196  0x665e   Sensor                               string
     12197  0x6705   ManufactureDate                      string
    668112198
    668212199=head2 Nikon Tags
     
    669812215  0x000e   ExposureDifference                   undef[4]
    669912216  0x000f   ISOSelection                         string
    6700   0x0010   DataDump                             N
     12217  0x0010   DataDump                             no
    670112218  0x0011   PreviewIFD                           Nikon PreviewIFD
    670212219  0x0012   FlashExposureComp                    undef[4]
    670312220  0x0013   ISOSetting                           int16u[2]
    670412221  0x0014   ColorBalanceA                        Nikon ColorBalanceA
    6705            NRWData?                             Y
     12222           NRWData                              Nikon ColorBalanceB
     12223                                                Nikon ColorBalanceC
    670612224  0x0016   ImageBoundary                        int16u[4]
    670712225  0x0017   ExternalFlashExposureComp            undef[4]
     
    670912227  0x0019   ExposureBracketValue                 rational64s
    671012228  0x001a   ImageProcessing                      string
    6711   0x001b   CropHiSpeed                          int16u[7]~
     12229  0x001b   CropHiSpeed                          int16u[7]
    671212230  0x001c   ExposureTuning                       undef[3]
    671312231  0x001d   SerialNumber                         string!
     
    671812236  0x0022   ActiveD-Lighting                     int16u
    671912237  0x0023   PictureControlData                   Nikon PictureControl
     12238                                                Nikon PictureControl2
     12239                                                Nikon PictureControl3
     12240                                                Nikon PictureControlUnknown
    672012241  0x0024   WorldTime                            Nikon WorldTime
    672112242  0x0025   ISOInfo                              Nikon ISOInfo
     
    672412245  0x002c   UnknownInfo                          Nikon UnknownInfo
    672512246  0x0032   UnknownInfo2                         Nikon UnknownInfo2
     12247  0x0034   ShutterMode                          int16u
     12248  0x0035   HDRInfo                              Nikon HDRInfo
     12249  0x0037   MechanicalShutterCount               int32u
     12250  0x0039   LocationInfo                         Nikon LocationInfo
     12251  0x003d   BlackLevel                           int16u[4]
     12252  0x003e   ImageSizeRAW                         yes
     12253  0x0045   CropArea                             int16u[4]
     12254  0x004e   NikonSettings                        NikonSettings
     12255  0x004f   ColorTemperatureAuto                 int16u
    672612256  0x0080   ImageAdjustment                      string
    672712257  0x0081   ToneComp                             string
     
    673612266  0x0089   ShootingMode                         int16u~
    673712267  0x008b   LensFStops                           undef[4]
    6738   0x008c   ContrastCurve                        N
     12268  0x008c   ContrastCurve                        undef!
    673912269  0x008d   ColorHue                             string
    674012270  0x008f   SceneMode                            string
     
    675112281           ShotInfoD300S                        Nikon ShotInfoD300S
    675212282           ShotInfoD700                         Nikon ShotInfoD700
     12283           ShotInfoD800                         Nikon ShotInfoD800
     12284           ShotInfoD810                         Nikon ShotInfoD810
     12285           ShotInfoD850                         Nikon ShotInfoD850
    675312286           ShotInfoD5000                        Nikon ShotInfoD5000
     12287           ShotInfoD5100                        Nikon ShotInfoD5100
     12288           ShotInfoD5200                        Nikon ShotInfoD5200
    675412289           ShotInfoD7000                        Nikon ShotInfoD7000
     12290           ShotInfoD4                           Nikon ShotInfoD4
     12291           ShotInfoD4S                          Nikon ShotInfoD4S
     12292           ShotInfoD5                           Nikon ShotInfoD500
     12293           ShotInfoD500                         Nikon ShotInfoD500
     12294           ShotInfoD6                           Nikon ShotInfoD6
     12295           ShotInfoD610                         Nikon ShotInfoD610
     12296           ShotInfoZ7_2                         Nikon ShotInfoZ7_2
    675512297           ShotInfo02xx                         Nikon ShotInfo
    675612298           ShotInfoUnknown                      Nikon ShotInfo
    675712299  0x0092   HueAdjustment                        int16s
    675812300  0x0093   NEFCompression                       int16u
    6759   0x0094   Saturation                           int16s
     12301  0x0094   SaturationAdj                        int16s
    676012302  0x0095   NoiseReduction                       string
    6761   0x0096   LinearizationTable                   N
     12303  0x0096   NEFLinearizationTable                undef!
    676212304  0x0097   ColorBalance0100                     Nikon ColorBalance1
    676312305           ColorBalance0102                     Nikon ColorBalance2
     
    676612308           ColorBalance0209                     Nikon ColorBalance4
    676712309           ColorBalance02                       Nikon ColorBalance2
    6768            ColorBalanceUnknown                  N
     12310           ColorBalance0211                     Nikon ColorBalance4
     12311           ColorBalance0213                     Nikon ColorBalance2
     12312           ColorBalance0215                     Nikon ColorBalance4
     12313           ColorBalanceUnknown02                Nikon ColorBalanceUnknown
     12314           ColorBalanceUnknown04                Nikon ColorBalanceUnknown
     12315           ColorBalanceUnknown                  Nikon ColorBalanceUnknown
    676912316  0x0098   LensData0100                         Nikon LensData00
    677012317           LensData0101                         Nikon LensData01
    677112318           LensData0201                         Nikon LensData01
    677212319           LensData0204                         Nikon LensData0204
     12320           LensData0400                         Nikon LensData0400
     12321           LensData0402                         Nikon LensData0402
     12322           LensData0403                         Nikon LensData0403
     12323           LensData0800                         Nikon LensData0800
    677312324           LensDataUnknown                      Nikon LensDataUnknown
    677412325  0x0099   RawImageCenter                       int16u[2]
    677512326  0x009a   SensorPixelSize                      rational64u[2]
    677612327  0x009c   SceneAssist                          string
     12328  0x009d   DateStampMode                        int16u
    677712329  0x009e   RetouchHistory                       int16u[10]
    677812330  0x00a0   SerialNumber                         string
     
    678412336           FlashInfo0102                        Nikon FlashInfo0102
    678512337           FlashInfo0103                        Nikon FlashInfo0103
    6786            FlashInfo0104                        Nikon FlashInfo0103
     12338           FlashInfo0106                        Nikon FlashInfo0106
     12339           FlashInfo0107                        Nikon FlashInfo0107
     12340           FlashInfo0300                        Nikon FlashInfo0300
    678712341           FlashInfoUnknown                     Nikon FlashInfoUnknown
    678812342  0x00a9   ImageOptimization                    string
     
    679212346  0x00ad   AFResponse                           string
    679312347  0x00b0   MultiExposure                        Nikon MultiExposure
     12348                                                Nikon MultiExposure
    679412349  0x00b1   HighISONoiseReduction                int16u
    679512350  0x00b3   ToningEffect                         string
     
    679712352  0x00b7   AFInfo2                              Nikon AFInfo2
    679812353  0x00b8   FileInfo                             Nikon FileInfo
     12354                                                Nikon FileInfo
    679912355  0x00b9   AFTune                               Nikon AFTune
     12356  0x00bb   RetouchInfo                          Nikon RetouchInfo
    680012357  0x00bd   PictureControlData                   Nikon PictureControl
     12358  0x00c3   BarometerInfo                        Nikon BarometerInfo
    680112359  0x0e00   PrintIM                              PrintIM
    680212360  0x0e01   NikonCaptureData                     NikonCapture
    6803   0x0e09   NikonCaptureVersion                  string
     12361  0x0e09   NikonCaptureVersion                  string^
    680412362  0x0e0e   NikonCaptureOffsets                  Nikon CaptureOffsets
    680512363  0x0e10   NikonScanIFD                         Nikon Scan
    680612364  0x0e13   NikonCaptureEditVersions             NikonCapture
    6807            NikonCaptureEditVersions             undef
     12365           NikonCaptureEditVersions             undef!^
    680812366  0x0e1d   NikonICCProfile                      ICC_Profile
    680912367  0x0e1e   NikonCaptureOutput                   Nikon CaptureOutput
     
    681412372  Tag ID   Tag Name                             Writable
    681512373  ------   --------                             --------
    6816   0x00fe   SubfileType                          N
    6817   0x0103   Compression                          N
    6818   0x011a   XResolution                          N
    6819   0x011b   YResolution                          N
    6820   0x0128   ResolutionUnit                       N
     12374  0x00fe   SubfileType                          no
     12375  0x0103   Compression                          no
     12376  0x011a   XResolution                          no
     12377  0x011b   YResolution                          no
     12378  0x0128   ResolutionUnit                       no
    682112379  0x0201   PreviewImageStart                    int32u*
    682212380  0x0202   PreviewImageLength                   int32u*
    6823   0x0213   YCbCrPositioning                     N
     12381  0x0213   YCbCrPositioning                     no
    682412382
    682512383=head3 Nikon ColorBalanceA Tags
    682612384
    6827    Index   Tag Name                             Writable
    6828    -----   --------                             --------
    6829     624    RedBalance                           int16u!
    6830     625    BlueBalance                          int16u!
     12385  Index2   Tag Name                             Writable
     12386  ------   --------                             --------
     12387    624    WB_RBLevels                          int16u[2]!
     12388    626    WB_RBLevelsAuto                      int16u[2]!
     12389    628    WB_RBLevelsDaylight                  int16u[14]!
     12390    642    WB_RBLevelsIncandescent              int16u[14]!
     12391    656    WB_RBLevelsFluorescent               int16u[6]!
     12392    662    WB_RBLevelsCloudy                    int16u[14]!
     12393    676    WB_RBLevelsFlash                     int16u[14]!
     12394    690    WB_RBLevelsShade                     int16u[14]!
     12395
     12396=head3 Nikon ColorBalanceB Tags
     12397
     12398Color balance tags used by the P6000.
     12399
     12400  Index1   Tag Name                             Writable
     12401  ------   --------                             --------
     12402      4    ColorBalanceVersion                  undef[4]
     12403   5096    WB_RGGBLevels                        int32u[4]!
     12404   5112    WB_RGGBLevelsDaylight                int32u[4]!
     12405   5128    WB_RGGBLevelsCloudy                  int32u[4]!
     12406   5160    WB_RGGBLevelsTungsten                int32u[4]!
     12407   5176    WB_RGGBLevelsFluorescentW            int32u[4]!
     12408   5192    WB_RGGBLevelsFlash                   int32u[4]!
     12409   5224    WB_RGGBLevelsCustom                  int32u[4]!
     12410   5240    WB_RGGBLevelsAuto                    int32u[4]!
     12411
     12412=head3 Nikon ColorBalanceC Tags
     12413
     12414Color balance tags used by the P1000, P7000, P7100 and B700.
     12415
     12416  Index1   Tag Name                             Writable
     12417  ------   --------                             --------
     12418      4    ColorBalanceVersion                  undef[4]
     12419     32    BlackLevel                           int16u
     12420     56    WB_RGGBLevels                        int32u[4]!
     12421     76    WB_RGGBLevelsDaylight                int32u[4]!
     12422     96    WB_RGGBLevelsCloudy                  int32u[4]!
     12423    116    WB_RGGBLevelsShade                   int32u[4]!
     12424    136    WB_RGGBLevelsTungsten                int32u[4]!
     12425    156    WB_RGGBLevelsFluorescentW            int32u[4]!
     12426    176    WB_RGGBLevelsFluorescentN            int32u[4]!
     12427    196    WB_RGGBLevelsFluorescentD            int32u[4]!
     12428    216    WB_RGGBLevelsHTMercury               int32u[4]!
     12429    256    WB_RGGBLevelsCustom                  int32u[4]!
     12430    276    WB_RGGBLevelsAuto                    int32u[4]!
    683112431
    683212432=head3 Nikon VRInfo Tags
    683312433
    6834    Index   Tag Name                             Writable
    6835    -----   --------                             --------
    6836       0    VRInfoVersion                        N
     12434  Index1   Tag Name                             Writable
     12435  ------   --------                             --------
     12436      0    VRInfoVersion                        no
    683712437      4    VibrationReduction                   int8u
     12438      6    VRMode                               int8u
    683812439
    683912440=head3 Nikon FaceDetect Tags
    684012441
    6841    Index   Tag Name                             Writable
    6842    -----   --------                             --------
     12442  Index2   Tag Name                             Writable
     12443  ------   --------                             --------
    684312444      1    FaceDetectFrameSize                  int16u[2]
    684412445      3    FacesDetected                        int16u
     
    685812459=head3 Nikon PictureControl Tags
    685912460
    6860    Index   Tag Name                             Writable
    6861    -----   --------                             --------
    6862       0    PictureControlVersion                N
     12461  Index1   Tag Name                             Writable
     12462  ------   --------                             --------
     12463      0    PictureControlVersion                no
    686312464      4    PictureControlName                   string[20]
    686412465     24    PictureControlBase                   string[20]
     
    687412475     57    ToningSaturation                     int8u
    687512476
     12477=head3 Nikon PictureControl2 Tags
     12478
     12479  Index1   Tag Name                             Writable
     12480  ------   --------                             --------
     12481      0    PictureControlVersion                no
     12482      4    PictureControlName                   string[20]
     12483     24    PictureControlBase                   string[20]
     12484     48    PictureControlAdjust                 int8u
     12485     49    PictureControlQuickAdjust            int8u
     12486     51    Sharpness                            int8u
     12487     53    Clarity                              int8u
     12488     55    Contrast                             int8u
     12489     57    Brightness                           int8u
     12490     59    Saturation                           int8u
     12491     61    Hue                                  int8u
     12492     63    FilterEffect                         int8u
     12493     64    ToningEffect                         int8u
     12494     65    ToningSaturation                     int8u
     12495
     12496=head3 Nikon PictureControl3 Tags
     12497
     12498  Index1   Tag Name                             Writable
     12499  ------   --------                             --------
     12500      0    PictureControlVersion                no
     12501      8    PictureControlName                   string[20]
     12502     28    PictureControlBase                   string[20]
     12503     54    PictureControlAdjust                 int8u
     12504     55    PictureControlQuickAdjust            int8u
     12505     57    Sharpness                            int8u
     12506     59    MidRangeSharpness                    int8u
     12507     61    Clarity                              int8u
     12508     63    Contrast                             int8u
     12509     65    Brightness                           int8u
     12510     67    Saturation                           int8u
     12511     69    Hue                                  int8u
     12512     71    FilterEffect                         int8u
     12513     72    ToningEffect                         int8u
     12514     73    ToningSaturation                     int8u
     12515
     12516=head3 Nikon PictureControlUnknown Tags
     12517
     12518  Index1   Tag Name                             Writable
     12519  ------   --------                             --------
     12520      0    PictureControlVersion                no
     12521
    687612522=head3 Nikon WorldTime Tags
    687712523
    6878    Index   Tag Name                             Writable
    6879    -----   --------                             --------
    6880       0    Timezone                             int16s
     12524  Index1   Tag Name                             Writable
     12525  ------   --------                             --------
     12526      0    TimeZone                             int16s
    688112527      2    DaylightSavings                      int8u
    688212528      3    DateDisplayFormat                    int8u
     
    688412530=head3 Nikon ISOInfo Tags
    688512531
    6886    Index   Tag Name                             Writable
    6887    -----   --------                             --------
     12532  Index1   Tag Name                             Writable
     12533  ------   --------                             --------
    688812534      0    ISO                                  int8u
    688912535      4    ISOExpansion                         int16u
     
    689312539=head3 Nikon DistortInfo Tags
    689412540
    6895    Index   Tag Name                             Writable
    6896    -----   --------                             --------
    6897       0    DistortionVersion?                   N
     12541  Index1   Tag Name                             Writable
     12542  ------   --------                             --------
     12543      0    DistortionVersion?                   no
    689812544      4    AutoDistortionControl                int8u
    689912545
    690012546=head3 Nikon UnknownInfo Tags
    690112547
    6902    Index   Tag Name                             Writable
    6903    -----   --------                             --------
    6904       0    UnknownInfoVersion?                  N
     12548  Index4   Tag Name                             Writable
     12549  ------   --------                             --------
     12550      0    UnknownInfoVersion?                  no
    690512551
    690612552=head3 Nikon UnknownInfo2 Tags
    690712553
    6908    Index   Tag Name                             Writable
    6909    -----   --------                             --------
    6910       0    UnknownInfo2Version?                 N
     12554  Index4   Tag Name                             Writable
     12555  ------   --------                             --------
     12556      0    UnknownInfo2Version?                 no
     12557
     12558=head3 Nikon HDRInfo Tags
     12559
     12560  Index1   Tag Name                             Writable
     12561  ------   --------                             --------
     12562      0    HDRInfoVersion                       string[4]
     12563      4    HDR                                  int8u
     12564      5    HDRLevel                             int8u
     12565      6    HDRSmoothing                         int8u
     12566      7    HDRLevel2                            int8u
     12567
     12568=head3 Nikon LocationInfo Tags
     12569
     12570Tags written by some Nikon GPS-equipped cameras like the AW100.
     12571
     12572  Index1   Tag Name                             Writable
     12573  ------   --------                             --------
     12574      0    LocationInfoVersion                  undef[4]
     12575      4    TextEncoding                         int8u
     12576      5    CountryCode                          undef[3]
     12577      8    POILevel                             int8u
     12578      9    Location                             undef[70]
    691112579
    691212580=head3 Nikon AFInfo Tags
    691312581
    6914    Index   Tag Name                             Writable
    6915    -----   --------                             --------
     12582  Index1   Tag Name                             Writable
     12583  ------   --------                             --------
    691612584      0    AFAreaMode                           int8u
    691712585      1    AFPoint                              int8u
     
    692412592   Index   Tag Name                             Writable
    692512593   -----   --------                             --------
    6926       0    ShotInfoVersion                      N
     12594      0    ShotInfoVersion                      no
    692712595    582    ShutterCount                         int32u
    692812596  586.1    VibrationReduction                   int8u & 0x08
     
    693512603   Index   Tag Name                             Writable
    693612604   -----   --------                             --------
    6937       0    ShotInfoVersion                      N
     12605      0    ShotInfoVersion                      no
    693812606    586    ShutterCount                         int32u
    693912607  590.1    Rotation                             int8u & 0x07
     
    695112619   Index   Tag Name                             Writable
    695212620   -----   --------                             --------
    6953       0    ShotInfoVersion                      N
    6954       4    FirmwareVersion                      N
     12621      0    ShotInfoVersion                      no
     12622      4    FirmwareVersion                      no
    695512623    693    ISO2                                 int8u
    695612624    725    ShutterCount                         int32u
     
    696412632   Index   Tag Name                             Writable
    696512633   -----   --------                             --------
    6966       0    ShotInfoVersion                      N
     12634      0    ShotInfoVersion                      no
    696712635    598    ISO2                                 int8u
    696812636    630    ShutterCount                         int32u
     
    697812646   Index   Tag Name                             Writable
    697912647   -----   --------                             --------
    6980       0    ShotInfoVersion                      N
    6981       4    FirmwareVersion                      N
     12648      0    ShotInfoVersion                      no
     12649      4    FirmwareVersion                      no
    698212650     16    ImageArea                            int8u
    698312651    605    ISO2                                 int8u
     
    699612664   Index   Tag Name                             Writable
    699712665   -----   --------                             --------
    6998       0    ShotInfoVersion                      N
    6999       4    FirmwareVersion                      N
     12666      0    ShotInfoVersion                      no
     12667      4    FirmwareVersion                      no
    700012668    605    ISO2                                 int8u
    700112669    640    ShutterCount                         int32u
     
    700912677   Index   Tag Name                             Writable
    701012678   -----   --------                             --------
    7011       0    ShotInfoVersion                      N
    7012       4    FirmwareVersion                      N
     12679      0    ShotInfoVersion                      no
     12680      4    FirmwareVersion                      no
    701312681     16    ImageArea                            int8u
    701412682    545    ISO2                                 int8u
     
    702312691   Index   Tag Name                             Writable
    702412692   -----   --------                             --------
    7025       0    ShotInfoVersion                      N
     12693      0    ShotInfoVersion                      no
    702612694    604    ISO2                                 int8u
    702712695    633    ShutterCount                         int32u
     
    703612704   Index   Tag Name                             Writable
    703712705   -----   --------                             --------
    7038       0    ShotInfoVersion                      N
    7039       4    FirmwareVersion                      N
     12706      0    ShotInfoVersion                      no
     12707      4    FirmwareVersion                      no
    704012708    613    ISO2                                 int8u
    704112709    644    ShutterCount                         int32u
     
    705012718   Index   Tag Name                             Writable
    705112719   -----   --------                             --------
    7052       0    ShotInfoVersion                      N
    7053       4    FirmwareVersion                      N
     12720      0    ShotInfoVersion                      no
     12721      4    FirmwareVersion                      no
    705412722    613    ISO2                                 int8u
    705512723    646    ShutterCount                         int32u
     
    706312731   Index   Tag Name                             Writable
    706412732   -----   --------                             --------
    7065       0    ShotInfoVersion                      N
    7066       4    FirmwareVersion                      N
     12733      0    ShotInfoVersion                      no
     12734      4    FirmwareVersion                      no
    706712735    613    ISO2                                 int8u
    706812736    647    ShutterCount                         int32u
    706912737    804    CustomSettingsD700                   NikonCustom SettingsD700
    707012738
     12739=head3 Nikon ShotInfoD800 Tags
     12740
     12741These tags are extracted from encrypted data in images from the D800.
     12742
     12743   Index   Tag Name                             Writable
     12744   -----   --------                             --------
     12745      0    ShotInfoVersion                      no
     12746      4    FirmwareVersion                      no
     12747   1216    RepeatingFlashOutputExternal         int8u
     12748   1218    RepeatingFlashRateExternal           int8u
     12749   1219    RepeatingFlashCountExternal          int8u
     12750   1234    FlashExposureComp2                   int8s
     12751   1242    RepeatingFlashRateBuilt-in           int8u
     12752   1243    RepeatingFlashCountBuilt-in          int8u
     12753   1308    SequenceNumber                       int8u
     12754   1531    ShutterCount                         int32u
     12755   1772    CustomSettingsD800                   NikonCustom SettingsD800
     12756
     12757=head3 Nikon ShotInfoD810 Tags
     12758
     12759These tags are extracted from encrypted data in images from the D810.  Note
     12760that the indices listed below are for firmware version 1.0, but they may be
     12761different for other firmware versions.
     12762
     12763   Index   Tag Name                             Writable
     12764   -----   --------                             --------
     12765      0    ShotInfoVersion                      no
     12766      4    FirmwareVersion                      no
     12767    464    SecondarySlotFunction                int8u & 0x03
     12768   5974    AEBracketingSteps                    int8u & 0xff
     12769   5975    WBBracketingSteps                    int8u & 0xff
     12770   5982    NikonMeteringMode                    int8u & 0x03
     12771   6236    ISOAutoShutterTime                   int8u & 0x3f
     12772   6237    ISOAutoHiLimit                       int8u & 0xff
     12773   6315    CustomSettingsD810                   NikonCustom SettingsD810
     12774  14068    RollAngle                            fixed32u
     12775  14072    PitchAngle                           fixed32u
     12776  14076    YawAngle                             fixed32u
     12777
     12778=head3 Nikon ShotInfoD850 Tags
     12779
     12780These tags are extracted from encrypted data in images from the D850.
     12781
     12782   Index   Tag Name                             Writable
     12783   -----   --------                             --------
     12784      0    ShotInfoVersion                      no
     12785      4    FirmwareVersion                      no
     12786   1937    PhotoShootingMenuBankImageArea       int8u & 0x07
     12787   4029    PhotoShootingMenuBank                int8u & 0x03
     12788   4031    PrimarySlot                          int8u & 0x80
     12789   4152    CustomSettingsD850                   NikonCustom SettingsD850
     12790  12027    RollAngle                            fixed32u
     12791  12031    PitchAngle                           fixed32u
     12792  12035    YawAngle                             fixed32u
     12793
    707112794=head3 Nikon ShotInfoD5000 Tags
    707212795
     
    707612799   Index   Tag Name                             Writable
    707712800   -----   --------                             --------
    7078       0    ShotInfoVersion                      N
    7079       4    FirmwareVersion                      N
     12801      0    ShotInfoVersion                      no
     12802      4    FirmwareVersion                      no
    708012803    693    ISO2                                 int8u
    708112804    726    ShutterCount                         int32u
    708212805    888    CustomSettingsD5000                  NikonCustom SettingsD5000
    708312806
     12807=head3 Nikon ShotInfoD5100 Tags
     12808
     12809   Index   Tag Name                             Writable
     12810   -----   --------                             --------
     12811      0    ShotInfoVersion                      no
     12812      4    FirmwareVersion                      no
     12813    801    ShutterCount                         int32u
     12814   1031    CustomSettingsD5100                  NikonCustom SettingsD5100
     12815
     12816=head3 Nikon ShotInfoD5200 Tags
     12817
     12818   Index   Tag Name                             Writable
     12819   -----   --------                             --------
     12820      0    ShotInfoVersion                      no
     12821      4    FirmwareVersion                      no
     12822   3032    ShutterCount                         int32u
     12823   3285    CustomSettingsD5200                  NikonCustom SettingsD5200
     12824
    708412825=head3 Nikon ShotInfoD7000 Tags
    708512826
     
    708912830   Index   Tag Name                             Writable
    709012831   -----   --------                             --------
    7091       0    ShotInfoVersion                      N
    7092       4    FirmwareVersion                      N
     12832      0    ShotInfoVersion                      no
     12833      4    FirmwareVersion                      no
    709312834    800    ShutterCount                         int32u
    709412835   1028    CustomSettingsD7000                  NikonCustom SettingsD7000
    709512836
     12837=head3 Nikon ShotInfoD4 Tags
     12838
     12839These tags are extracted from encrypted data in images from the D4.
     12840
     12841   Index   Tag Name                             Writable
     12842   -----   --------                             --------
     12843      0    ShotInfoVersion                      no
     12844      4    FirmwareVersion                      no
     12845   1873    CustomSettingsD4                     NikonCustom SettingsD4
     12846
     12847=head3 Nikon ShotInfoD4S Tags
     12848
     12849These tags are extracted from encrypted data in images from the D4S.
     12850
     12851   Index   Tag Name                             Writable
     12852   -----   --------                             --------
     12853      0    ShotInfoVersion                      no
     12854      4    FirmwareVersion                      no
     12855    464    SecondarySlotFunction                int8u & 0x03
     12856   5964    AEBracketingSteps                    int8u & 0xff
     12857   5965    WBBracketingSteps                    int8u & 0xff
     12858   6221    ReleaseMode                          int8u & 0xff
     12859   6301    CustomSettingsD4S                    NikonCustom SettingsD4
     12860   6338    MultiSelectorLiveViewMode            int8u & 0xc0
     12861   6378    ISOAutoShutterTime                   int8u & 0x3f
     12862   6379    ISOAutoHiLimit                       int8u & 0xff
     12863   6461    CustomSettingsD4S                    NikonCustom SettingsD4
     12864  13579    RollAngle                            fixed32u
     12865  13583    PitchAngle                           fixed32u
     12866  13587    YawAngle                             fixed32u
     12867  13971    Rotation                             int8u & 0x30
     12868
     12869=head3 Nikon ShotInfoD500 Tags
     12870
     12871These tags are extracted from encrypted data in images from the D5 and D500.
     12872
     12873   Index   Tag Name                             Writable
     12874   -----   --------                             --------
     12875      0    ShotInfoVersion                      no
     12876      4    FirmwareVersion                      no
     12877    202    Rotation                             int8u & 0x03
     12878   1506    FlickerReductionIndicator            int8u & 0x01
     12879   2004    JPGCompression                       int8u & 0x01
     12880   2171    AEBracketingSteps                    int8u & 0xff
     12881   2172    WBBracketingSteps                    int8u & 0xff
     12882   2179    ADLBracketingStep                    int8u & 0xf0
     12883   2180    ADLBracketingType                    int8u & 0x0f
     12884   3709    PhotoShootingMenuBank                int8u & 0x03
     12885   3711    PrimarySlot                          int8u & 0x80
     12886   3713    ISOAutoShutterTime                   int8u & 0x3f
     12887   3714    ISOAutoHiLimit                       int8u & 0xff
     12888   3716    FlickerReduction                     int8u & 0x20
     12889  3716.1   PhotoShootingMenuBankImageArea       int8u & 0x07
     12890   3819    CustomSettingsD5                     NikonCustom SettingsD5
     12891           CustomSettingsD500                   NikonCustom SettingsD500
     12892  11300    RollAngle                            fixed32u
     12893  11304    PitchAngle                           fixed32u
     12894  11308    YawAngle                             fixed32u
     12895  11940    NikonMeteringMode                    int8u & 0x03
     12896
     12897=head3 Nikon ShotInfoD6 Tags
     12898
     12899These tags are extracted from encrypted data in images from the D6.
     12900
     12901   Index   Tag Name                             Writable
     12902   -----   --------                             --------
     12903      0    ShotInfoVersion                      no
     12904  49690    RollAngle                            fixed32u
     12905  49694    PitchAngle                           fixed32u
     12906  49698    YawAngle                             fixed32u
     12907
     12908=head3 Nikon ShotInfoD610 Tags
     12909
     12910These tags are extracted from encrypted data in images from the D610.
     12911
     12912   Index   Tag Name                             Writable
     12913   -----   --------                             --------
     12914      0    ShotInfoVersion                      no
     12915      4    FirmwareVersion                      no
     12916   1999    CustomSettingsD610                   NikonCustom SettingsD610
     12917
     12918=head3 Nikon ShotInfoZ7_2 Tags
     12919
     12920These tags are extracted from encrypted data in images from the Z7_2.
     12921
     12922   Index   Tag Name                             Writable
     12923   -----   --------                             --------
     12924      0    ShotInfoVersion                      no
     12925      4    FirmwareVersion                      no
     12926  52786    RollAngle                            fixed32u
     12927  52790    PitchAngle                           fixed32u
     12928  52794    YawAngle                             fixed32u
     12929
    709612930=head3 Nikon ShotInfo Tags
    709712931
     
    709912933only valid for specific models.
    710012934
    7101    Index   Tag Name                             Writable
    7102    -----   --------                             --------
    7103       0    ShotInfoVersion                      N
    7104       4    FirmwareVersion                      N
     12935  Index1   Tag Name                             Writable
     12936  ------   --------                             --------
     12937      0    ShotInfoVersion                      no
     12938      4    FirmwareVersion                      no
    710512939     16    DistortionControl                    int8u
    710612940    102    VR_0x66?                             int8u
     
    711512949=head3 Nikon ColorBalance1 Tags
    711612950
    7117    Index   Tag Name                             Writable
    7118    -----   --------                             --------
     12951  Index2   Tag Name                             Writable
     12952  ------   --------                             --------
    711912953      0    WB_RBGGLevels                        int16u[4]!
    712012954
     
    712312957This information is encrypted for most camera models.
    712412958
    7125    Index   Tag Name                             Writable
    7126    -----   --------                             --------
     12959  Index2   Tag Name                             Writable
     12960  ------   --------                             --------
    712712961      0    WB_RGGBLevels                        int16u[4]!
    712812962
    712912963=head3 Nikon ColorBalance3 Tags
    713012964
    7131    Index   Tag Name                             Writable
    7132    -----   --------                             --------
     12965  Index2   Tag Name                             Writable
     12966  ------   --------                             --------
    713312967      0    WB_RGBGLevels                        int16u[4]!
    713412968
    713512969=head3 Nikon ColorBalance4 Tags
    713612970
    7137    Index   Tag Name                             Writable
    7138    -----   --------                             --------
     12971  Index2   Tag Name                             Writable
     12972  ------   --------                             --------
    713912973      0    WB_GRBGLevels                        int16u[4]!
    714012974
     12975=head3 Nikon ColorBalanceUnknown Tags
     12976
     12977  Index1   Tag Name                             Writable
     12978  ------   --------                             --------
     12979      0    ColorBalanceVersion                  undef[4]
     12980
    714112981=head3 Nikon LensData00 Tags
    714212982
    714312983This structure is used by the D100, and D1X with firmware version 1.1.
    714412984
    7145    Index   Tag Name                             Writable
    7146    -----   --------                             --------
    7147       0    LensDataVersion                      N
     12985  Index1   Tag Name                             Writable
     12986  ------   --------                             --------
     12987      0    LensDataVersion                      no
    714812988      6    LensIDNumber                         int8u
    714912989      7    LensFStops                           int8u
     
    716013000extracted.
    716113001
    7162    Index   Tag Name                             Writable
    7163    -----   --------                             --------
    7164       0    LensDataVersion                      N
     13002  Index1   Tag Name                             Writable
     13003  ------   --------                             --------
     13004      0    LensDataVersion                      no
    716513005      4    ExitPupilPosition                    int8u
    716613006      5    AFAperture                           int8u
     
    718313023extracted.
    718413024
    7185    Index   Tag Name                             Writable
    7186    -----   --------                             --------
    7187       0    LensDataVersion                      N
     13025  Index1   Tag Name                             Writable
     13026  ------   --------                             --------
     13027      0    LensDataVersion                      no
    718813028      4    ExitPupilPosition                    int8u
    718913029      5    AFAperture                           int8u
     
    720013040     19    EffectiveMaxAperture                 int8u
    720113041
     13042=head3 Nikon LensData0400 Tags
     13043
     13044Tags extracted from the encrypted lens data of the Nikon 1J1/1V1/1J2.
     13045
     13046  Index1   Tag Name                             Writable
     13047  ------   --------                             --------
     13048      0    LensDataVersion                      no
     13049    394    LensModel                            string[64]
     13050
     13051=head3 Nikon LensData0402 Tags
     13052
     13053Tags extracted from the encrypted lens data of the Nikon 1J3/1S1/1V2.
     13054
     13055  Index1   Tag Name                             Writable
     13056  ------   --------                             --------
     13057      0    LensDataVersion                      no
     13058    395    LensModel                            string[64]
     13059
     13060=head3 Nikon LensData0403 Tags
     13061
     13062Tags extracted from the encrypted lens data of the Nikon 1J4/1J5.
     13063
     13064  Index1   Tag Name                             Writable
     13065  ------   --------                             --------
     13066      0    LensDataVersion                      no
     13067    684    LensModel                            string[64]
     13068
     13069=head3 Nikon LensData0800 Tags
     13070
     13071Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
     13072
     13073  Index1   Tag Name                             Writable
     13074  ------   --------                             --------
     13075      0    LensDataVersion                      no
     13076      4    ExitPupilPosition                    int8u
     13077      5    AFAperture                           int8u
     13078      9    FocusPosition                        int8u
     13079     11    FocusDistance                        int8u
     13080     12    FocalLength                          int8u
     13081     13    LensIDNumber                         int8u
     13082     14    LensFStops                           int8u
     13083     15    MinFocalLength                       int8u
     13084     16    MaxFocalLength                       int8u
     13085     17    MaxApertureAtMinFocal                int8u
     13086     18    MaxApertureAtMaxFocal                int8u
     13087     19    MCUVersion                           int8u
     13088     20    EffectiveMaxAperture                 int8u
     13089     48    LensID                               int16u
     13090     54    MaxAperture                          int16u
     13091     56    FNumber                              int16u
     13092     60    FocalLength                          int16u
     13093     79    FocusDistance                        int8u
     13094
    720213095=head3 Nikon LensDataUnknown Tags
    720313096
    7204    Index   Tag Name                             Writable
    7205    -----   --------                             --------
    7206       0    LensDataVersion                      N
     13097  Index1   Tag Name                             Writable
     13098  ------   --------                             --------
     13099      0    LensDataVersion                      no
    720713100
    720813101=head3 Nikon FlashInfo0100 Tags
     
    721113104D200.
    721213105
    7213    Index   Tag Name                             Writable
    7214    -----   --------                             --------
    7215       0    FlashInfoVersion                     N
     13106  Index1   Tag Name                             Writable
     13107  ------   --------                             --------
     13108      0    FlashInfoVersion                     no
    721613109      4    FlashSource                          int8u
    721713110      6    ExternalFlashFirmware                int8u[2]
     
    723713130(firmware 1.00).
    723813131
    7239    Index   Tag Name                             Writable
    7240    -----   --------                             --------
    7241       0    FlashInfoVersion                     N
     13132  Index1   Tag Name                             Writable
     13133  ------   --------                             --------
     13134      0    FlashInfoVersion                     no
    724213135      4    FlashSource                          int8u
    724313136      6    ExternalFlashFirmware                int8u[2]
     
    726313156=head3 Nikon FlashInfo0103 Tags
    726413157
    7265 These tags are used by the D3 (firmware 2.x), D3X, D3S, D90, D300 (firmware
    7266 1.10), D300S, D700, D3000 and D5000.
    7267 
    7268    Index   Tag Name                             Writable
    7269    -----   --------                             --------
    7270       0    FlashInfoVersion                     N
     13158These tags are used by the D3 (firmware 2.x), D3X, D3S, D4, D90, D300
     13159(firmware 1.10), D300S, D600, D700, D800, D3000, D3100, D3200, D5000, D5100,
     13160D5200, D7000.
     13161
     13162  Index1   Tag Name                             Writable
     13163  ------   --------                             --------
     13164      0    FlashInfoVersion                     no
    727113165      4    FlashSource                          int8u
    727213166      6    ExternalFlashFirmware                int8u[2]
     
    729013184     21    FlashGroupCOutput                    int8u
    729113185           FlashGroupCCompensation              int8s
     13186     27    ExternalFlashCompensation            int8s
     13187     29    FlashExposureComp3                   int8s
     13188     39    FlashExposureComp4                   int8s
     13189
     13190=head3 Nikon FlashInfo0106 Tags
     13191
     13192These tags are used by the Df, D610, D3300, D5300, D7100 and Coolpix A.
     13193
     13194  Index1   Tag Name                             Writable
     13195  ------   --------                             --------
     13196      0    FlashInfoVersion                     no
     13197      4    FlashSource                          int8u
     13198      6    ExternalFlashFirmware                int8u[2]
     13199      8    ExternalFlashFlags                   int8u
     13200    9.1    FlashCommanderMode                   int8u & 0x80
     13201    9.2    FlashControlMode                     int8u & 0x7f
     13202     12    FlashFocalLength                     int8u
     13203     13    RepeatingFlashRate                   int8u
     13204     14    RepeatingFlashCount                  int8u
     13205     15    FlashGNDistance                      int8u
     13206     16    FlashColorFilter                     int8u
     13207   17.1    FlashGroupAControlMode               int8u & 0x0f
     13208   18.1    FlashGroupBControlMode               int8u & 0xf0
     13209   18.2    FlashGroupCControlMode               int8u & 0x0f
     13210     39    FlashOutput                          int8u
     13211           FlashCompensation                    int8s
     13212     40    FlashGroupAOutput                    int8u
     13213           FlashGroupACompensation              int8s
     13214     41    FlashGroupBOutput                    int8u
     13215           FlashGroupBCompensation              int8s
     13216     42    FlashGroupCOutput                    int8u
     13217           FlashGroupCCompensation              int8s
     13218
     13219=head3 Nikon FlashInfo0107 Tags
     13220
     13221These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
     132220107) and the D5, D500, D850 and D3400 (FlashInfoVersion 0108).
     13223
     13224  Index1   Tag Name                             Writable
     13225  ------   --------                             --------
     13226      0    FlashInfoVersion                     no
     13227      4    FlashSource                          int8u
     13228      6    ExternalFlashFirmware                int8u[2]
     13229    8.1    ExternalFlashZoomOverride            int8u & 0x80
     13230    8.2    ExternalFlashStatus                  int8u & 0x01
     13231    9.1    ExternalFlashReadyState              int8u & 0x07
     13232     10    FlashCompensation                    int8s
     13233     12    FlashFocalLength                     int8u
     13234     13    RepeatingFlashRate                   int8u
     13235     14    RepeatingFlashCount                  int8u
     13236     15    FlashGNDistance                      int8u
     13237   17.1    FlashGroupAControlMode               int8u & 0x0f
     13238   18.1    FlashGroupBControlMode               int8u & 0xf0
     13239   18.2    FlashGroupCControlMode               int8u & 0x0f
     13240     40    FlashGroupAOutput                    int8u
     13241           FlashGroupACompensation              int8s
     13242     41    FlashGroupBOutput                    int8u
     13243           FlashGroupBCompensation              int8s
     13244     42    FlashGroupCOutput                    int8u
     13245           FlashGroupCCompensation              int8s
     13246
     13247=head3 Nikon FlashInfo0300 Tags
     13248
     13249  Index1   Tag Name                             Writable
     13250  ------   --------                             --------
     13251      0    FlashInfoVersion                     no
     13252      4    FlashSource                          int8u
     13253      6    ExternalFlashFirmware                int8u[2]
     13254     27    FlashCompensation                    int8s
    729213255
    729313256=head3 Nikon FlashInfoUnknown Tags
    729413257
    7295    Index   Tag Name                             Writable
    7296    -----   --------                             --------
    7297       0    FlashInfoVersion                     N
     13258  Index1   Tag Name                             Writable
     13259  ------   --------                             --------
     13260      0    FlashInfoVersion                     no
    729813261
    729913262=head3 Nikon MultiExposure Tags
    730013263
    7301    Index   Tag Name                             Writable
    7302    -----   --------                             --------
    7303       0    MultiExposureVersion                 N
     13264  Index4   Tag Name                             Writable
     13265  ------   --------                             --------
     13266      0    MultiExposureVersion                 no
    730413267      1    MultiExposureMode                    int32u
    730513268      2    MultiExposureShots                   int32u
     
    731013273These tags are written by Nikon DSLR's which have the live view feature.
    731113274
    7312    Index   Tag Name                             Writable
    7313    -----   --------                             --------
    7314       0    AFInfo2Version                       N
     13275  Index1   Tag Name                             Writable
     13276  ------   --------                             --------
     13277      0    AFInfo2Version                       no
    731513278      4    ContrastDetectAF                     int8u
    731613279      5    AFAreaMode                           int8u
    731713280      6    PhaseDetectAF                        int8u
    731813281      7    PrimaryAFPoint                       int8u
    7319       8    AFPointsUsed                         undef[7]~
     13282      8    AFPointsUsed                         undef[7]
    732013283           AFPointsUsed                         undef[2]
    7321            AFPointsUsed                         undef[7]~
     13284           AFPointsUsed                         undef[5]
     13285           AFPointsUsed                         undef[17]
     13286           AFPointsUsed                         undef[21]
     13287           AFPointsUsed                         undef[29]
     13288           AFPointsUsed                         undef[20]
     13289           AFPointsUsed                         undef[13]
     13290           AFPointsUsed                         undef[7]
     13291     10    AFPointsUsed                         undef[14]
    732213292     16    AFImageWidth                         int16u
    732313293     18    AFImageHeight                        int16u
     
    732713297     26    AFAreaHeight                         int16u
    732813298     28    ContrastDetectAFInFocus              int8u
     13299           AFPointsSelected                     undef[20]
     13300     42    AFImageWidth                         int16u
     13301     44    AFImageHeight                        int16u
     13302     46    AFAreaXPosition                      int16u
     13303     47    AFFocusPointXPosition                int8u~
     13304     48    AFAreaYPosition                      int16u
     13305           AFPointsInFocus                      undef[20]
     13306     49    AFFocusPointYPosition                int8u~
     13307     50    AFAreaWidth                          int16u
     13308     52    AFAreaHeight                         int16u
     13309     56    PrimaryAFPoint                       int8u
     13310     68    PrimaryAFPoint                       int8u
     13311     70    AFImageWidth                         int16u
     13312     72    AFImageHeight                        int16u
     13313     74    AFAreaXPosition                      int16u
     13314     76    AFAreaYPosition                      int16u
     13315     78    AFAreaWidth                          int16u
     13316     80    AFAreaHeight                         int16u
     13317     82    ContrastDetectAFInFocus              int8u
    732913318
    733013319=head3 Nikon FileInfo Tags
    733113320
    7332    Index   Tag Name                             Writable
    7333    -----   --------                             --------
    7334       0    FileInfoVersion                      N
    7335       6    DirectoryNumber                      int16u
    7336       8    FileNumber                           int16u
     13321  Index2   Tag Name                             Writable
     13322  ------   --------                             --------
     13323      0    FileInfoVersion                      no
     13324      2    MemoryCardNumber                     int16u
     13325      3    DirectoryNumber                      int16u
     13326      4    FileNumber                           int16u
    733713327
    733813328=head3 Nikon AFTune Tags
    733913329
    7340    Index   Tag Name                             Writable
    7341    -----   --------                             --------
     13330  Index1   Tag Name                             Writable
     13331  ------   --------                             --------
    734213332      0    AFFineTune                           int8u
    734313333      1    AFFineTuneIndex                      int8u
    734413334      2    AFFineTuneAdj                        int8s
     13335      3    AFFineTuneAdjTele                    int8s
     13336
     13337=head3 Nikon RetouchInfo Tags
     13338
     13339  Index1   Tag Name                             Writable
     13340  ------   --------                             --------
     13341      0    RetouchInfoVersion                   no
     13342      5    RetouchNEFProcessing                 int8s
     13343
     13344=head3 Nikon BarometerInfo Tags
     13345
     13346  Index1   Tag Name                             Writable
     13347  ------   --------                             --------
     13348      0    BarometerInfoVersion                 no
     13349      6    Altitude                             int32s
    734513350
    734613351=head3 Nikon CaptureOffsets Tags
     
    734813353  Tag ID   Tag Name                             Writable
    734913354  ------   --------                             --------
    7350   0x0001   IFD0_Offset                          N
    7351   0x0002   PreviewIFD_Offset                    N
    7352   0x0003   SubIFD_Offset                        N
     13355  0x0001   IFD0_Offset                          no
     13356  0x0002   PreviewIFD_Offset                    no
     13357  0x0003   SubIFD_Offset                        no
    735313358
    735413359=head3 Nikon Scan Tags
     
    737313378=head3 Nikon ROC Tags
    737413379
    7375    Index   Tag Name                             Writable
    7376    -----   --------                             --------
     13380  Index4   Tag Name                             Writable
     13381  ------   --------                             --------
    737713382      0    DigitalROC                           int32u
    737813383
    737913384=head3 Nikon GEM Tags
    738013385
    7381    Index   Tag Name                             Writable
    7382    -----   --------                             --------
     13386  Index4   Tag Name                             Writable
     13387  ------   --------                             --------
    738313388      0    DigitalGEM                           int32u
    738413389
    738513390=head3 Nikon CaptureOutput Tags
    738613391
    7387    Index   Tag Name                             Writable
    7388    -----   --------                             --------
     13392  Index4   Tag Name                             Writable
     13393  ------   --------                             --------
    738913394      2    OutputImageWidth                     int32u
    739013395      3    OutputImageHeight                    int32u
     
    739513400  Tag ID   Tag Name                             Writable
    739613401  ------   --------                             --------
    7397   0x0003   Quality                              Y
    7398   0x0004   ColorMode                            Y
    7399   0x0005   ImageAdjustment                      Y
    7400   0x0006   CCDSensitivity                       Y
    7401   0x0007   WhiteBalance                         Y
    7402   0x0008   Focus                                Y
    7403   0x000a   DigitalZoom                          Y
    7404   0x000b   Converter                            Y
     13402  0x0003   Quality                              yes
     13403  0x0004   ColorMode                            yes
     13404  0x0005   ImageAdjustment                      yes
     13405  0x0006   CCDSensitivity                       yes
     13406  0x0007   WhiteBalance                         yes
     13407  0x0008   Focus                                yes
     13408  0x000a   DigitalZoom                          yes
     13409  0x000b   Converter                            yes
     13410
     13411=head3 Nikon NEFInfo Tags
     13412
     13413As-yet unknown information found in SubIFD1 tag 0xc7d5 of NEF images from
     13414cameras such as the Z6 and Z7, and NRW images from some Coolpix cameras.
     13415
     13416  Tag ID   Tag Name                             Writable
     13417  ------   --------                             --------
     13418  [no tags known]
    740513419
    740613420=head3 Nikon NCDT Tags
    740713421
    7408 Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from some
    7409 Nikon cameras such as the Coolpix S8000.
     13422Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from
     13423various Nikon models.
    741013424
    741113425  Tag ID   Tag Name                             Writable
    741213426  ------   --------                             --------
    7413   'NCHD'   MakerNoteVersion                     N
     13427  'NCDB'   NikonNCDB                            Nikon NCDB
     13428  'NCHD'   MakerNoteVersion                     no
     13429  'NCM1'   PreviewImage1                        no
     13430  'NCM2'   PreviewImage2                        no
    741413431  'NCTG'   NikonTags                            Nikon NCTG
    7415   'NCTH'   ThumbnailImage                       N
    7416   'NCVW'   PreviewImage                         N
     13432  'NCTH'   ThumbnailImage                       no
     13433  'NCVW'   PreviewImage                         no
     13434
     13435=head3 Nikon NCDB Tags
     13436
     13437  Tag ID   Tag Name                             Writable
     13438  ------   --------                             --------
     13439  [no tags known]
    741713440
    741813441=head3 Nikon NCTG Tags
     
    742313446  Tag ID       Tag Name                         Writable
    742413447  ------       --------                         --------
    7425   0x0001       Make                             N
    7426   0x0002       Model                            N
    7427   0x0003       Software                         N
    7428   0x0011       CreateDate                       N
    7429   0x0012       DateTimeOriginal                 N
    7430   0x0013       FrameCount                       N
    7431   0x0016       FrameRate                        N
    7432   0x0022       FrameWidth                       N
    7433   0x0023       FrameHeight                      N
    7434   0x0032       AudioChannels                    N
    7435   0x0033       AudioBitsPerSample               N
    7436   0x0034       AudioSampleRate                  N
    7437   0x2000001    MakerNoteVersion                 N
    7438   0x2000005    WhiteBalance                     N
    7439   0x200000b    WhiteBalanceFineTune             N
    7440   0x200001e    ColorSpace                       N
     13448  0x0001       Make                             no
     13449  0x0002       Model                            no
     13450  0x0003       Software                         no
     13451  0x0011       CreateDate                       no
     13452  0x0012       DateTimeOriginal                 no
     13453  0x0013       FrameCount                       no
     13454  0x0016       FrameRate                        no
     13455  0x0019       TimeZone                         no
     13456  0x0022       FrameWidth                       no
     13457  0x0023       FrameHeight                      no
     13458  0x0032       AudioChannels                    no
     13459  0x0033       AudioBitsPerSample               no
     13460  0x0034       AudioSampleRate                  no
     13461  0x1002       NikonDateTime                    no
     13462  0x1013       ElectronicVR                     no
     13463  0x110829a    ExposureTime                     no
     13464  0x110829d    FNumber                          no
     13465  0x1108822    ExposureProgram                  no
     13466  0x1109204    ExposureCompensation             no
     13467  0x1109207    MeteringMode                     no
     13468  0x110920a    FocalLength                      no
     13469  0x110a431    SerialNumber                     no
     13470  0x110a432    LensInfo                         no
     13471  0x110a433    LensMake                         no
     13472  0x110a434    LensModel                        no
     13473  0x110a435    LensSerialNumber                 no
     13474  0x1200000    GPSVersionID                     no
     13475  0x1200001    GPSLatitudeRef                   no
     13476  0x1200002    GPSLatitude                      no
     13477  0x1200003    GPSLongitudeRef                  no
     13478  0x1200004    GPSLongitude                     no
     13479  0x1200005    GPSAltitudeRef                   no
     13480  0x1200006    GPSAltitude                      no
     13481  0x1200007    GPSTimeStamp                     no
     13482  0x1200008    GPSSatellites                    no
     13483  0x1200010    GPSImgDirectionRef               no
     13484  0x1200011    GPSImgDirection                  no
     13485  0x1200012    GPSMapDatum                      no
     13486  0x120001d    GPSDateStamp                     no
     13487  0x2000001    MakerNoteVersion                 no
     13488  0x2000005    WhiteBalance                     no
     13489  0x2000007    FocusMode                        no
     13490  0x200000b    WhiteBalanceFineTune             no
     13491  0x200001b    CropHiSpeed                      no
     13492  0x200001e    ColorSpace                       no
     13493  0x200001f    VRInfo                           Nikon VRInfo
     13494  0x2000022    ActiveD-Lighting                 no
    744113495  0x2000023    PictureControlData               Nikon PictureControl
     13496                                                Nikon PictureControl2
     13497                                                Nikon PictureControl3
     13498                                                Nikon PictureControlUnknown
    744213499  0x2000024    WorldTime                        Nikon WorldTime
    7443   0x2000032    UnknownInfo                      Nikon UnknownInfo
    7444   0x2000083    LensType                         N
    7445   0x2000084    Lens                             N
     13500  0x2000025    ISOInfo                          Nikon ISOInfo
     13501  0x200002a    VignetteControl                  no
     13502  0x200002c    UnknownInfo                      Nikon UnknownInfo
     13503  0x2000032    UnknownInfo2                     Nikon UnknownInfo2
     13504  0x2000039    LocationInfo                     Nikon LocationInfo
     13505  0x2000083    LensType                         no
     13506  0x2000084    Lens                             no
     13507  0x2000087    FlashMode                        no
     13508  0x2000098    LensData0100                     Nikon LensData00
     13509               LensData0101                     Nikon LensData01
     13510               LensData0201                     Nikon LensData01
     13511               LensData0204                     Nikon LensData0204
     13512               LensData0400                     Nikon LensData0400
     13513               LensData0402                     Nikon LensData0402
     13514               LensData0403                     Nikon LensData0403
     13515               LensData0800                     Nikon LensData0800
     13516               LensDataUnknown                  Nikon LensDataUnknown
     13517  0x20000a7    ShutterCount                     no
     13518  0x20000a8    FlashInfo0100                    Nikon FlashInfo0100
     13519               FlashInfo0102                    Nikon FlashInfo0102
     13520               FlashInfo0103                    Nikon FlashInfo0103
     13521               FlashInfo0106                    Nikon FlashInfo0106
     13522               FlashInfo0107                    Nikon FlashInfo0107
     13523               FlashInfoUnknown                 Nikon FlashInfoUnknown
     13524  0x20000ab    VariProgram                      no
     13525  0x20000b1    HighISONoiseReduction            no
     13526  0x20000b7    AFInfo2                          Nikon AFInfo2
     13527  0x20000c3    BarometerInfo                    Nikon BarometerInfo
    744613528
    744713529=head3 Nikon MOV Tags
     
    744913531This information is found in MOV and QT videos from some Nikon cameras.
    745013532
    7451    Index   Tag Name                             Writable
    7452    -----   --------                             --------
    7453       0    Make                                 N
    7454      24    Model                                N
    7455      38    ExposureTime                         N
    7456      42    FNumber                              N
    7457      50    ExposureCompensation                 N
    7458      68    WhiteBalance                         N
    7459      72    FocalLength                          N
    7460     175    Software                             N
    7461     223    ISO                                  N
     13533  Index1   Tag Name                             Writable
     13534  ------   --------                             --------
     13535      0    Make                                 no
     13536     24    Model                                no
     13537     38    ExposureTime                         no
     13538     42    FNumber                              no
     13539     50    ExposureCompensation                 no
     13540     68    WhiteBalance                         no
     13541     72    FocalLength                          no
     13542    175    Software                             no
     13543    223    ISO                                  no
    746213544
    746313545=head3 Nikon AVI Tags
     
    746813550  ------   --------                             --------
    746913551  'nctg'   NikonTags                            Nikon AVITags
    7470   'ncth'   ThumbnailImage                       N
     13552  'ncth'   ThumbnailImage                       no
    747113553  'ncvr'   NikonVers                            Nikon AVIVers
    7472   'ncvw'   PreviewImage                         N
     13554  'ncvw'   PreviewImage                         no
    747313555
    747413556=head3 Nikon AVITags Tags
     
    747913561  Tag ID   Tag Name                             Writable
    748013562  ------   --------                             --------
    7481   0x0003   Make                                 N
    7482   0x0004   Model                                N
    7483   0x0005   Software                             N
    7484   0x0006   Equipment                            N
    7485   0x0007   Orientation                          N
    7486   0x0008   ExposureTime                         N
    7487   0x0009   FNumber                              N
    7488   0x000a   ExposureCompensation                 N
    7489   0x000b   MaxApertureValue                     N
    7490   0x000c   MeteringMode                         N
    7491   0x000f   FocalLength                          N
    7492   0x0010   XResolution                          N
    7493   0x0011   YResolution                          N
    7494   0x0012   ResolutionUnit                       N
    7495   0x0013   DateTimeOriginal                     N
    7496   0x0014   CreateDate                           N
    7497   0x0016   Duration                             N
    7498   0x0018   FocusMode                            N
    7499   0x001b   DigitalZoom                          N
    7500   0x001d   ColorMode                            N
    7501   0x001e   Sharpness                            N
    7502   0x001f   WhiteBalance                         N
    7503   0x0020   NoiseReduction                       N
     13563  0x0003   Make                                 no
     13564  0x0004   Model                                no
     13565  0x0005   Software                             no
     13566  0x0006   Equipment                            no
     13567  0x0007   Orientation                          no
     13568  0x0008   ExposureTime                         no
     13569  0x0009   FNumber                              no
     13570  0x000a   ExposureCompensation                 no
     13571  0x000b   MaxApertureValue                     no
     13572  0x000c   MeteringMode                         no
     13573  0x000f   FocalLength                          no
     13574  0x0010   XResolution                          no
     13575  0x0011   YResolution                          no
     13576  0x0012   ResolutionUnit                       no
     13577  0x0013   DateTimeOriginal                     no
     13578  0x0014   CreateDate                           no
     13579  0x0016   Duration                             no
     13580  0x0018   FocusMode                            no
     13581  0x001b   DigitalZoom                          no
     13582  0x001d   ColorMode                            no
     13583  0x001e   Sharpness                            no
     13584  0x001f   WhiteBalance                         no
     13585  0x0020   NoiseReduction                       no
    750413586
    750513587=head3 Nikon AVIVers Tags
     
    750713589  Tag ID   Tag Name                             Writable
    750813590  ------   --------                             --------
    7509   0x0001   MakerNoteType                        N
    7510   0x0002   MakerNoteVersion                     N
     13591  0x0001   MakerNoteType                        no
     13592  0x0002   MakerNoteVersion                     no
    751113593
    751213594=head2 NikonCustom Tags
    751313595
     13596Unfortunately, the NikonCustom settings are stored in a binary data block
     13597which changes from model to model.  This means that significant effort must
     13598be spent in decoding these for each model, usually requiring hundreds of
     13599test images from a dedicated Nikon owner.  For this reason, the NikonCustom
     13600settings have not been decoded for all models.  The tables below list the
     13601custom settings for the currently supported models.
     13602
    751413603=head3 NikonCustom SettingsD40 Tags
    751513604
    751613605Custom settings for the Nikon D40.
    751713606
    7518    Index   Tag Name                             Writable
    7519    -----   --------                             --------
     13607  Index1   Tag Name                             Writable
     13608  ------   --------                             --------
    752013609    0.1    Beep                                 int8u & 0x80
    752113610    0.2    AFAssist                             int8u & 0x40
     
    754513634Custom settings for the Nikon D80.
    754613635
    7547    Index   Tag Name                             Writable
    7548    -----   --------                             --------
     13636  Index1   Tag Name                             Writable
     13637  ------   --------                             --------
    754913638    0.1    Beep                                 int8u & 0x80
    755013639    0.2    AFAssist                             int8u & 0x40
     
    760013689Custom settings for the D90.
    760113690
    7602    Index   Tag Name                             Writable
    7603    -----   --------                             --------
     13691  Index1   Tag Name                             Writable
     13692  ------   --------                             --------
    760413693    0.1    LightSwitch                          int8u & 0x08
    760513694    2.1    AFAreaModeSetting                    int8u & 0x60
     
    766113750Custom settings for the D3, D3S, D3X, D300 and D300S.
    766213751
    7663    Index   Tag Name                             Writable
    7664    -----   --------                             --------
     13752  Index1   Tag Name                             Writable
     13753  ------   --------                             --------
    766513754    0.1    CustomSettingsBank                   int8u & 0x03
    766613755    0.2    CustomSettingsAllDefault             int8u & 0x80
     
    773613825   20.2    FlashShutterSpeed                    int8u & 0x0f
    773713826   21.1    AutoBracketSet                       int8u & 0xc0
     13827           AutoBracketSet                       int8u & 0xe0
    773813828   21.2    AutoBracketModeM                     int8u & 0x30
     13829           AutoBracketModeM                     int8u & 0x18
    773913830   21.3    AutoBracketOrder                     int8u & 0x08
     13831           AutoBracketOrder                     int8u & 0x04
    774013832   21.4    ModelingFlash                        int8u & 0x01
    774113833   22.1    NoMemoryCard                         int8u & 0x80
    774213834   22.2    MeteringTime                         int8u & 0x0f
    774313835   23.1    InternalFlash                        int8u & 0xc0
     13836   25.1    ImageReviewTime                      int8u & 0xe0
     13837   25.2    PlaybackMonitorOffTime               int8u & 0x1c
     13838   26.1    MenuMonitorOffTime                   int8u & 0xe0
     13839   26.2    ShootingInfoMonitorOffTime           int8u & 0x1c
    774413840
    774513841=head3 NikonCustom SettingsD700 Tags
     
    774713843Custom settings for the D700.
    774813844
    7749    Index   Tag Name                             Writable
    7750    -----   --------                             --------
     13845  Index1   Tag Name                             Writable
     13846  ------   --------                             --------
    775113847    0.1    CustomSettingsBank                   int8u & 0x03
    775213848    0.2    CustomSettingsAllDefault             int8u & 0x80
     
    782013916   33.8    ReleaseButtonToUseDial               int8u & 0x01
    782113917
     13918=head3 NikonCustom SettingsD800 Tags
     13919
     13920Custom settings for the D800 and D800E.
     13921
     13922  Index1   Tag Name                             Writable
     13923  ------   --------                             --------
     13924   12.1    AutoBracketingSet                    int8u & 0xe0
     13925   12.2    AutoBracketOrder                     int8u & 0x10
     13926   12.3    AutoBracketingMode                   int8u & 0x0c
     13927   22.1    FlashSyncSpeed                       int8u & 0xf0
     13928   22.2    FlashShutterSpeed                    int8u & 0x0f
     13929   23.1    FlashControlBuilt-in                 int8u & 0xc0
     13930   23.2    ManualFlashOutput                    int8u & 0x1f
     13931   24.1    RepeatingFlashOutput                 int8u & 0x70
     13932   24.2    RepeatingFlashCount                  int8u & 0x0f
     13933   25.1    RepeatingFlashRate                   int8u & 0xf0
     13934   25.2    CommanderChannel                     int8u & 0x03
     13935   27.1    CommanderInternalFlash               int8u & 0xc0
     13936   27.2    CommanderInternalManualOutput        int8u & 0x1f
     13937   28.1    CommanderGroupAMode                  int8u & 0xc0
     13938   28.2    CommanderGroupAManualOutput          int8u & 0x1f
     13939   29.1    CommanderGroupBMode                  int8u & 0xc0
     13940   29.2    CommanderGroupBManualOutput          int8u & 0x1f
     13941   30.1    ModelingFlash                        int8u & 0x20
     13942   30.2    CommanderInternalTTLComp             int8u & 0x1f
     13943   31.1    CommanderGroupA_TTL-AAComp           int8u & 0x1f
     13944   32.1    CommanderGroupB_TTL-AAComp           int8u & 0x1f
     13945
     13946=head3 NikonCustom SettingsD810 Tags
     13947
     13948Custom settings for the D810.
     13949
     13950  Index1   Tag Name                             Writable
     13951  ------   --------                             --------
     13952    0.1    LightSwitch                          int8u & 0x08
     13953    0.2    CustomSettingsBank                   int8u & 0x03
     13954    1.1    AF-CPrioritySelection                int8u & 0xc0
     13955    1.2    AF-SPrioritySelection                int8u & 0x20
     13956    1.3    AFPointSelection                     int8u & 0x10
     13957    1.4    FocusTrackingLockOn                  int8u & 0x07
     13958    2.1    AFActivation                         int8u & 0x80
     13959    2.2    FocusPointWrap                       int8u & 0x08
     13960    2.3    AFPointBrightness                    int8u & 0x06
     13961    2.4    AFAssist                             int8u & 0x01
     13962    3.1    BatteryOrder                         int8u & 0x40
     13963    3.2    MB-D12BatteryType                    int8u & 0x03
     13964    4.1    Pitch                                int8u & 0x40
     13965    4.2    NoMemoryCard                         int8u & 0x20
     13966    4.3    ISODisplay                           int8u & 0x0c
     13967    4.4    GridDisplay                          int8u & 0x02
     13968    5.1    ShootingInfoDisplay                  int8u & 0xc0
     13969    5.2    LCDIllumination                      int8u & 0x20
     13970    5.3    ElectronicFront-CurtainShutter       int8u & 0x08
     13971    5.4    ScreenTips                           int8u & 0x04
     13972    5.5    Beep                                 int8u & 0x03
     13973    6.1    ReverseIndicators                    int8u & 0x80
     13974    6.2    CommandDialsReverseRotation          int8u & 0x18
     13975    6.3    EasyExposureCompensation             int8u & 0x03
     13976    7.1    ExposureControlStepSize              int8u & 0xc0
     13977    7.2    ISOStepSize                          int8u & 0x30
     13978    7.3    ExposureCompStepSize                 int8u & 0x0c
     13979    8.1    CenterWeightedAreaSize               int8u & 0xe0
     13980    8.2    FineTuneOptMatrixMetering            int8u & 0x0f
     13981    9.1    FineTuneOptCenterWeighted            int8u & 0xf0
     13982    9.2    FineTuneOptSpotMetering              int8u & 0x0f
     13983   10.1    MultiSelectorShootMode               int8u & 0xc0
     13984   10.2    MultiSelectorPlaybackMode            int8u & 0x30
     13985   10.3    MultiSelector                        int8u & 0x01
     13986   11.1    ExposureDelayMode                    int8u & 0xc0
     13987   11.2    CLModeShootingSpeed                  int8u & 0x0f
     13988   12.1    MaxContinuousRelease                 int8u
     13989   13.1    AutoBracketSet                       int8u & 0xe0
     13990   13.2    AutoBracketOrder                     int8u & 0x10
     13991   13.3    AutoBracketModeM                     int8u & 0x0c
     13992   14.1    FuncButton                           int8u & 0x1f
     13993   15.1    PreviewButton                        int8u & 0x1f
     13994   16.1    AssignBktButton                      int8u & 0x07
     13995   17.1    AELockButton                         int8u & 0x1f
     13996   18.1    CommandDialsChangeMainSub            int8u & 0xe0
     13997   18.2    CommandDialsMenuAndPlayback          int8u & 0x18
     13998   18.3    CommandDialsApertureSetting          int8u & 0x04
     13999   18.4    ShutterReleaseButtonAE-L             int8u & 0x02
     14000   18.5    ReleaseButtonToUseDial               int8u & 0x01
     14001   19.1    StandbyTimer                         int8u & 0xf0
     14002   20.1    SelfTimerTime                        int8u & 0xc0
     14003   20.2    SelfTimerShotInterval                int8u & 0x30
     14004   20.3    SelfTimerShotCount                   int8u & 0x0f
     14005   21.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14006   21.2    LiveViewMonitorOffTime               int8u & 0x1c
     14007   22.1    MenuMonitorOffTime                   int8u & 0xe0
     14008   22.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14009   23.1    FlashSyncSpeed                       int8u & 0xf0
     14010   23.2    FlashShutterSpeed                    int8u & 0x0f
     14011   24.1    FlashControlBuilt-in                 int8u & 0xc0
     14012   31.1    ModelingFlash                        int8u & 0x20
     14013   36.1    PlaybackMonitorOffTime               int8u & 0xe0
     14014   37.1    MultiSelectorLiveView                int8u & 0xc0
     14015   38.1    ShutterSpeedLock                     int8u & 0x80
     14016   38.2    ApertureLock                         int8u & 0x40
     14017   38.3    MovieShutterButton                   int8u & 0x20
     14018   38.4    FlashExposureCompArea                int8u & 0x04
     14019   40.1    MovieAELockButtonAssignment          int8u & 0x0f
     14020   41.1    MovieFunctionButton                  int8u & 0x70
     14021   41.2    MoviePreviewButton                   int8u & 0x07
     14022   42.1    FuncButtonPlusDials                  int8u & 0x0f
     14023   43.1    PreviewButtonPlusDials               int8u & 0x0f
     14024   44.1    AELockButtonPlusDials                int8u & 0x0f
     14025   45.1    AssignMovieRecordButton              int8u & 0x0f
     14026   46.1    FineTuneOptHighlightWeighted         int8u & 0x0f
     14027   47.1    DynamicAreaAFDisplay                 int8u & 0x80
     14028   47.2    AFPointIllumination                  int8u & 0x40
     14029   47.3    StoreByOrientation                   int8u & 0x18
     14030   47.4    GroupAreaAFIllumination              int8u & 0x04
     14031   48.1    MatrixMetering                       int8u & 0x80
     14032   48.2    LiveViewButtonOptions                int8u & 0x30
     14033   48.3    AFModeRestrictions                   int8u & 0x03
     14034   49.1    LimitAFAreaModeSelection             int8u & 0x7e
     14035   50.1    AF-OnForMB-D12                       int8u & 0x07
     14036   51.1    AssignRemoteFnButton                 int8u & 0x1f
     14037   52.1    LensFocusFunctionButtons             int8u & 0x3f
     14038
     14039=head3 NikonCustom SettingsD850 Tags
     14040
     14041Custom settings for the D850.
     14042
     14043  Index1   Tag Name                             Writable
     14044  ------   --------                             --------
     14045    0.2    CustomSettingsBank                   int8u & 0x03
     14046    1.1    AF-CPrioritySelection                int8u & 0xc0
     14047    1.2    AF-SPrioritySelection                int8u & 0x20
     14048    1.3    AFPointSelection                     int8u & 0x10
     14049    1.4    Three-DTrackingFaceDetection         int8u & 0x08
     14050    1.5    BlockShotAFResponse                  int8u & 0x07
     14051    2.1    FocusPointWrap                       int8u & 0x08
     14052    2.2    AFPointBrightness                    int8u & 0x06
     14053    4.1    ISODisplay                           int8u & 0x08
     14054    4.2    GridDisplay                          int8u & 0x02
     14055    5.1    LCDIllumination                      int8u & 0x20
     14056    5.2    ElectronicFront-CurtainShutter       int8u & 0x08
     14057    6.1    ReverseIndicators                    int8u & 0x80
     14058    6.2    CommandDialsReverseRotation          int8u & 0x18
     14059    6.3    EasyExposureCompensation             int8u & 0x03
     14060    7.1    ExposureControlStepSize              int8u & 0xc0
     14061    7.2    ISOStepSize                          int8u & 0x30
     14062    7.3    ExposureCompStepSize                 int8u & 0x0c
     14063    8.1    CenterWeightedAreaSize               int8u & 0xe0
     14064    8.2    FineTuneOptMatrixMetering            int8u & 0x0f
     14065    9.1    FineTuneOptCenterWeighted            int8u & 0xf0
     14066    9.2    FineTuneOptSpotMetering              int8u & 0x0f
     14067   10.1    MultiSelectorShootMode               int8u & 0xe0
     14068   10.2    MultiSelectorPlaybackMode            int8u & 0x0c
     14069   10.3    MultiSelector                        int8u & 0x01
     14070   11.1    ExposureDelayMode                    int8u & 0xe0
     14071   11.2    CLModeShootingSpeed                  int8u & 0x0f
     14072   12.1    MaxContinuousRelease                 int8u
     14073   13.1    AutoBracketOrder                     int8u & 0x10
     14074   13.2    AutoBracketModeM                     int8u & 0x0c
     14075   14.1    Func1Button                          int8u & 0x3f
     14076   15.1    PreviewButton                        int8u & 0x3f
     14077   16.1    AssignBktButton                      int8u & 0x07
     14078   18.1    CommandDialsChangeMainSub            int8u & 0xe0
     14079   18.2    CommandDialsMenuAndPlayback          int8u & 0x18
     14080   18.3    CommandDialsApertureSetting          int8u & 0x04
     14081   18.4    ReleaseButtonToUseDial               int8u & 0x01
     14082   19.1    StandbyTimer                         int8u & 0xf0
     14083   20.1    SelfTimerTime                        int8u & 0xc0
     14084   20.2    SelfTimerShotInterval                int8u & 0x30
     14085   20.3    SelfTimerShotCount                   int8u & 0x0f
     14086   21.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14087   21.2    LiveViewMonitorOffTime               int8u & 0x1c
     14088   22.1    MenuMonitorOffTime                   int8u & 0xe0
     14089   22.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14090   23.1    FlashSyncSpeed                       int8u & 0xf0
     14091   23.2    FlashShutterSpeed                    int8u & 0x0f
     14092   31.1    ModelingFlash                        int8u & 0x20
     14093   36.1    PlaybackMonitorOffTime               int8u & 0xe0
     14094   37.1    MultiSelectorLiveView                int8u & 0xc0
     14095   38.1    ShutterSpeedLock                     int8u & 0x80
     14096   38.2    ApertureLock                         int8u & 0x40
     14097   38.3    MovieShutterButton                   int8u & 0x10
     14098   38.4    FlashExposureCompArea                int8u & 0x04
     14099   38.5    AutoFlashISOSensitivity              int8u & 0x02
     14100   41.1    MovieFunc1Button                     int8u & 0xf0
     14101   41.2    MoviePreviewButton                   int8u & 0x0f
     14102   42.1    Func1ButtonPlusDials                 int8u & 0x0f
     14103   43.1    PreviewButtonPlusDials               int8u & 0x0f
     14104   45.1    AssignMovieRecordButtonPlusDials     int8u & 0x0f
     14105   46.1    FineTuneOptHighlightWeighted         int8u & 0x0f
     14106   47.1    DynamicAreaAFDisplay                 int8u & 0x80
     14107   47.2    AFPointIllumination                  int8u & 0x40
     14108   47.3    StoreByOrientation                   int8u & 0x18
     14109   48.1    MatrixMetering                       int8u & 0x80
     14110   48.2    LiveViewButtonOptions                int8u & 0x30
     14111   48.3    AFModeRestrictions                   int8u & 0x03
     14112   49.1    LimitAFAreaModeSelection             int8u & 0x7e
     14113   52.1    LensFocusFunctionButtons             int8u & 0x3f
     14114   66.1    VerticalMultiSelector                int8u & 0xff
     14115   67.1    AssignMB-D18FuncButton               int8u & 0x3f
     14116   68.1    AssignMB-D18FuncButtonPlusDials      int8u & 0x0f
     14117   70.1    AF-OnButton                          int8u & 0x3f
     14118   71.1    SubSelector                          int8u & 0x80
     14119   72.1    SubSelectorCenter                    int8u & 0x3f
     14120   73.1    SubSelectorPlusDials                 int8u & 0x0f
     14121   74.1    AssignMovieSubselector               int8u & 0xf0
     14122   75.1    AssignMovieFunc1ButtonPlusDials      int8u & 0x10
     14123   75.2    AssignMoviePreviewButtonPlusDials    int8u & 0x01
     14124   76.1    AssignMovieSubselectorPlusDials      int8u & 0x10
     14125   77.1    SyncReleaseMode                      int8u & 0x80
     14126   77.2    ContinuousModeLiveView               int8u & 0x40
     14127   78.1    Three-DTrackingWatchArea             int8u & 0x80
     14128   78.2    SubjectMotion                        int8u & 0x60
     14129   78.3    AFActivation                         int8u & 0x08
     14130   78.4    ShutterReleaseButtonAE-L             int8u & 0x03
     14131   79.1    AssignMB-D18AF-OnButton              int8u & 0x7f
     14132   80.1    Func2Button                          int8u & 0x3f
     14133   82.1    AssignMovieFunc2Button               int8u & 0x70
     14134
    782214135=head3 NikonCustom SettingsD5000 Tags
    782314136
    782414137Custom settings for the D5000.
    782514138
    7826    Index   Tag Name                             Writable
    7827    -----   --------                             --------
     14139  Index1   Tag Name                             Writable
     14140  ------   --------                             --------
    782814141    0.1    AFAreaModeSetting                    int8u & 0x60
    782914142    0.2    AFAssist                             int8u & 0x01
     
    785314166   32.1    LiveViewAF                           int8u & 0x60
    785414167
     14168=head3 NikonCustom SettingsD5100 Tags
     14169
     14170Custom settings for the D5100.
     14171
     14172  Index1   Tag Name                             Writable
     14173  ------   --------                             --------
     14174    0.1    AF-CPrioritySelection                int8u & 0x80
     14175    1.1    AFAssist                             int8u & 0x01
     14176    3.1    Beep                                 int8u & 0xc0
     14177    3.2    NoMemoryCard                         int8u & 0x20
     14178    3.3    ISODisplay                           int8u & 0x08
     14179    4.1    FileNumberSequence                   int8u & 0x08
     14180    5.1    RangeFinder                          int8u & 0x10
     14181    5.2    ReverseIndicators                    int8u & 0x80
     14182    6.1    EVStepSize                           int8u & 0x40
     14183   10.1    ExposureDelayMode                    int8u & 0x40
     14184   12.1    AutoBracketSet                       int8u & 0xc0
     14185   13.1    TimerFunctionButton                  int8u & 0x38
     14186   16.1    AELockButton                         int8u & 0x38
     14187   17.1    ShutterReleaseButtonAE-L             int8u & 0x02
     14188   17.2    CommandDialsReverseRotation          int8u & 0x80
     14189   18.1    MeteringTime                         int8u & 0x70
     14190   18.2    RemoteOnDuration                     int8u & 0x03
     14191   19.1    SelfTimerTime                        int8u & 0xc0
     14192   19.2    SelfTimerShotCount                   int8u & 0x0f
     14193   20.1    ImageReviewTime                      int8u & 0xe0
     14194   20.2    LiveViewMonitorOffTime               int8u & 0x1c
     14195   21.1    PlaybackMenusTime                    int8u & 0xe0
     14196   23.1    ManualFlashOutput                    int8u & 0x1f
     14197
     14198=head3 NikonCustom SettingsD5200 Tags
     14199
     14200Custom settings for the D5200.
     14201
     14202  Index1   Tag Name                             Writable
     14203  ------   --------                             --------
     14204    0.1    AF-CPrioritySelection                int8u & 0x80
     14205    0.2    NumberOfFocusPoints                  int8u & 0x10
     14206    1.1    AFAssist                             int8u & 0x01
     14207    3.1    Beep                                 int8u & 0xc0
     14208    3.2    NoMemoryCard                         int8u & 0x20
     14209    3.3    ISODisplay                           int8u & 0x08
     14210    4.1    FileNumberSequence                   int8u & 0x08
     14211    5.1    RangeFinder                          int8u & 0x04
     14212    5.2    ReverseExposureCompDial              int8u & 0x10
     14213    5.3    ReverseShutterSpeedAperture          int8u & 0x08
     14214    5.4    ReverseIndicators                    int8u & 0x80
     14215    6.1    EVStepSize                           int8u & 0x40
     14216   10.1    ExposureDelayMode                    int8u & 0x40
     14217   12.1    AutoBracketSet                       int8u & 0xc0
     14218   13.1    FunctionButton                       int8u & 0x1f
     14219   16.1    AELockButton                         int8u & 0x0f
     14220   17.1    ShutterReleaseButtonAE-L             int8u & 0x02
     14221   18.1    StandbyTimer                         int8u & 0xe0
     14222   18.2    RemoteOnDuration                     int8u & 0x03
     14223   19.1    SelfTimerTime                        int8u & 0xc0
     14224   19.2    SelfTimerShotCount                   int8u & 0x0f
     14225   20.1    ImageReviewTime                      int8u & 0xe0
     14226   20.2    LiveViewMonitorOffTime               int8u & 0x1c
     14227   21.1    PlaybackMenusTime                    int8u & 0xe0
     14228   23.1    InternalFlash                        int8u & 0xc0
     14229   23.2    ManualFlashOutput                    int8u & 0x1f
     14230
    785514231=head3 NikonCustom SettingsD7000 Tags
    785614232
    785714233Custom settings for the D7000.
    785814234
    7859    Index   Tag Name                             Writable
    7860    -----   --------                             --------
     14235  Index1   Tag Name                             Writable
     14236  ------   --------                             --------
    786114237    0.1    AF-CPrioritySelection                int8u & 0x80
    786214238    0.2    AF-SPrioritySelection                int8u & 0x20
    786314239    0.3    NumberOfFocusPoints                  int8u & 0x10
    786414240    0.4    FocusTrackingLockOn                  int8u & 0x07
    7865     1.2    FocusPointWrap                       int8u & 0x08
    7866     1.3    AFPointIllumination                  int8u & 0x06
    7867     1.4    AFAssist                             int8u & 0x01
     14241    1.1    FocusPointWrap                       int8u & 0x08
     14242    1.2    AFPointIllumination                  int8u & 0x06
     14243    1.3    AFAssist                             int8u & 0x01
    786814244    2.1    BatteryOrder                         int8u & 0x40
    786914245    2.2    AF-OnForMB-D11                       int8u & 0x1c
     
    792414300   35.1    PlaybackMonitorOffTime               int8u & 0xe0
    792514301
     14302=head3 NikonCustom SettingsD4 Tags
     14303
     14304Custom settings for the D4 and D4S.
     14305
     14306  Index1   Tag Name                             Writable
     14307  ------   --------                             --------
     14308    0.1    CustomSettingsBank                   int8u & 0x03
     14309    1.1    AF-CPrioritySelection                int8u & 0xc0
     14310    1.2    AF-SPrioritySelection                int8u & 0x20
     14311    1.3    AFPointSelection                     int8u & 0x10
     14312    1.4    FocusTrackingLockOn                  int8u & 0x07
     14313    2.1    AFActivation                         int8u & 0x80
     14314    2.2    FocusPointWrap                       int8u & 0x08
     14315    4.1    Pitch                                int8u & 0x40
     14316    4.2    NoMemoryCard                         int8u & 0x20
     14317    4.3    GridDisplay                          int8u & 0x02
     14318    5.1    ShootingInfoDisplay                  int8u & 0xc0
     14319    5.2    LCDIllumination                      int8u & 0x20
     14320    5.3    ScreenTips                           int8u & 0x04
     14321    5.4    Beep                                 int8u & 0x03
     14322    6.1    ReverseIndicators                    int8u & 0x80
     14323    6.2    RearDisplay                          int8u & 0x40
     14324    6.3    ViewfinderDisplay                    int8u & 0x20
     14325    6.4    CommandDialsReverseRotation          int8u & 0x18
     14326    6.5    EasyExposureCompensation             int8u & 0x03
     14327    7.1    ExposureControlStepSize              int8u & 0xc0
     14328    7.2    ISOStepSize                          int8u & 0x30
     14329    7.3    ExposureCompStepSize                 int8u & 0x0c
     14330    8.1    CenterWeightedAreaSize               int8u & 0xe0
     14331    8.2    FineTuneOptMatrixMetering            int8u & 0x0f
     14332    9.1    FineTuneOptCenterWeighted            int8u & 0xf0
     14333    9.2    FineTuneOptSpotMetering              int8u & 0x0f
     14334   10.1    MultiSelectorShootMode               int8u & 0xc0
     14335   10.2    MultiSelectorPlaybackMode            int8u & 0x30
     14336   10.3    MultiSelector                        int8u & 0x01
     14337   11.1    ExposureDelayMode                    int8u & 0xc0
     14338   11.2    CHModeShootingSpeed                  int8u & 0x10
     14339   11.3    CLModeShootingSpeed                  int8u & 0x0f
     14340     12    MaxContinuousRelease                 int8u
     14341   13.1    AutoBracketSet                       int8u & 0xe0
     14342   13.2    AutoBracketOrder                     int8u & 0x10
     14343   13.3    AutoBracketModeM                     int8u & 0x0c
     14344   14.1    FuncButton                           int8u & 0xf8
     14345   14.2    FuncButtonPlusDials                  int8u & 0x07
     14346   15.1    PreviewButton                        int8u & 0xf8
     14347   15.2    PreviewButtonPlusDials               int8u & 0x07
     14348   16.1    AssignBktButton                      int8u & 0x07
     14349   18.1    CommandDialsChangeMainSub            int8u & 0xe0
     14350   18.2    CommandDialsMenuAndPlayback          int8u & 0x18
     14351   18.3    CommandDialsApertureSetting          int8u & 0x04
     14352   18.4    ShutterReleaseButtonAE-L             int8u & 0x02
     14353   18.5    ReleaseButtonToUseDial               int8u & 0x01
     14354   19.1    StandbyTimer                         int8u & 0xf0
     14355   20.1    SelfTimerTime                        int8u & 0xc0
     14356   20.2    SelfTimerShotCount                   int8u & 0x0f
     14357   20.3    SelfTimerShotInterval                int8u & 0x30
     14358   21.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14359   21.2    LiveViewMonitorOffTime               int8u & 0x1c
     14360   22.1    MenuMonitorOffTime                   int8u & 0xe0
     14361   22.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14362   23.1    FlashSyncSpeed                       int8u & 0xf0
     14363   23.2    FlashShutterSpeed                    int8u & 0x0f
     14364   31.1    ModelingFlash                        int8u & 0x20
     14365   36.1    PlaybackMonitorOffTime               int8u & 0xe0
     14366   37.1    PlaybackZoom                         int8u & 0x01
     14367   38.1    ShutterSpeedLock                     int8u & 0x80
     14368   38.2    ApertureLock                         int8u & 0x40
     14369   38.3    MovieShutterButton                   int8u & 0x30
     14370   38.4    FlashExposureCompArea                int8u & 0x04
     14371   41.1    MovieFunctionButton                  int8u & 0x70
     14372   41.2    MoviePreviewButton                   int8u & 0x07
     14373   42.1    VerticalMultiSelector                int8u & 0x60
     14374   42.2    VerticalFuncButton                   int8u & 0x1f
     14375   43.1    VerticalFuncButtonPlusDials          int8u & 0xf0
     14376   43.2    AssignMovieRecordButton              int8u & 0x07
     14377   46.1    DynamicAreaAFDisplay                 int8u & 0x80
     14378   46.2    AFPointIllumination                  int8u & 0x60
     14379   46.3    StoreByOrientation                   int8u & 0x18
     14380   46.4    GroupAreaAFIllumination              int8u & 0x04
     14381   46.5    AFPointBrightness                    int8u & 0x03
     14382   47.1    AFOnButton                           int8u & 0x70
     14383   47.2    VerticalAFOnButton                   int8u & 0x07
     14384   48.1    SubSelectorAssignment                int8u & 0x80
     14385   48.2    MovieSubSelectorAssignment           int8u & 0x07
     14386   49.1    SubSelector                          int8u & 0xf8
     14387   49.2    SubSelectorPlusDials                 int8u & 0x07
     14388   50.1    MatrixMetering                       int8u & 0x80
     14389   50.2    LiveViewButtonOptions                int8u & 0x30
     14390   50.3    AFModeRestrictions                   int8u & 0x03
     14391   51.1    LimitAFAreaModeSelection             int8u & 0x7e
     14392   52.1    MovieFunctionButtonPlusDials         int8u & 0x10
     14393   52.2    MoviePreviewButtonPlusDials          int8u & 0x01
     14394   53.1    MovieSubSelectorAssignmentPlusDials  int8u & 0x10
     14395   54.1    AssignRemoteFnButton                 int8u & 0x1f
     14396   55.1    LensFocusFunctionButtons             int8u & 0x3f
     14397
     14398=head3 NikonCustom SettingsD5 Tags
     14399
     14400Custom settings for the D5.
     14401
     14402  Index1   Tag Name                             Writable
     14403  ------   --------                             --------
     14404    0.1    CustomSettingsBank                   int8u & 0x03
     14405    1.1    AF-CPrioritySelection                int8u & 0xc0
     14406    1.2    AF-SPrioritySelection                int8u & 0x20
     14407    1.3    NumberOfFocusPoints                  int8u & 0x10
     14408    1.4    Three-DTrackingFaceDetection         int8u & 0x08
     14409    1.5    BlockShotAFResponse                  int8u & 0x07
     14410    2.1    FocusPointWrap                       int8u & 0x08
     14411    2.2    AFPointBrightness                    int8u & 0x06
     14412    4.1    ISODisplay                           int8u & 0x08
     14413    4.2    GridDisplay                          int8u & 0x02
     14414    5.1    LCDIllumination                      int8u & 0x20
     14415    5.2    ElectronicFront-CurtainShutter       int8u & 0x08
     14416    6.1    ReverseIndicators                    int8u & 0x80
     14417    6.2    CommandDialsReverseRotation          int8u & 0x18
     14418    6.3    EasyExposureCompensation             int8u & 0x03
     14419    7.1    ExposureControlStepSize              int8u & 0xc0
     14420    7.2    ISOStepSize                          int8u & 0x30
     14421    7.3    ExposureCompStepSize                 int8u & 0x0c
     14422    8.1    CenterWeightedAreaSize               int8u & 0xe0
     14423    8.2    FineTuneOptMatrixMetering            int8u & 0x0f
     14424    9.1    FineTuneOptCenterWeighted            int8u & 0xf0
     14425    9.2    FineTuneOptSpotMetering              int8u & 0x0f
     14426   10.1    MultiSelectorShootMode               int8u & 0xe0
     14427   10.3    MultiSelector                        int8u & 0x01
     14428   11.1    ExposureDelayMode                    int8u & 0xc0
     14429   11.2    CLModeShootingSpeed                  int8u & 0x0f
     14430   12.1    MaxContinuousRelease                 int8u
     14431   13.1    AutoBracketOrder                     int8u & 0x10
     14432   13.2    AutoBracketModeM                     int8u & 0x0c
     14433   14.1    Func1Button                          int8u & 0x3f
     14434   15.1    PreviewButton                        int8u & 0x3f
     14435   16.1    AssignBktButton                      int8u & 0x07
     14436   18.1    CommandDialsChangeMainSub            int8u & 0xe0
     14437   18.2    CommandDialsMenuAndPlayback          int8u & 0x18
     14438   18.3    CommandDialsApertureSetting          int8u & 0x04
     14439   18.4    ReleaseButtonToUseDial               int8u & 0x01
     14440   19.1    StandbyTimer                         int8u & 0xf0
     14441   20.1    SelfTimerTime                        int8u & 0xc0
     14442   20.2    SelfTimerShotInterval                int8u & 0x30
     14443   20.3    SelfTimerShotCount                   int8u & 0x0f
     14444   21.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14445   21.2    LiveViewMonitorOffTime               int8u & 0x1c
     14446   22.1    MenuMonitorOffTime                   int8u & 0xe0
     14447   22.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14448   23.1    FlashSyncSpeed                       int8u & 0xf0
     14449   23.2    FlashShutterSpeed                    int8u & 0x0f
     14450   31.1    ModelingFlash                        int8u & 0x20
     14451   36.1    PlaybackMonitorOffTime               int8u & 0xe0
     14452   37.1    MultiSelectorLiveView                int8u & 0xc0
     14453   38.1    ShutterSpeedLock                     int8u & 0x80
     14454   38.2    ApertureLock                         int8u & 0x40
     14455   38.3    MovieShutterButton                   int8u & 0x10
     14456   38.4    FlashExposureCompArea                int8u & 0x04
     14457   38.5    AutoFlashISOSensitivity              int8u & 0x02
     14458   41.1    MovieFunc1Button                     int8u & 0xf0
     14459   41.2    MoviePreviewButton                   int8u & 0x0f
     14460   42.1    Func1ButtonPlusDials                 int8u & 0x0f
     14461   43.1    PreviewButtonPlusDials               int8u & 0x0f
     14462   45.1    AssignMovieRecordButtonPlusDials     int8u & 0x0f
     14463   46.1    FineTuneOptHighlightWeighted         int8u & 0x0f
     14464   47.1    DynamicAreaAFDisplay                 int8u & 0x80
     14465   47.2    AFPointIllumination                  int8u & 0x40
     14466   47.3    StoreByOrientation                   int8u & 0x18
     14467   48.1    MatrixMetering                       int8u & 0x80
     14468   48.2    LiveViewButtonOptions                int8u & 0x30
     14469   48.3    AFModeRestrictions                   int8u & 0x03
     14470   49.1    LimitAFAreaModeSelection             int8u & 0x7e
     14471   52.1    LensFocusFunctionButtons             int8u & 0x3f
     14472   66.1    VerticalMultiSelector                int8u & 0xff
     14473   67.1    VerticalFuncButton                   int8u & 0x3f
     14474   68.1    VerticalFuncPlusDials                int8u & 0x0f
     14475   70.1    AF-OnButton                          int8u & 0x3f
     14476   71.1    SubSelector                          int8u & 0x80
     14477   72.1    SubSelectorCenter                    int8u & 0x3f
     14478   73.1    SubSelectorPlusDials                 int8u & 0x0f
     14479   74.1    AssignMovieSubselector               int8u & 0xf0
     14480   75.1    AssignMovieFunc1ButtonPlusDials      int8u & 0x10
     14481   75.2    AssignMoviePreviewButtonPlusDials    int8u & 0x01
     14482   76.1    AssignMovieSubselectorPlusDials      int8u & 0x10
     14483   77.1    SyncReleaseMode                      int8u & 0x80
     14484   78.1    Three-DTrackingWatchArea             int8u & 0x80
     14485   78.2    SubjectMotion                        int8u & 0x60
     14486   78.3    AFActivation                         int8u & 0x08
     14487   78.4    ShutterReleaseButtonAE-L             int8u & 0x03
     14488   79.1    VerticalAFOnButton                   int8u & 0x7f
     14489   80.1    Func2Button                          int8u & 0x3f
     14490   81.1    Func2ButtonPlusDials                 int8u & 0x0f
     14491   82.1    AssignMovieFunc2Button               int8u & 0x70
     14492   83.1    Func3Button                          int8u & 0x03
     14493
     14494=head3 NikonCustom SettingsD500 Tags
     14495
     14496Custom settings for the D500.
     14497
     14498  Index1   Tag Name                             Writable
     14499  ------   --------                             --------
     14500    0.1    CustomSettingsBank                   int8u & 0x03
     14501    1.1    AF-CPrioritySelection                int8u & 0xc0
     14502    1.2    AF-SPrioritySelection                int8u & 0x20
     14503    1.3    NumberOfFocusPoints                  int8u & 0x10
     14504    1.4    Three-DTrackingFaceDetection         int8u & 0x08
     14505    1.5    BlockShotAFResponse                  int8u & 0x07
     14506    2.1    FocusPointWrap                       int8u & 0x08
     14507    2.2    AFPointBrightness                    int8u & 0x06
     14508    4.1    ISODisplay                           int8u & 0x08
     14509    4.2    GridDisplay                          int8u & 0x02
     14510    5.1    LCDIllumination                      int8u & 0x20
     14511    5.2    ElectronicFront-CurtainShutter       int8u & 0x08
     14512    6.1    ReverseIndicators                    int8u & 0x80
     14513    6.2    CommandDialsReverseRotation          int8u & 0x18
     14514    6.3    EasyExposureCompensation             int8u & 0x03
     14515    7.1    ExposureControlStepSize              int8u & 0xc0
     14516    7.2    ISOStepSize                          int8u & 0x30
     14517    7.3    ExposureCompStepSize                 int8u & 0x0c
     14518    8.1    CenterWeightedAreaSize               int8u & 0xe0
     14519    8.2    FineTuneOptMatrixMetering            int8u & 0x0f
     14520    9.1    FineTuneOptCenterWeighted            int8u & 0xf0
     14521    9.2    FineTuneOptSpotMetering              int8u & 0x0f
     14522   10.1    MultiSelectorShootMode               int8u & 0xe0
     14523   10.2    MultiSelectorPlaybackMode            int8u & 0x0c
     14524   10.3    MultiSelector                        int8u & 0x01
     14525   11.1    ExposureDelayMode                    int8u & 0xc0
     14526   11.2    CLModeShootingSpeed                  int8u & 0x0f
     14527   12.1    MaxContinuousRelease                 int8u
     14528   13.1    AutoBracketOrder                     int8u & 0x10
     14529   13.2    AutoBracketModeM                     int8u & 0x0c
     14530   14.1    Func1Button                          int8u & 0x3f
     14531   15.1    PreviewButton                        int8u & 0x3f
     14532   16.1    AssignBktButton                      int8u & 0x07
     14533   18.1    CommandDialsChangeMainSub            int8u & 0xe0
     14534   18.2    CommandDialsMenuAndPlayback          int8u & 0x18
     14535   18.3    CommandDialsApertureSetting          int8u & 0x04
     14536   18.4    ReleaseButtonToUseDial               int8u & 0x01
     14537   19.1    StandbyTimer                         int8u & 0xf0
     14538   20.1    SelfTimerTime                        int8u & 0xc0
     14539   20.2    SelfTimerShotInterval                int8u & 0x30
     14540   20.3    SelfTimerShotCount                   int8u & 0x0f
     14541   21.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14542   21.2    LiveViewMonitorOffTime               int8u & 0x1c
     14543   22.1    MenuMonitorOffTime                   int8u & 0xe0
     14544   22.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14545   23.1    FlashSyncSpeed                       int8u & 0xf0
     14546   23.2    FlashShutterSpeed                    int8u & 0x0f
     14547   31.1    ModelingFlash                        int8u & 0x20
     14548   36.1    PlaybackMonitorOffTime               int8u & 0xe0
     14549   37.1    MultiSelectorLiveView                int8u & 0xc0
     14550   38.1    ShutterSpeedLock                     int8u & 0x80
     14551   38.2    ApertureLock                         int8u & 0x40
     14552   38.3    MovieShutterButton                   int8u & 0x10
     14553   38.4    FlashExposureCompArea                int8u & 0x04
     14554   38.5    AutoFlashISOSensitivity              int8u & 0x02
     14555   41.1    MovieFunc1Button                     int8u & 0xf0
     14556   41.2    MoviePreviewButton                   int8u & 0x0f
     14557   42.1    Func1ButtonPlusDials                 int8u & 0x0f
     14558   43.1    PreviewButtonPlusDials               int8u & 0x0f
     14559   45.1    AssignMovieRecordButtonPlusDials     int8u & 0x0f
     14560   46.1    FineTuneOptHighlightWeighted         int8u & 0x0f
     14561   47.1    DynamicAreaAFDisplay                 int8u & 0x80
     14562   47.2    AFPointIllumination                  int8u & 0x40
     14563   47.3    StoreByOrientation                   int8u & 0x18
     14564   47.4    GroupAreaAFIllumination              int8u & 0x04
     14565   48.1    MatrixMetering                       int8u & 0x80
     14566   48.2    LiveViewButtonOptions                int8u & 0x30
     14567   48.3    AFModeRestrictions                   int8u & 0x03
     14568   49.1    LimitAFAreaModeSelection             int8u & 0x7e
     14569   52.1    LensFocusFunctionButtons             int8u & 0x3f
     14570   66.1    VerticalMultiSelector                int8u & 0xff
     14571   67.1    AssignMB-D17FuncButton               int8u & 0x3f
     14572   68.1    AssignMB-D17FuncButtonPlusDials      int8u & 0x0f
     14573   70.1    AF-OnButton                          int8u & 0x3f
     14574   71.1    SubSelector                          int8u & 0x80
     14575   72.1    SubSelectorCenter                    int8u & 0x3f
     14576   73.1    SubSelectorPlusDials                 int8u & 0x0f
     14577   74.1    AssignMovieSubselector               int8u & 0xf0
     14578   75.1    AssignMovieFunc1ButtonPlusDials      int8u & 0x10
     14579   75.2    AssignMoviePreviewButtonPlusDials    int8u & 0x01
     14580   76.1    AssignMovieSubselectorPlusDials      int8u & 0x10
     14581   77.1    SyncReleaseMode                      int8u & 0x80
     14582   78.1    Three-DTrackingWatchArea             int8u & 0x80
     14583   78.2    SubjectMotion                        int8u & 0x60
     14584   78.3    AFActivation                         int8u & 0x08
     14585   78.4    ShutterReleaseButtonAE-L             int8u & 0x03
     14586   79.1    AssignMB-D17AF-OnButton              int8u & 0x7f
     14587   80.1    Func2Button                          int8u & 0x3f
     14588   82.1    AssignMovieFunc2Button               int8u & 0x70
     14589
     14590=head3 NikonCustom SettingsD610 Tags
     14591
     14592Custom settings for the D610.
     14593
     14594  Index1   Tag Name                             Writable
     14595  ------   --------                             --------
     14596    0.1    AF-CPrioritySelection                int8u & 0x80
     14597    0.2    AF-SPrioritySelection                int8u & 0x20
     14598    0.3    NumberOfFocusPoints                  int8u & 0x10
     14599    0.4    FocusTrackingLockOn                  int8u & 0x07
     14600    1.1    FocusPointWrap                       int8u & 0x08
     14601    1.2    AFPointIllumination                  int8u & 0x06
     14602    1.3    AFAssist                             int8u & 0x01
     14603    5.1    EasyExposureCompensation             int8u & 0x03
     14604    6.1    ExposureControlStep                  int8u & 0x40
     14605    6.2    ISOSensitivityStep                   int8u & 0x10
     14606    7.1    CenterWeightedAreaSize               int8u & 0xe0
     14607    7.2    FineTuneOptMatrixMetering            int8u & 0x0f
     14608    8.1    FineTuneOptCenterWeighted            int8u & 0xf0
     14609    8.2    FineTuneOptSpotMetering              int8u & 0x0f
     14610   17.1    ShutterReleaseButtonAE-L             int8u & 0x02
     14611   18.1    StandbyTimer                         int8u & 0xf0
     14612   18.2    RemoteOnDuration                     int8u & 0x03
     14613   19.1    SelfTimerTime                        int8u & 0xc0
     14614   19.2    SelfTimerShotInterval                int8u & 0x30
     14615   19.3    SelfTimerShotCount                   int8u & 0x0f
     14616   20.1    ImageReviewMonitorOffTime            int8u & 0xe0
     14617   20.2    LiveViewMonitorOffTime               int8u & 0x1c
     14618   21.1    MenuMonitorOffTime                   int8u & 0xe0
     14619   21.2    ShootingInfoMonitorOffTime           int8u & 0x1c
     14620   35.1    PlaybackMonitorOffTime               int8u & 0xe0
     14621
    792614622=head2 NikonCapture Tags
    792714623
     
    794114637  0x3cfc73c6   RedEyeData                       NikonCapture RedEyeData
    794214638  0x3d136244   EditVersionName                  string
     14639  0x416391c6   QuickFix                         int8u
    794314640  0x56a54260   Exposure                         NikonCapture Exposure
    794414641  0x5f0e7d23   ColorBooster                     int8u
     
    797214669=head3 NikonCapture HighlightData Tags
    797314670
    7974    Index   Tag Name                             Writable
    7975    -----   --------                             --------
     14671  Index1   Tag Name                             Writable
     14672  ------   --------                             --------
    797614673      0    ShadowProtection                     int8s
    797714674      1    SaturationAdj                        int8s
     
    798014677=head3 NikonCapture CropData Tags
    798114678
    7982    Index   Tag Name                             Writable
    7983    -----   --------                             --------
     14679  Index1   Tag Name                             Writable
     14680  ------   --------                             --------
    798414681     30    CropLeft                             double
    798514682     38    CropTop                              double
     
    799814695=head3 NikonCapture PictureCtrl Tags
    799914696
    8000    Index   Tag Name                             Writable
    8001    -----   --------                             --------
     14697  Index1   Tag Name                             Writable
     14698  ------   --------                             --------
    800214699      0    PictureControlActive                 int8u
    800314700     19    PictureControlMode                   string[16]
     
    801114708=head3 NikonCapture RedEyeData Tags
    801214709
    8013    Index   Tag Name                             Writable
    8014    -----   --------                             --------
     14710  Index1   Tag Name                             Writable
     14711  ------   --------                             --------
    801514712      0    RedEyeCorrection                     int8u
    801614713
    801714714=head3 NikonCapture Exposure Tags
    801814715
    8019    Index   Tag Name                             Writable
    8020    -----   --------                             --------
     14716  Index1   Tag Name                             Writable
     14717  ------   --------                             --------
    802114718      0    ExposureAdj                          int16s
    8022      18    ExposureAdj2                         double~
     14719     18    ExposureAdj2                         double
    802314720     36    ActiveD-Lighting                     int8u
    802414721     37    ActiveD-LightingMode                 int8u
     
    802614723=head3 NikonCapture Brightness Tags
    802714724
    8028    Index   Tag Name                             Writable
    8029    -----   --------                             --------
     14725  Index1   Tag Name                             Writable
     14726  ------   --------                             --------
    803014727      0    BrightnessAdj                        double
    803114728      8    EnhanceDarkTones                     int8u
     
    803314730=head3 NikonCapture DLightingHQ Tags
    803414731
    8035    Index   Tag Name                             Writable
    8036    -----   --------                             --------
     14732  Index4   Tag Name                             Writable
     14733  ------   --------                             --------
    803714734      0    D-LightingHQShadow                   int32u
    803814735      1    D-LightingHQHighlight                int32u
     
    804114738=head3 NikonCapture NoiseReduction Tags
    804214739
    8043    Index   Tag Name                             Writable
    8044    -----   --------                             --------
     14740  Index1   Tag Name                             Writable
     14741  ------   --------                             --------
    804514742      4    EdgeNoiseReduction                   int8u
    804614743      5    ColorMoireReductionMode              int8u
     
    805514752=head3 NikonCapture PhotoEffects Tags
    805614753
    8057    Index   Tag Name                             Writable
    8058    -----   --------                             --------
     14754  Index1   Tag Name                             Writable
     14755  ------   --------                             --------
    805914756      0    PhotoEffectsType                     int8u
    806014757      4    PhotoEffectsRed                      int16s
     
    806414761=head3 NikonCapture ColorBoost Tags
    806514762
    8066    Index   Tag Name                             Writable
    8067    -----   --------                             --------
     14763  Index1   Tag Name                             Writable
     14764  ------   --------                             --------
    806814765      0    ColorBoostType                       int8u
    806914766      1    ColorBoostLevel                      int32u
     
    807114768=head3 NikonCapture WBAdjData Tags
    807214769
    8073    Index   Tag Name                             Writable
    8074    -----   --------                             --------
     14770  Index1   Tag Name                             Writable
     14771  ------   --------                             --------
    807514772      0    WBAdjRedBalance                      double
    807614773      8    WBAdjBlueBalance                     double
    807714774     16    WBAdjMode                            int8u
    8078      20    WBAdjLightingSubtype                 int8u
    8079      21    WBAdjLighting                        int8u
     14775     20    WBAdjLighting                        int16u
    808014776     24    WBAdjTemperature                     int16u
    808114777     37    WBAdjTint                            int32s
     
    808314779=head3 NikonCapture DLightingHS Tags
    808414780
    8085    Index   Tag Name                             Writable
    8086    -----   --------                             --------
     14781  Index4   Tag Name                             Writable
     14782  ------   --------                             --------
    808714783      0    D-LightingHSAdjustment               int32u
    808814784      1    D-LightingHSColorBoost               int32u
     
    809014786=head3 NikonCapture UnsharpData Tags
    809114787
    8092    Index   Tag Name                             Writable
    8093    -----   --------                             --------
     14788  Index1   Tag Name                             Writable
     14789  ------   --------                             --------
    809414790      0    UnsharpCount                         int8u
    809514791     19    Unsharp1Color                        int16u
     
    811014806    108    Unsharp4Threshold                    int8u
    811114807
     14808=head2 Nintendo Tags
     14809
     14810  Tag ID   Tag Name                             Writable
     14811  ------   --------                             --------
     14812  0x1101   CameraInfo                           Nintendo CameraInfo
     14813
     14814=head3 Nintendo CameraInfo Tags
     14815
     14816  Index1   Tag Name                             Writable
     14817  ------   --------                             --------
     14818      0    ModelID                              undef[4]
     14819      8    TimeStamp                            int32u
     14820     24    InternalSerialNumber                 undef[4]
     14821     40    Parallax                             float
     14822     48    Category                             int16u
     14823
    811214824=head2 Olympus Tags
    811314825
    811414826Tags 0x0000 through 0x0103 are used by some older Olympus cameras, and are
    8115 the same as Konica/Minolta tags.  The Olympus tags are also used for Epson
    8116 and Agfa cameras.
     14827the same as Konica/Minolta tags.  These tags are also used for some models
     14828from other brands such as Acer, BenQ, Epson, Hitachi, HP, Maginon, Minolta,
     14829Pentax, Ricoh, Samsung, Sanyo, SeaLife, Sony, Supra and Vivitar.
    811714830
    811814831  Tag ID   Tag Name                             Writable
     
    812214835  0x0003   MinoltaCameraSettings                Minolta CameraSettings
    812314836  0x0040   CompressedImageSize                  int32u
    8124   0x0081   PreviewImageData                     N
    8125   0x0088   PreviewImageStart                    N
    8126   0x0089   PreviewImageLength                   N
     14837  0x0081   PreviewImageData                     no
     14838  0x0088   PreviewImageStart                    no
     14839  0x0089   PreviewImageLength                   no
    812714840  0x0100   ThumbnailImage                       undef
    812814841  0x0104   BodyFirmwareVersion                  string
     
    813714850  0x0208   TextInfo                             Olympus TextInfo
    813814851  0x0209   CameraID                             string
    8139   0x020b   EpsonImageWidth                      int16u
    8140   0x020c   EpsonImageHeight                     int16u
     14852  0x020b   EpsonImageWidth                      int32u
     14853  0x020c   EpsonImageHeight                     int32u
    814114854  0x020d   EpsonSoftware                        string
    814214855  0x0280   PreviewImage                         int8u
     
    814614859  0x0303   WhiteBalanceBracket                  int16u
    814714860  0x0304   WhiteBalanceBias                     int16u
     14861  0x0400   SensorArea                           undef[8]
     14862  0x0401   BlackLevel                           int32u[4]
    814814863  0x0403   SceneMode                            int16u
    814914864  0x0404   SerialNumber                         string
    815014865  0x0405   Firmware                             string
    815114866  0x0e00   PrintIM                              PrintIM
    8152   0x0f00   DataDump                             N
    8153   0x0f01   DataDump2                            N
     14867  0x0f00   DataDump                             no
     14868  0x0f01   DataDump2                            no
    815414869  0x0f04   ZoomedPreviewStart                   int32u*
    815514870  0x0f05   ZoomedPreviewLength                  int32u*
     
    826314978  Tag ID               Tag Name                 Writable
    826414979  ------               --------                 --------
    8265   'Resolution'         Resolution               N
    8266   'Type'               CameraType               N
     14980  'Resolution'         Resolution               no
     14981  'Type'               CameraType               no
    826714982
    826814983=head3 Olympus Equipment Tags
     
    828414999  0x0207   MinFocalLength                       int16u
    828515000  0x0208   MaxFocalLength                       int16u
    8286   0x020a   MaxApertureAtCurrentFocal            int16u
     15001  0x020a   MaxAperture                          int16u
    828715002  0x020b   LensProperties                       int16u
    828815003  0x0301   Extender                             int8u[6]
     
    829015005  0x0303   ExtenderModel                        string
    829115006  0x0304   ExtenderFirmwareVersion              int32u
     15007  0x0403   ConversionLens                       string
    829215008  0x1000   FlashType                            int16u
    829315009  0x1001   FlashModel                           int16u
     
    830715023  0x0202   MeteringMode                         int16u
    830815024  0x0203   ExposureShift                        rational64s
     15025  0x0204   NDFilter                             yes
    830915026  0x0300   MacroMode                            int16u
    831015027  0x0301   FocusMode                            int16u[n]
     
    831215029  0x0303   AFSearch                             int16u
    831315030  0x0304   AFAreas                              int32u[64]~
    8314   0x0305   AFPointSelected                      rational64s[5]~
     15031  0x0305   AFPointSelected                      rational64s[5]
     15032  0x0306   AFFineTune                           int8u
    831515033  0x0307   AFFineTuneAdj                        int16s[3]
     15034  0x0308   FocusBracketStepSize                 int8u
    831615035  0x0400   FlashMode                            int16u
    831715036  0x0401   FlashExposureComp                    rational64s
    831815037  0x0403   FlashRemoteControl                   int16u
    8319   0x0404   FlashControlMode                     int16u[3]
    8320   0x0405   FlashIntensity                       rational64s[3]
    8321   0x0406   ManualFlashStrength                  rational64s[3]
     15038  0x0404   FlashControlMode                     int16u[n]
     15039  0x0405   FlashIntensity                       rational64s[n]
     15040  0x0406   ManualFlashStrength                  rational64s[n]
    832215041  0x0500   WhiteBalance2                        int16u
    832315042  0x0501   WhiteBalanceTemperature              int16u
     
    834415063  0x0529   ArtFilter                            int16u[4]
    834515064  0x052c   MagicFilter                          int16u[4]
     15065  0x052d   PictureModeEffect                    int16s[3]
     15066  0x052e   ToneLevel                            yes
     15067  0x052f   ArtFilterEffect                      int16u[20]
     15068  0x0532   ColorCreatorEffect                   int16s[6]
     15069  0x0537   MonochromeProfileSettings            int16s[6]
     15070  0x0538   FilmGrainEffect                      int16s
     15071  0x0539   ColorProfileSettings                 int16s[14]
     15072  0x053a   MonochromeVignetting                 int16s
     15073  0x053b   MonochromeColor                      int16s
    834615074  0x0600   DriveMode                            int16u[n]~
    834715075  0x0601   PanoramaMode                         int16u~
    834815076  0x0603   ImageQuality2                        int16u
    834915077  0x0604   ImageStabilization                   int32u
     15078  0x0804   StackedImage                         int32u[2]
    835015079  0x0900   ManometerPressure                    int16u
    835115080  0x0901   ManometerReading                     int32s[2]
    835215081  0x0902   ExtendedWBDetect                     int16u
    8353   0x0903   LevelGaugeRoll                       int16u
    8354   0x0904   LevelGaugePitch                      int16u
     15082  0x0903   RollAngle                            int16s[2]
     15083  0x0904   PitchAngle                           int16s[2]
     15084  0x0908   DateTimeUTC                          string
    835515085
    835615086=head3 Olympus RawDevelopment Tags
     
    840015130  0x0119   RawDevAutoGradation                  int16u
    840115131  0x0120   RawDevPMNoiseFilter                  int16u
     15132  0x0121   RawDevArtFilter                      int16u[4]
    840215133
    840315134=head3 Olympus ImageProcessing Tags
     
    844815179  0x0614   CropWidth                            int32u
    844915180  0x0615   CropHeight                           int32u
     15181  0x0635   UnknownBlock1?                       undef
     15182  0x0636   UnknownBlock2?                       undef
     15183  0x0805   SensorCalibration                    int16s[2]
    845015184  0x1010   NoiseReduction2                      int16u
    845115185  0x1011   DistortionCorrection2                int16u
    845215186  0x1012   ShadingCompensation2                 int16u
    845315187  0x101c   MultipleExposureMode                 int16u[2]
    8454   0x1103   UnknownBlock?                        undef
     15188  0x1103   UnknownBlock3?                       undef
     15189  0x1104   UnknownBlock4?                       undef
    845515190  0x1112   AspectRatio                          int8u[2]
    845615191  0x1113   AspectFrame                          int16u[4]
     
    846015195  0x1203   FaceDetectFrameSize                  int16u[6]
    846115196  0x1207   FaceDetectFrameCrop                  int16s[12]
     15197  0x1306   CameraTemperature                    no
     15198  0x1900   KeystoneCompensation                 int8u[2]
     15199  0x1901   KeystoneDirection                    int8u[2]
     15200  0x1906   KeystoneValue                        int16s[3]
    846215201
    846315202=head3 Olympus FocusInfo Tags
     
    847615215  0x0305   FocusDistance                        rational64u
    847715216  0x0308   AFPoint                              int16u
     15217  0x0328   AFInfo                               Olympus AFInfo
    847815218  0x1201   ExternalFlash                        int16u[2]
    847915219  0x1203   ExternalFlashGuideNumber?            rational64s
     
    848215222  0x1208   InternalFlash                        int16u[n]
    848315223  0x1209   ManualFlash                          int16u[2]~
     15224  0x120a   MacroLED                             int16u
    848415225  0x1500   SensorTemperature                    int16s
    848515226  0x1600   ImageStabilization                   undef~
    848615227
     15228=head3 Olympus AFInfo Tags
     15229
     15230  Index1   Tag Name                             Writable
     15231  ------   --------                             --------
     15232  [no tags known]
     15233
    848715234=head3 Olympus FE Tags
    848815235
     
    849615243=head3 Olympus RawInfo Tags
    849715244
    8498 These tags are found only in ORF images of some models (ie. C8080WZ).
     15245These tags are found only in ORF images of some models (eg. C8080WZ).
    849915246
    850015247  Tag ID   Tag Name                             Writable
     
    851615263  0x0311   CoringValues                         int16u[11]
    851715264  0x0600   BlackLevel2                          int16u[4]
    8518   0x0601   YCbCrCoefficients                    N
     15265  0x0601   YCbCrCoefficients                    no
    851915266  0x0611   ValidPixelDepth                      int16u[2]
    852015267  0x0612   CropLeft                             int16u
     
    854315290  [no tags known]
    854415291
     15292=head3 Olympus DSS Tags
     15293
     15294Information extracted from DSS/DS2 files and the ID3 XOLY frame of MP3 files
     15295written by some Olympus voice recorders.
     15296
     15297  Index1   Tag Name                             Writable
     15298  ------   --------                             --------
     15299     12    Model                                no
     15300     38    StartTime                            no
     15301     50    EndTime                              no
     15302     62    Duration                             no
     15303    798    Comment                              no
     15304
    854515305=head3 Olympus MOV1 Tags
    854615306
     
    854815308D540Z, D595Z, FE100, FE110, FE115, FE170 and FE200.
    854915309
    8550    Index   Tag Name                             Writable
    8551    -----   --------                             --------
    8552       0    Make                                 N
    8553      24    Model                                N
    8554      38    ExposureUnknown?                     N
    8555      42    FNumber                              N
    8556      50    ExposureCompensation                 N
    8557      72    FocalLength                          N
     15310  Index1   Tag Name                             Writable
     15311  ------   --------                             --------
     15312      0    Make                                 no
     15313     24    Model                                no
     15314     38    ExposureUnknown?                     no
     15315     42    FNumber                              no
     15316     50    ExposureCompensation                 no
     15317     72    FocalLength                          no
    855815318
    855915319=head3 Olympus MOV2 Tags
     
    856215322FE120, FE140 and FE190.
    856315323
    8564    Index   Tag Name                             Writable
    8565    -----   --------                             --------
    8566       0    Make                                 N
    8567      24    Model                                N
    8568      54    ExposureTime                         N
    8569      58    FNumber                              N
    8570      66    ExposureCompensation                 N
    8571      88    FocalLength                          N
    8572     193    ISO                                  N
     15324  Index1   Tag Name                             Writable
     15325  ------   --------                             --------
     15326      0    Make                                 no
     15327     24    Model                                no
     15328     54    ExposureTime                         no
     15329     58    FNumber                              no
     15330     66    ExposureCompensation                 no
     15331     88    FocalLength                          no
     15332    193    ISO                                  no
    857315333
    857415334=head3 Olympus MP4 Tags
     
    857715337u7040 and u9010.
    857815338
    8579    Index   Tag Name                             Writable
    8580    -----   --------                             --------
    8581       0    Make                                 N
    8582      24    Model                                N
    8583      40    FNumber                              N
    8584      48    ExposureCompensation                 N
     15339  Index1   Tag Name                             Writable
     15340  ------   --------                             --------
     15341      0    Make                                 no
     15342     24    Model                                no
     15343     40    FNumber                              no
     15344     48    ExposureCompensation                 no
     15345    104    MovableInfo                          Olympus MovableInfo
     15346    114    MovableInfo                          Olympus MovableInfo
     15347
     15348=head3 Olympus MovableInfo Tags
     15349
     15350  Index1   Tag Name                             Writable
     15351  ------   --------                             --------
     15352      4    ISO                                  no
     15353     44    EncoderVersion                       no
     15354     60    DecoderVersion                       no
     15355    131    Thumbnail                            Olympus Thumbnail
     15356
     15357=head3 Olympus Thumbnail Tags
     15358
     15359  Index4   Tag Name                             Writable
     15360  ------   --------                             --------
     15361      1    ThumbnailWidth                       no
     15362      2    ThumbnailHeight                      no
     15363      3    ThumbnailLength                      no
     15364      4    ThumbnailOffset                      no
     15365
     15366=head3 Olympus MOV3 Tags
     15367
     15368QuickTime information found in the TAGS atom of MOV videos from the E-M5.
     15369
     15370  Tag ID   Tag Name                             Writable
     15371  ------   --------                             --------
     15372  'OLYM'   OlympusAtom                          Olympus OLYM2
     15373
     15374=head3 Olympus OLYM2 Tags
     15375
     15376  Tag ID   Tag Name                             Writable
     15377  ------   --------                             --------
     15378  'prms'   MakerNotes                           Olympus prms
     15379  'scrn'   PreviewInfo                          Olympus scrn2
     15380  'thmb'   ThumbInfo                            Olympus thmb2
     15381
     15382=head3 Olympus prms Tags
     15383
     15384Information extracted from the "prms" atom in MOV videos from Olympus models
     15385such as the OM E-M5.
     15386
     15387  Index1   Tag Name                             Writable
     15388  ------   --------                             --------
     15389     18    Make                                 no
     15390     44    Model                                no
     15391    131    DateTime1                            no
     15392    157    DateTime2                            no
     15393
     15394=head3 Olympus scrn2 Tags
     15395
     15396  Index1   Tag Name                             Writable
     15397  ------   --------                             --------
     15398      2    OlympusPreview                       Olympus scrn
     15399
     15400=head3 Olympus scrn Tags
     15401
     15402Information extracted from the "scrn" atom of Olympus MP4 videos.
     15403
     15404  Index1   Tag Name                             Writable
     15405  ------   --------                             --------
     15406      0    PreviewImageLength                   no
     15407      4    PreviewImage                         no
     15408
     15409=head3 Olympus thmb2 Tags
     15410
     15411  Index1   Tag Name                             Writable
     15412  ------   --------                             --------
     15413      0    ThumbnailWidth                       no
     15414      2    ThumbnailHeight                      no
     15415      4    ThumbnailLength                      no
     15416      8    ThumbnailImage                       no
     15417
     15418=head3 Olympus thmb Tags
     15419
     15420Information extracted from the "thmb" atom of Olympus MP4 videos.
     15421
     15422  Index1   Tag Name                             Writable
     15423  ------   --------                             --------
     15424      0    ThumbnailLength                      no
     15425      4    ThumbnailImage                       no
     15426
     15427=head3 Olympus OLYM Tags
     15428
     15429Tags found in the OLYM atom of MP4 videos from the TG-810.
     15430
     15431  Index1   Tag Name                             Writable
     15432  ------   --------                             --------
     15433     14    Make                                 no
     15434     40    Model                                no
     15435     90    FNumber                              no
     15436    127    DateTimeOriginal                     no
     15437    153    DateTime2                            no
     15438    265    ThumbnailWidth                       no
     15439    267    ThumbnailHeight                      no
    858515440
    858615441=head3 Olympus AVI Tags
     
    858815443This information is found in Olympus AVI videos.
    858915444
    8590    Index   Tag Name                             Writable
    8591    -----   --------                             --------
    8592      18    Make                                 N
    8593      44    ModelType                            N
    8594      94    FNumber                              N
    8595     131    DateTime1                            N
    8596     157    DateTime2                            N
    8597     301    ThumbnailLength                      N
    8598     305    ThumbnailImage                       N
     15445  Index1   Tag Name                             Writable
     15446  ------   --------                             --------
     15447     18    Make                                 no
     15448     44    Model                                no
     15449     94    FNumber                              no
     15450    131    DateTime1                            no
     15451    157    DateTime2                            no
     15452    297    ThumbInfo                            Olympus thmb2
    859915453
    860015454=head3 Olympus WAV Tags
     
    860315457like the LS-5, LS-10, LS-11.
    860415458
    8605    Index   Tag Name                             Writable
    8606    -----   --------                             --------
    8607      12    Model                                N
    8608      28    FileNumber                           N
    8609      38    DateTimeOriginal                     N
    8610      50    DateTimeEnd                          N
    8611      62    RecordingTime                        N
    8612     512    Duration                             N
    8613     522    Index01                              N
    8614     532    Index02                              N
    8615     542    Index03                              N
    8616     552    Index04                              N
    8617     562    Index05                              N
    8618     572    Index06                              N
    8619     582    Index07                              N
    8620     592    Index08                              N
    8621     602    Index09                              N
    8622     612    Index10                              N
    8623     622    Index11                              N
    8624     632    Index12                              N
    8625     642    Index13                              N
    8626     652    Index14                              N
    8627     662    Index15                              N
    8628     672    Index16                              N
     15459  Index1   Tag Name                             Writable
     15460  ------   --------                             --------
     15461     12    Model                                no
     15462     28    FileNumber                           no
     15463     38    DateTimeOriginal                     no
     15464     50    DateTimeEnd                          no
     15465     62    RecordingTime                        no
     15466    512    Duration                             no
     15467    522    Index01                              no
     15468    532    Index02                              no
     15469    542    Index03                              no
     15470    552    Index04                              no
     15471    562    Index05                              no
     15472    572    Index06                              no
     15473    582    Index07                              no
     15474    592    Index08                              no
     15475    602    Index09                              no
     15476    612    Index10                              no
     15477    622    Index11                              no
     15478    632    Index12                              no
     15479    642    Index13                              no
     15480    652    Index14                              no
     15481    662    Index15                              no
     15482    672    Index16                              no
    862915483
    863015484=head2 Panasonic Tags
     
    864315497  0x001f   ShootingMode                         int16u
    864415498  0x0020   Audio                                int16u
    8645   0x0021   DataDump                             N
     15499  0x0021   DataDump                             no
    864615500  0x0023   WhiteBalanceBias                     int16s
    864715501  0x0024   FlashBias                            int16s
    864815502  0x0025   InternalSerialNumber                 undef[16]
    864915503  0x0026   PanasonicExifVersion                 undef
     15504  0x0027   VideoFrameRate                       int16u
    865015505  0x0028   ColorEffect                          int16u
    865115506  0x0029   TimeSincePowerOn                     int32u
     
    866215517  0x0035   ConversionLens                       int16u
    866315518  0x0036   TravelDay                            int16u
     15519  0x0038   BatteryLevel                         int16u
    866415520  0x0039   Contrast                             int16u
    866515521  0x003a   WorldTimeLocation                    int16u
    866615522  0x003b   TextStamp                            int16u
    866715523  0x003c   ProgramISO                           int16u
    8668   0x003d   AdvancedSceneMode                    int16u
     15524  0x003d   AdvancedSceneType                    int16u
    866915525  0x003e   TextStamp                            int16u
    867015526  0x003f   FacesDetected                        int16u
     
    867215528  0x0041   Sharpness                            int16u
    867315529  0x0042   FilmMode                             int16u
    8674   0x0046   WBAdjustAB                           int16u
    8675   0x0047   WBAdjustGM                           int16u
     15530  0x0043   JPEGQuality                          int16u
     15531  0x0044   ColorTempKelvin                      int16u
     15532  0x0045   BracketSettings                      int16u
     15533  0x0046   WBShiftAB                            int16u
     15534  0x0047   WBShiftGM                            int16u
     15535  0x0048   FlashCurtain                         int16u
     15536  0x0049   LongExposureNoiseReduction           int16u
    867615537  0x004b   PanasonicImageWidth                  int32u
    867715538  0x004c   PanasonicImageHeight                 int32u
     
    868115542  0x0052   LensSerialNumber                     string
    868215543  0x0053   AccessoryType                        string
     15544  0x0054   AccessorySerialNumber                string
    868315545  0x0059   Transform                            undef[4]
    868415546  0x005d   IntelligentExposure                  int16u
     15547  0x0060   LensFirmwareVersion                  undef[4]
    868515548  0x0061   FaceRecInfo                          Panasonic FaceRecInfo
    868615549  0x0062   FlashWarning                         int16u
     
    869415557  0x006f   Landmark                             undef
    869515558  0x0070   IntelligentResolution                int8u
     15559  0x0076   HDRShot                              int16u
     15560  0x0077   BurstSpeed                           int16u
    869615561  0x0079   IntelligentD-Range                   int16u
     15562  0x007c   ClearRetouch                         int16u
     15563  0x0080   City2                                undef
     15564  0x0086   ManometerPressure                    int16u
     15565  0x0089   PhotoStyle                           int16u
     15566  0x008a   ShadingCompensation                  int16u
     15567  0x008b   WBShiftIntelligentAuto               int16u
     15568  0x008c   AccelerometerZ                       int16u
     15569  0x008d   AccelerometerX                       int16u
     15570  0x008e   AccelerometerY                       int16u
     15571  0x008f   CameraOrientation                    int8u
     15572  0x0090   RollAngle                            int16u
     15573  0x0091   PitchAngle                           int16u
     15574  0x0092   WBShiftCreativeControl               int8u
     15575  0x0093   SweepPanoramaDirection               int8u
     15576  0x0094   SweepPanoramaFieldOfView             int16u
     15577  0x0096   TimerRecording                       int8u
     15578  0x009d   InternalNDFilter                     rational64u
     15579  0x009e   HDR                                  int16u
     15580  0x009f   ShutterType                          int16u
     15581  0x00a1   FilterEffect                         rational64u[0.5]
     15582  0x00a3   ClearRetouchValue                    rational64u
     15583  0x00a7   OutputLUT                            yes
     15584  0x00ab   TouchAE                              int16u
     15585  0x00ac   MonochromeFilterEffect               int16u
     15586  0x00ad   HighlightShadow                      int16u[2]
     15587  0x00af   TimeStamp                            string
     15588  0x00b3   VideoBurstResolution                 int16u
     15589  0x00b4   MultiExposure                        int16u
     15590  0x00b9   RedEyeRemoval                        int16u
     15591  0x00bb   VideoBurstMode                       int32u
     15592  0x00bc   DiffractionCorrection                int16u
     15593  0x00bd   FocusBracket                         int16u
     15594  0x00be   LongExposureNRUsed                   int16u
     15595  0x00bf   PostFocusMerging                     int32u[2]
     15596  0x00c1   VideoPreburst                        int16u
     15597  0x00c4   LensTypeMake                         int16u
     15598  0x00c5   LensTypeModel                        int16u
     15599  0x00ca   SensorType                           int16u
     15600  0x00d1   ISO                                  int32u
     15601  0x00d2   MonochromeGrainEffect                int16u
     15602  0x00d6   NoiseReductionStrength               rational64s
    869715603  0x0e00   PrintIM                              PrintIM
     15604  0x2003   TimeInfo                             Panasonic TimeInfo
    869815605  0x8000   MakerNoteVersion                     undef
    869915606  0x8001   SceneMode                            int16u
     15607  0x8002   HighlightWarning                     int16u
     15608  0x8003   DarkFocusEnvironment                 int16u
    870015609  0x8004   WBRedLevel                           int16u
    870115610  0x8005   WBGreenLevel                         int16u
    870215611  0x8006   WBBlueLevel                          int16u
    8703   0x8007   FlashFired                           int16u
    870415612  0x8008   TextStamp                            int16u
    870515613  0x8009   TextStamp                            int16u
     
    871115619Face detection position information.
    871215620
    8713    Index   Tag Name                             Writable
    8714    -----   --------                             --------
     15621  Index2   Tag Name                             Writable
     15622  ------   --------                             --------
    871515623      0    NumFacePositions                     int16u
    871615624      1    Face1Position                        int16u[4]
     
    872615634user-supplied set of known faces.
    872715635
    8728    Index   Tag Name                             Writable
    8729    -----   --------                             --------
     15636  Index1   Tag Name                             Writable
     15637  ------   --------                             --------
    873015638      0    FacesRecognized                      int16u
    873115639      4    RecognizedFace1Name                  string[20]
     
    873915647    128    RecognizedFace3Age                   string[20]
    874015648
     15649=head3 Panasonic TimeInfo Tags
     15650
     15651  Index1   Tag Name                             Writable
     15652  ------   --------                             --------
     15653      0    PanasonicDateTime                    undef[8]
     15654     16    TimeLapseShotNumber                  int32u
     15655
    874115656=head3 Panasonic Leica2 Tags
    874215657
     
    874915664  0x0303   SerialNumber                         int32u
    875015665  0x0304   WhiteBalance                         int16u
    8751   0x0310   LensInfo                             Panasonic LensInfo
     15666  0x0310   LensType                             int32u
    875215667  0x0311   ExternalSensorBrightnessValue        rational64s
    875315668  0x0312   MeasuredLV                           rational64s
     
    876515680  0x0340   ImageIDNumber                        int32u
    876615681
    8767 =head3 Panasonic LensInfo Tags
    8768 
    8769    Index   Tag Name                             Writable
    8770    -----   --------                             --------
    8771       0    LensType                             int32u & 0xfffffffc
    8772     0.1    FrameSelector                        int32u & 0x03
    8773 
    877415682=head3 Panasonic Leica3 Tags
    877515683
     
    877815686  Tag ID   Tag Name                             Writable
    877915687  ------   --------                             --------
     15688  0x000b   SerialInfo                           Panasonic SerialInfo
    878015689  0x000d   WB_RGBLevels                         int16u[3]
     15690
     15691=head3 Panasonic SerialInfo Tags
     15692
     15693  Index1   Tag Name                             Writable
     15694  ------   --------                             --------
     15695      4    SerialNumber                         no
    878115696
    878215697=head3 Panasonic Leica4 Tags
     
    881915734=head3 Panasonic Data1 Tags
    882015735
    8821    Index   Tag Name                             Writable
    8822    -----   --------                             --------
    8823      22    LensType                             int32u[0.25]
     15736  Index1   Tag Name                             Writable
     15737  ------   --------                             --------
     15738     22    LensType                             int32u
    882415739
    882515740=head3 Panasonic Data2 Tags
    882615741
    8827    Index   Tag Name                             Writable
    8828    -----   --------                             --------
     15742  Index1   Tag Name                             Writable
     15743  ------   --------                             --------
    882915744  [no tags known]
    883015745
    883115746=head3 Panasonic Leica5 Tags
    883215747
    8833 This information is written by the X1.
     15748This information is written by the X1, X2, X VARIO and T.
    883415749
    883515750  Tag ID   Tag Name                             Writable
    883615751  ------   --------                             --------
     15752  0x0303   LensType                             string
     15753  0x0305   SerialNumber                         int32u
    883715754  0x0407   OriginalFileName                     string
    883815755  0x0408   OriginalDirectory                    string
     15756  0x040a   FocusInfo                            Panasonic FocusInfo
    883915757  0x040d   ExposureMode                         int8u[4]
     15758  0x0410   ShotInfo                             Panasonic ShotInfo
    884015759  0x0412   FilmMode                             string
    884115760  0x0413   WB_RGBLevels                         rational64u[3]
     15761  0x0500   InternalSerialNumber                 undef
     15762
     15763=head3 Panasonic FocusInfo Tags
     15764
     15765  Index2   Tag Name                             Writable
     15766  ------   --------                             --------
     15767      0    FocusDistance                        int16u
     15768      1    FocalLength                          int16u
     15769
     15770=head3 Panasonic ShotInfo Tags
     15771
     15772  Index1   Tag Name                             Writable
     15773  ------   --------                             --------
     15774      0    FileIndex                            int16u
    884215775
    884315776=head3 Panasonic Leica6 Tags
    884415777
    8845 This information is written by the S2 (as a trailer in JPEG images).
     15778This information is written by the S2 and M (Typ 240), as a trailer in JPEG
     15779images.
    884615780
    884715781  Tag ID   Tag Name                             Writable
    884815782  ------   --------                             --------
    884915783  0x0300   PreviewImage                         undef
    8850   0x0301   UnknownBlock?                        N
     15784  0x0301   UnknownBlock?                        no
    885115785  0x0303   LensType                             string
     15786  0x0304   FocusDistance                        int32u
     15787  0x0311   ExternalSensorBrightnessValue        rational64s
     15788  0x0312   MeasuredLV                           rational64s
     15789  0x0320   FirmwareVersion                      int8u[4]
     15790  0x0321   LensSerialNumber                     int32u
     15791
     15792=head3 Panasonic Leica9 Tags
     15793
     15794This information is written by the Leica S (Typ 007) and M10 models.
     15795
     15796  Tag ID   Tag Name                             Writable
     15797  ------   --------                             --------
     15798  0x0304   FocusDistance                        int32u
     15799  0x0311   ExternalSensorBrightnessValue        rational64s
     15800  0x0312   MeasuredLV                           rational64s
     15801  0x034c   UserProfile                          string
     15802  0x0359   ISOSelected                          int32s
     15803  0x035a   FNumber                              int32s
    885215804
    885315805=head3 Panasonic Type2 Tags
     
    885715809iPalm.
    885815810
    8859    Index   Tag Name                             Writable
    8860    -----   --------                             --------
    8861       0    MakerNoteType                        N
    8862       3    Gain                                 N
     15811  Index2   Tag Name                             Writable
     15812  ------   --------                             --------
     15813      0    MakerNoteType                        no
     15814      3    Gain                                 no
     15815
     15816=head3 Panasonic PANA Tags
     15817
     15818Tags extracted from the PANA and LEIC user data found in MP4 videos from
     15819various Panasonic and Leica models.
     15820
     15821  Index1   Tag Name                             Writable
     15822  ------   --------                             --------
     15823      0    Make                                 no
     15824      4    Model                                no
     15825     12    Model                                no
     15826     16    JPEG-likeData                        EXIF
     15827     22    Model                                no
     15828     52    Version1                             no
     15829     62    Version2                             no
     15830     80    MakerNoteLeica5                      Panasonic Leica5
     15831     88    ThumbnailWidth                       no
     15832     90    ThumbnailHeight                      no
     15833     92    ThumbnailImage                       no
     15834   1334    ThumbnailWidth                       no
     15835   1338    ThumbnailHeight                      no
     15836   1342    ThumbnailLength                      no
     15837   1350    ThumbnailImage                       no
     15838   1358    ThumbnailWidth                       no
     15839   1362    ThumbnailHeight                      no
     15840   1366    ThumbnailLength                      no
     15841   1374    ThumbnailImage                       no
     15842  16488    ExifData                             EXIF
     15843  16512    ExifData                             EXIF
    886315844
    886415845=head2 Pentax Tags
     
    887015851  0x0000   PentaxVersion                        int8u[4]
    887115852  0x0001   PentaxModelType                      int16u
    8872   0x0002   PreviewImageSize                     int16u[2]~
     15853  0x0002   PreviewImageSize                     int16u[2]
    887315854  0x0003   PreviewImageLength                   int32u*
    887415855  0x0004   PreviewImageStart                    int32u*
     
    888215863  0x000d   FocusMode                            int16u
    888315864  0x000e   AFPointSelected                      int16u
    8884   0x000f   AFPointsInFocus                      int16u
     15865  0x000f   AFPointsInFocus                      int32u
     15866           AFPointsInFocus                      int16u
    888515867  0x0010   FocusPosition                        int16u
    888615868  0x0012   ExposureTime                         int32u
     
    888915871  0x0015   LightReading                         int16u
    889015872  0x0016   ExposureCompensation                 int16u
     15873           ExposureCompensation                 int16u[2]
    889115874  0x0017   MeteringMode                         int16u
    889215875  0x0018   AutoBracketing                       int16u[n]
     
    890915892  0x0029   FrameNumber                          int32u
    891015893  0x002d   EffectiveLV                          int16u
     15894           EffectiveLV                          int32u
    891115895  0x0032   ImageEditing                         undef[4]
    891215896  0x0033   PictureMode                          int8u[3]
     
    891615900  0x0038   ImageAreaOffset                      int16u[2]
    891715901  0x0039   RawImageSize                         int16u[2]~
    8918   0x003c   AFPointsInFocus                      N
     15902  0x003c   AFPointsInFocus                      no
     15903  0x003d   DataScaling                          int16u
    891915904  0x003e   PreviewImageBorders                  int8u[4]
    8920   0x003f   LensType                             int8u[2]
     15905  0x003f   LensRec                              Pentax LensRec
    892115906  0x0040   SensitivityAdjust                    int16u
    892215907  0x0041   ImageEditCount                       int16u
     
    892515910  0x0049   NoiseReduction                       int16u
    892615911  0x004d   FlashExposureComp                    int32s
     15912           FlashExposureComp                    int8s[2]
    892715913  0x004f   ImageTone                            int16u
    892815914  0x0050   ColorTemperature                     int16u
     15915  0x0053   ColorTempDaylight                    undef[4]
     15916  0x0054   ColorTempShade                       undef[4]
     15917  0x0055   ColorTempCloudy                      undef[4]
     15918  0x0056   ColorTempTungsten                    undef[4]
     15919  0x0057   ColorTempFluorescentD                undef[4]
     15920  0x0058   ColorTempFluorescentN                undef[4]
     15921  0x0059   ColorTempFluorescentW                undef[4]
     15922  0x005a   ColorTempFlash                       undef[4]
    892915923  0x005c   ShakeReductionInfo                   Pentax SRInfo
     15924                                                Pentax SRInfo2
    893015925  0x005d   ShutterCount                         undef[4]
    893115926  0x0060   FaceInfo                             Pentax FaceInfo
     15927  0x0062   RawDevelopmentProcess                int16u
    893215928  0x0067   Hue                                  int16u
    893315929  0x0068   AWBInfo                              Pentax AWBInfo
     
    894515941  0x0076   FaceDetect                           int8u[2]
    894615942  0x0077   FaceDetectFrameSize                  int16u[2]
    8947   0x0079   ShadowCompensation                   int8u[n]
     15943  0x0079   ShadowCorrection                     int8u[n]
    894815944  0x007a   ISOAutoParameters                    int8u[2]
    894915945  0x007b   CrossProcess                         int8u
    895015946  0x007d   LensCorr                             Pentax LensCorr
     15947  0x007e   WhiteLevel                           int32u
    895115948  0x007f   BleachBypassToning                   int16u
     15949  0x0080   AspectRatio                          yes
     15950  0x0082   BlurControl                          int8u[4]
     15951  0x0085   HDR                                  int8u[4]
     15952  0x0087   ShutterType                          int8u
     15953  0x0088   NeutralDensityFilter                 int8u[n]
     15954  0x008b   ISO                                  int32u
     15955  0x0092   IntervalShooting                     int16u[2]
     15956  0x0095   SkinToneCorrection                   int8s[2]
     15957  0x0096   ClarityControl                       int8s[2]
    895215958  0x0200   BlackPoint                           int16u[4]
    895315959  0x0201   WhitePoint                           int16u[4]
     
    895515961  0x0204   ColorMatrixB                         int16s[9]
    895615962  0x0205   CameraSettings                       Pentax CameraSettings
     15963           CameraSettingsUnknown                Pentax CameraSettingsUnknown
    895715964  0x0206   AEInfo                               Pentax AEInfo
     15965           AEInfo2                              Pentax AEInfo2
     15966           AEInfo3                              Pentax AEInfo3
     15967           AEInfoUnknown                        Pentax AEInfoUnknown
    895815968  0x0207   LensInfo                             Pentax LensInfo
    895915969                                                Pentax LensInfo2
    896015970                                                Pentax LensInfo3
    896115971                                                Pentax LensInfo4
     15972                                                Pentax LensInfo5
    896215973  0x0208   FlashInfo                            Pentax FlashInfo
    896315974           FlashInfoUnknown                     Pentax FlashInfoUnknown
     
    897515986  0x0215   CameraInfo                           Pentax CameraInfo
    897615987  0x0216   BatteryInfo                          Pentax BatteryInfo
    8977   0x021b   SaturationInfo?                      N
     15988  0x021b   SaturationInfo?                      no
    897815989  0x021f   AFInfo                               Pentax AFInfo
    8979   0x0220   HuffmanTable?                        N
     15990  0x0220   HuffmanTable?                        no
     15991  0x0221   KelvinWB                             Pentax KelvinWB
    898015992  0x0222   ColorInfo                            Pentax ColorInfo
    898115993  0x0224   EVStepInfo                           Pentax EVStepInfo
     
    898515997  0x0229   SerialNumber                         string
    898615998  0x022a   FilterInfo                           Pentax FilterInfo
     15999                                                Pentax FilterInfo
    898716000  0x022b   LevelInfo                            Pentax LevelInfo
     16001  0x022d   WBLevels                             Pentax WBLevels
    898816002  0x022e   Artist                               string
    898916003  0x022f   Copyright                            string
     
    899116005  0x0231   ContrastDetectAFArea                 int16u[4]
    899216006  0x0235   CrossProcessParams                   undef[10]
    8993   0x03fe   DataDump                             N
    8994   0x03ff   TempInfoK5                           Pentax TempInfoK5
     16007  0x0239   LensInfoQ                            Pentax LensInfoQ
     16008  0x023f   Model                                string
     16009  0x0243   PixelShiftInfo                       Pentax PixelShiftInfo
     16010  0x0245   AFPointInfo                          Pentax AFPointInfo
     16011  0x03fe   DataDump                             no
     16012  0x03ff   TempInfo                             Pentax TempInfo
    899516013           UnknownInfo                          Pentax UnknownInfo
    8996   0x0402   ToneCurve                            Y~
    8997   0x0403   ToneCurves                           Y~
     16014  0x0402   ToneCurve                            yes~
     16015  0x0403   ToneCurves                           yes~
     16016  0x0405   UnknownBlock?                        undef
    899816017  0x0e00   PrintIM                              PrintIM
    899916018
     16019=head3 Pentax LensRec Tags
     16020
     16021This record stores the LensType, plus one or two unknown bytes for some
     16022models.
     16023
     16024  Index1   Tag Name                             Writable
     16025  ------   --------                             --------
     16026      0    LensType                             int8u[2]
     16027      3    ExtenderStatus                       int8u
     16028
    900016029=head3 Pentax SRInfo Tags
    900116030
    900216031Shake reduction information.
    900316032
    9004    Index   Tag Name                             Writable
    9005    -----   --------                             --------
     16033  Index1   Tag Name                             Writable
     16034  ------   --------                             --------
    900616035      0    SRResult                             int8u
    900716036      1    ShakeReduction                       int8u
     
    900916038      3    SRFocalLength                        int8u
    901016039
     16040=head3 Pentax SRInfo2 Tags
     16041
     16042Shake reduction information for the K-3.
     16043
     16044  Index1   Tag Name                             Writable
     16045  ------   --------                             --------
     16046      0    SRResult?                            int8u
     16047      1    ShakeReduction                       int8u
     16048
    901116049=head3 Pentax FaceInfo Tags
    901216050
    9013    Index   Tag Name                             Writable
    9014    -----   --------                             --------
     16051  Index1   Tag Name                             Writable
     16052  ------   --------                             --------
    901516053      0    FacesDetected                        int8u
    901616054      2    FacePosition                         int8u[2]
     
    901816056=head3 Pentax AWBInfo Tags
    901916057
    9020    Index   Tag Name                             Writable
    9021    -----   --------                             --------
     16058  Index1   Tag Name                             Writable
     16059  ------   --------                             --------
    902216060      0    WhiteBalanceAutoAdjustment           int8u
    902316061      1    TungstenAWB                          int8u
     
    902516063=head3 Pentax TimeInfo Tags
    902616064
    9027    Index   Tag Name                             Writable
    9028    -----   --------                             --------
     16065  Index1   Tag Name                             Writable
     16066  ------   --------                             --------
    902916067    0.1    WorldTimeLocation                    int8u & 0x01
    903016068    0.2    HometownDST                          int8u & 0x02
     
    903516073=head3 Pentax LensCorr Tags
    903616074
    9037    Index   Tag Name                             Writable
    9038    -----   --------                             --------
     16075  Index1   Tag Name                             Writable
     16076  ------   --------                             --------
    903916077      0    DistortionCorrection                 int8u
    904016078      1    ChromaticAberrationCorrection        int8u
     16079      2    PeripheralIlluminationCorr           int8u
     16080      3    DiffractionCorrection                int8u
    904116081
    904216082=head3 Pentax CameraSettings Tags
    904316083
    9044 Shot information written by Pentax DSLR cameras.
    9045 
    9046    Index   Tag Name                             Writable
    9047    -----   --------                             --------
     16084Camera settings information written by Pentax DSLR cameras.
     16085
     16086  Index1   Tag Name                             Writable
     16087  ------   --------                             --------
    904816088      0    PictureMode2                         int8u
    904916089    1.1    ProgramLine                          int8u & 0x03
     
    907816118     21    BaseExposureCompensation             int8u
    907916119
     16120=head3 Pentax CameraSettingsUnknown Tags
     16121
     16122This information has not yet been decoded for models such as the K-01.
     16123
     16124  Index1   Tag Name                             Writable
     16125  ------   --------                             --------
     16126  [no tags known]
     16127
    908016128=head3 Pentax AEInfo Tags
    908116129
    9082    Index   Tag Name                             Writable
    9083    -----   --------                             --------
     16130Auto-exposure information for most Pentax models.
     16131
     16132  Index1   Tag Name                             Writable
     16133  ------   --------                             --------
    908416134      0    AEExposureTime                       int8u
    908516135      1    AEAperture                           int8u
     
    908916139      5    AEMinExposureTime                    int8u
    909016140      6    AEProgramMode                        int8u
    9091       7    AEFlags?                             N
    9092       8    AEUnknown                            N
     16141      7    AEFlags                              no
     16142      8    AEApertureSteps                      int8u
    909316143      9    AEMaxAperture                        int8u
    909416144     10    AEMaxAperture2                       int8u
    909516145     11    AEMinAperture                        int8u
    909616146     12    AEMeteringMode                       int8u
     16147     13    AEWhiteBalance                       int8u & 0xf0
     16148   13.1    AEMeteringMode2                      int8u & 0x0f
    909716149     14    FlashExposureCompSet                 int8s
     16150     21    LevelIndicator                       int8u
     16151
     16152=head3 Pentax AEInfo2 Tags
     16153
     16154Auto-exposure information for the K-01.
     16155
     16156  Index1   Tag Name                             Writable
     16157  ------   --------                             --------
     16158      2    AEExposureTime                       int8u
     16159      3    AEAperture                           int8u
     16160      4    AE_ISO                               int8u
     16161      5    AEXv                                 int8u
     16162      6    AEBXv                                int8s
     16163      8    AEError                              int8s
     16164     11    AEApertureSteps                      int8u
     16165     15    SceneMode                            int8u
     16166     16    AEMaxAperture                        int8u
     16167     17    AEMaxAperture2                       int8u
     16168     18    AEMinAperture                        int8u
     16169     19    AEMinExposureTime                    int8u
     16170
     16171=head3 Pentax AEInfo3 Tags
     16172
     16173Auto-exposure information for the K-3, K-30, K-50 and K-500.
     16174
     16175  Index1   Tag Name                             Writable
     16176  ------   --------                             --------
     16177     16    AEExposureTime                       int8u
     16178     17    AEAperture                           int8u
     16179     18    AE_ISO                               int8u
     16180     28    AEMaxAperture                        int8u
     16181     29    AEMaxAperture2                       int8u
     16182     30    AEMinAperture                        int8u
     16183     31    AEMinExposureTime                    int8u
     16184
     16185=head3 Pentax AEInfoUnknown Tags
     16186
     16187  Index1   Tag Name                             Writable
     16188  ------   --------                             --------
     16189  [no tags known]
    909816190
    909916191=head3 Pentax LensInfo Tags
     
    910116193Pentax lens information structure for models such as the *istD.
    910216194
    9103    Index   Tag Name                             Writable
    9104    -----   --------                             --------
     16195  Index1   Tag Name                             Writable
     16196  ------   --------                             --------
    910516197      0    LensType                             int8u[2]
    910616198      3    LensData                             Pentax LensData
     
    911016202Pentax lens information structure for models such as the K10D and K20D.
    911116203
    9112    Index   Tag Name                             Writable
    9113    -----   --------                             --------
    9114       0    LensType                             N
     16204  Index1   Tag Name                             Writable
     16205  ------   --------                             --------
     16206      0    LensType                             int8u[4]
    911516207      4    LensData                             Pentax LensData
    911616208
     
    912016212gymnastics to decode them into useful values.
    912116213
    9122    Index   Tag Name                             Writable
    9123    -----   --------                             --------
     16214  Index1   Tag Name                             Writable
     16215  ------   --------                             --------
    912416216    0.1    AutoAperture                         int8u & 0x01
    912516217    0.2    MinAperture                          int8u & 0x06
     
    912716219      1    LensKind?                            int8u
    912816220      2    LC1?                                 int8u
    9129       3    LC2?                                 int8u
     16221      3    MinFocusDistance                     int8u & 0xf8
     16222    3.1    FocusRangeIndex                      int8u & 0x07
    913016223      4    LC3?                                 int8u
    913116224      5    LC4?                                 int8u
     
    913316226      7    LC6?                                 int8u
    913416227      8    LC7?                                 int8u
    9135       9    FocalLength                          int8u
     16228      9    LensFocalLength                      int8u
     16229           LC8?                                 int8u
    913616230     10    NominalMaxAperture                   int8u & 0xf0
    913716231   10.1    NominalMinAperture                   int8u & 0x0f
     
    914716241Pentax lens information structure for 645D.
    914816242
    9149    Index   Tag Name                             Writable
    9150    -----   --------                             --------
    9151       1    LensType                             N
     16243  Index1   Tag Name                             Writable
     16244  ------   --------                             --------
     16245      1    LensType                             int8u[4]
    915216246     13    LensData                             Pentax LensData
    915316247
     
    915616250Pentax lens information structure for models such as the K-5 and K-r.
    915716251
    9158    Index   Tag Name                             Writable
    9159    -----   --------                             --------
    9160       1    LensType                             N
     16252  Index1   Tag Name                             Writable
     16253  ------   --------                             --------
     16254      1    LensType                             int8u[4]
    916116255     12    LensData                             Pentax LensData
    916216256
     16257=head3 Pentax LensInfo5 Tags
     16258
     16259Pentax lens information structure for the K-01 and newer models.
     16260
     16261  Index1   Tag Name                             Writable
     16262  ------   --------                             --------
     16263      1    LensType                             int8u[5]
     16264     15    LensData                             Pentax LensData
     16265
    916316266=head3 Pentax FlashInfo Tags
    916416267
    916516268Flash information tags for the K10D, K20D and K200D.
    916616269
    9167    Index   Tag Name                             Writable
    9168    -----   --------                             --------
     16270  Index1   Tag Name                             Writable
     16271  ------   --------                             --------
    916916272      0    FlashStatus                          int8u
    917016273      1    InternalFlashMode                    int8u
     
    918116284=head3 Pentax FlashInfoUnknown Tags
    918216285
    9183    Index   Tag Name                             Writable
    9184    -----   --------                             --------
     16286  Index1   Tag Name                             Writable
     16287  ------   --------                             --------
    918516288  [no tags known]
    918616289
    918716290=head3 Pentax CameraInfo Tags
    918816291
    9189    Index   Tag Name                             Writable
    9190    -----   --------                             --------
     16292  Index4   Tag Name                             Writable
     16293  ------   --------                             --------
    919116294      0    PentaxModelID                        int32u
    919216295      1    ManufactureDate                      int32u
     
    919616299=head3 Pentax BatteryInfo Tags
    919716300
    9198    Index   Tag Name                             Writable
    9199    -----   --------                             --------
     16301  Index1   Tag Name                             Writable
     16302  ------   --------                             --------
    920016303    0.1    PowerSource                          int8u & 0x0f
    920116304    1.1    BodyBatteryState                     int8u & 0xf0
     
    921316316=head3 Pentax AFInfo Tags
    921416317
    9215    Index   Tag Name                             Writable
    9216    -----   --------                             --------
     16318  Index1   Tag Name                             Writable
     16319  ------   --------                             --------
    921716320      0    AFPointsUnknown1?                    int16u
    921816321      2    AFPointsUnknown2?                    int16u
     
    922116324      7    AFIntegrationTime                    int8u
    922216325     11    AFPointsInFocus                      int8u
     16326    509    AFHold                               int8u
     16327
     16328=head3 Pentax KelvinWB Tags
     16329
     16330White balance Blue/Red gains as a function of color temperature.
     16331
     16332  Index2   Tag Name                             Writable
     16333  ------   --------                             --------
     16334      1    KelvinWB_Daylight                    int16u[4]
     16335      5    KelvinWB_01                          int16u[4]
     16336      9    KelvinWB_02                          int16u[4]
     16337     13    KelvinWB_03                          int16u[4]
     16338     17    KelvinWB_04                          int16u[4]
     16339     21    KelvinWB_05                          int16u[4]
     16340     25    KelvinWB_06                          int16u[4]
     16341     29    KelvinWB_07                          int16u[4]
     16342     33    KelvinWB_08                          int16u[4]
     16343     37    KelvinWB_09                          int16u[4]
     16344     41    KelvinWB_10                          int16u[4]
     16345     45    KelvinWB_11                          int16u[4]
     16346     49    KelvinWB_12                          int16u[4]
     16347     53    KelvinWB_13                          int16u[4]
     16348     57    KelvinWB_14                          int16u[4]
     16349     61    KelvinWB_15                          int16u[4]
     16350     65    KelvinWB_16                          int16u[4]
    922316351
    922416352=head3 Pentax ColorInfo Tags
    922516353
    9226    Index   Tag Name                             Writable
    9227    -----   --------                             --------
     16354  Index1   Tag Name                             Writable
     16355  ------   --------                             --------
    922816356     16    WBShiftAB                            int8s
    9229      17    WBShiftMG                            int8s
     16357     17    WBShiftGM                            int8s
    923016358
    923116359=head3 Pentax EVStepInfo Tags
    923216360
    9233    Index   Tag Name                             Writable
    9234    -----   --------                             --------
     16361  Index1   Tag Name                             Writable
     16362  ------   --------                             --------
    923516363      0    EVSteps                              int8u
    923616364      1    SensitivitySteps                     int8u
     
    923816366=head3 Pentax ShotInfo Tags
    923916367
    9240    Index   Tag Name                             Writable
    9241    -----   --------                             --------
     16368  Index1   Tag Name                             Writable
     16369  ------   --------                             --------
    924216370      1    CameraOrientation                    int8u
    924316371
    924416372=head3 Pentax FacePos Tags
    924516373
    9246    Index   Tag Name                             Writable
    9247    -----   --------                             --------
     16374  Index2   Tag Name                             Writable
     16375  ------   --------                             --------
    924816376      0    Face1Position                        int16u[2]
    924916377      2    Face2Position                        int16u[2]
     
    928116409=head3 Pentax FaceSize Tags
    928216410
    9283    Index   Tag Name                             Writable
    9284    -----   --------                             --------
     16411  Index2   Tag Name                             Writable
     16412  ------   --------                             --------
    928516413      0    Face1Size                            int16u[2]
    928616414      2    Face2Size                            int16u[2]
     
    932316451used.
    932416452
    9325    Index   Tag Name                             Writable
    9326    -----   --------                             --------
     16453  Index1   Tag Name                             Writable
     16454  ------   --------                             --------
    932716455      0    SourceDirectoryIndex                 int16u
    932816456      2    SourceFileIndex                      int16u
     
    935016478=head3 Pentax LevelInfo Tags
    935116479
    9352 Tags decoded from the electronic level information.
    9353 
    9354    Index   Tag Name                             Writable
    9355    -----   --------                             --------
     16480Tags decoded from the electronic level information for the K-5.  May not be
     16481valid for other models.
     16482
     16483  Index1   Tag Name                             Writable
     16484  ------   --------                             --------
    935616485      0    LevelOrientation                     int8s & 0x0f
    935716486    0.1    CompositionAdjust                    int8s & 0xf0
     
    936216491      7    CompositionAdjustRotation            int8s
    936316492
    9364 =head3 Pentax TempInfoK5 Tags
     16493=head3 Pentax WBLevels Tags
     16494
     16495  Index1   Tag Name                             Writable
     16496  ------   --------                             --------
     16497      2    WB_RGGBLevelsDaylight                int16u[4]
     16498     11    WB_RGGBLevelsShade                   int16u[4]
     16499     20    WB_RGGBLevelsCloudy                  int16u[4]
     16500     29    WB_RGGBLevelsTungsten                int16u[4]
     16501     38    WB_RGGBLevelsFluorescentD            int16u[4]
     16502     47    WB_RGGBLevelsFluorescentN            int16u[4]
     16503     56    WB_RGGBLevelsFluorescentW            int16u[4]
     16504     65    WB_RGGBLevelsFlash                   int16u[4]
     16505     74    WB_RGGBLevelsFluorescentL            int16u[4]
     16506     83    WB_RGGBLevelsUnknown?                int16u[4]
     16507     92    WB_RGGBLevelsUserSelected            int16u[4]
     16508
     16509=head3 Pentax LensInfoQ Tags
     16510
     16511More lens information stored by the Pentax Q.
     16512
     16513  Index1   Tag Name                             Writable
     16514  ------   --------                             --------
     16515     12    LensModel                            string[30]
     16516     42    LensInfo                             string[20]
     16517
     16518=head3 Pentax PixelShiftInfo Tags
     16519
     16520Pixel shift information stored by the K-3 II.
     16521
     16522  Index1   Tag Name                             Writable
     16523  ------   --------                             --------
     16524      0    PixelShiftResolution                 int8u
     16525
     16526=head3 Pentax AFPointInfo Tags
     16527
     16528AF point information written by the K-1.
     16529
     16530  Index1   Tag Name                             Writable
     16531  ------   --------                             --------
     16532      2    NumAFPoints                          int16u
     16533      4    AFPointsInFocus                      int8u[9]~
     16534    4.1    AFPointsSelected                     int8u[9]~
     16535    4.2    AFPointsSpecial                      int8u[9]~
     16536
     16537=head3 Pentax TempInfo Tags
    936516538
    936616539A number of additional temperature readings are extracted from this 256-byte
    9367 binary-data block in images from the K-5.  It is not currently known where
    9368 the corresponding temperature sensors are located in the camera.
    9369 
    9370    Index   Tag Name                             Writable
    9371    -----   --------                             --------
    9372      12    CameraTemperature2                   int16s
    9373      14    CameraTemperature3                   int16s
     16540binary-data block in images from models such as the K-01, K-3, K-5, K-50 and
     16541K-500.  It is currently not known where the corresponding temperature
     16542sensors are located in the camera.
     16543
     16544  Index1   Tag Name                             Writable
     16545  ------   --------                             --------
     16546     12    SensorTemperature                    int16s
     16547     14    SensorTemperature2                   int16s
    937416548     20    CameraTemperature4                   int16s
    937516549     22    CameraTemperature5                   int16s
     
    937716551=head3 Pentax UnknownInfo Tags
    937816552
    9379    Index   Tag Name                             Writable
    9380    -----   --------                             --------
     16553  Index1   Tag Name                             Writable
     16554  ------   --------                             --------
    938116555  [no tags known]
    938216556
     
    941116585  Tag ID               Tag Name                 Writable
    941216586  ------               --------                 --------
    9413   'F/W Version'        FirmwareVersion          N
     16587  'F/W Version'        FirmwareVersion          no
     16588
     16589=head3 Pentax S1 Tags
     16590
     16591Tags extracted from the maker notes of AVI videos from the Optio S1.
     16592
     16593  Tag ID   Tag Name                             Writable
     16594  ------   --------                             --------
     16595  0x0000   MakerNoteVersion                     no
     16596
     16597=head3 Pentax PENT Tags
     16598
     16599Tags found in the PENT atom of MOV videos from the Optio WG-2 GPS.
     16600
     16601  Index1   Tag Name                             Writable
     16602  ------   --------                             --------
     16603      0    Make                                 no
     16604     26    Model                                no
     16605     56    ExposureTime                         no
     16606     60    FNumber                              no
     16607     68    ExposureCompensation                 no
     16608     84    FocalLength                          no
     16609    113    DateTime1                            no
     16610    139    DateTime2                            no
     16611    167    ISO                                  no
     16612    199    GPSVersionID                         no
     16613    207    GPSLatitudeRef                       no
     16614    209    GPSLatitude                          no
     16615    233    GPSLongitudeRef                      no
     16616    235    GPSLongitude                         no
     16617    259    GPSAltitudeRef                       no
     16618    260    GPSAltitude                          no
     16619    284    GPSTimeStamp                         no
     16620    308    GPSSatellites                        no
     16621    311    GPSStatus                            no
     16622    313    GPSMeasureMode                       no
     16623    315    GPSMapDatum                          no
     16624    322    GPSDateStamp                         no
     16625    371    AudioCodecID                         no
     16626   2003    PreviewImage                         no
     16627
     16628=head3 Pentax PXTH Tags
     16629
     16630Tags found in the PXTH atom of MOV videos from the K-01.
     16631
     16632  Index1   Tag Name                             Writable
     16633  ------   --------                             --------
     16634      0    PreviewImageLength                   no
     16635      4    PreviewImage                         no
    941416636
    941516637=head3 Pentax MOV Tags
    941616638
    9417 This information is found in Pentax MOV videos.
    9418 
    9419    Index   Tag Name                             Writable
    9420    -----   --------                             --------
    9421       0    Make                                 N
    9422      38    ExposureTime                         N
    9423      42    FNumber                              N
    9424      50    ExposureCompensation                 N
    9425      68    WhiteBalance                         N
    9426      72    FocalLength                          N
    9427     175    ISO                                  N
     16639This information is found in MOV videos from cameras such as the Optio WP.
     16640
     16641  Index1   Tag Name                             Writable
     16642  ------   --------                             --------
     16643      0    Make                                 no
     16644     38    ExposureTime                         no
     16645     42    FNumber                              no
     16646     50    ExposureCompensation                 no
     16647     68    WhiteBalance                         no
     16648     72    FocalLength                          no
     16649    175    ISO                                  no
    942816650
    942916651=head3 Pentax Junk Tags
     
    943116653Tags found in the JUNK chunk of AVI videos from the RS1000.
    943216654
    9433    Index   Tag Name                             Writable
    9434    -----   --------                             --------
    9435      12    Model                                N
     16655  Index1   Tag Name                             Writable
     16656  ------   --------                             --------
     16657     12    Model                                no
     16658
     16659=head3 Pentax Junk2 Tags
     16660
     16661This information is found in AVI videos from the Optio RZ18.
     16662
     16663  Index1   Tag Name                             Writable
     16664  ------   --------                             --------
     16665     18    Make                                 no
     16666     44    Model                                no
     16667     94    FNumber                              no
     16668    131    DateTime1                            no
     16669    157    DateTime2                            no
     16670    299    ThumbnailWidth                       no
     16671    301    ThumbnailHeight                      no
     16672    303    ThumbnailLength                      no
     16673    307    ThumbnailImage                       no
    943616674
    943716675=head3 Pentax AVI Tags
     
    944216680  ------   --------                             --------
    944316681  'hymn'   MakerNotes                           Pentax
     16682  'mknt'   MakerNotes                           Pentax
     16683
     16684=head2 PhaseOne Tags
     16685
     16686These tags are extracted from the maker notes of Phase One images.
     16687
     16688  Tag ID   Tag Name                             Writable
     16689  ------   --------                             --------
     16690  0x0100   CameraOrientation                    no
     16691  0x0102   SerialNumber                         string
     16692  0x0105   ISO                                  int32s
     16693  0x0106   ColorMatrix1                         float[9]
     16694  0x0107   WB_RGBLevels                         float[3]
     16695  0x0108   SensorWidth                          int32s
     16696  0x0109   SensorHeight                         int32s
     16697  0x010a   SensorLeftMargin                     int32s
     16698  0x010b   SensorTopMargin                      int32s
     16699  0x010c   ImageWidth                           int32s
     16700  0x010d   ImageHeight                          int32s
     16701  0x010e   RawFormat                            int32s
     16702  0x010f   RawData                              no
     16703  0x0110   SensorCalibration                    PhaseOne SensorCalibration
     16704  0x0112   DateTimeOriginal                     no
     16705  0x0113   ImageNumber                          int32s
     16706  0x0203   Software                             string
     16707  0x0204   System                               string
     16708  0x0210   SensorTemperature                    float
     16709  0x0211   SensorTemperature2                   float
     16710  0x0212   UnknownDate?                         int32u
     16711  0x021c   StripOffsets                         no
     16712  0x021d   BlackLevel                           int32s
     16713  0x0222   SplitColumn                          int32s
     16714  0x0223   BlackLevelData                       int16u[n]
     16715  0x0226   ColorMatrix2                         float[9]
     16716  0x0267   AFAdjustment                         float
     16717  0x0301   FirmwareVersions                     string
     16718  0x0400   ShutterSpeedValue                    float
     16719  0x0401   ApertureValue                        float
     16720  0x0402   ExposureCompensation                 float
     16721  0x0403   FocalLength                          float
     16722  0x0410   CameraModel                          string
     16723  0x0412   LensModel                            string
     16724  0x0414   MaxApertureValue                     float
     16725  0x0415   MinApertureValue                     float
     16726  0x0455   Viewfinder                           string
     16727
     16728=head3 PhaseOne SensorCalibration Tags
     16729
     16730  Tag ID   Tag Name                             Writable
     16731  ------   --------                             --------
     16732  0x0400   SensorDefects                        no
     16733  0x0401   AllColorFlatField1?                  no
     16734  0x0407   SerialNumber                         string
     16735  0x040b   RedBlueFlatField?                    no
     16736  0x0410   AllColorFlatField2?                  no
     16737  0x0416   AllColorFlatField3?                  no
     16738  0x0419   LinearizationCoefficients1           no
     16739  0x041a   LinearizationCoefficients2           no
    944416740
    944516741=head2 Reconyx Tags
     
    944816744cameras such as the HC500, HC600 and PC900.
    944916745
    9450    Index   Tag Name                             Writable
    9451    -----   --------                             --------
    9452       0    MakerNoteVersion                     N
    9453       1    FirmwareVersion                      N
     16746  Index2   Tag Name                             Writable
     16747  ------   --------                             --------
     16748      0    MakerNoteVersion                     no
     16749      1    FirmwareVersion                      no
    945416750      4    FirmwareDate                         int16u[2]
    945516751      6    TriggerMode                          string[2]
     
    945816754     11    DateTimeOriginal                     int16u[6]
    945916755     18    MoonPhase                            int16u
    9460      19    AmbientTemperatureFahrenheit         int16u
    9461      20    AmbientTemperature                   int16u
     16756     19    AmbientTemperatureFahrenheit         int16s
     16757     20    AmbientTemperature                   int16s
    946216758     21    SerialNumber                         undef[30]
    946316759     36    Contrast                             int16u
     
    947016766     43    UserLabel                            string[22]
    947116767
    9472 =head2 Ricoh Tags
    9473 
    9474   Tag ID   Tag Name                             Writable
    9475   ------   --------                             --------
    9476   0x0001   MakerNoteType                        string
    9477   0x0002   FirmwareVersion                      string
    9478   0x0005   SerialNumber                         undef[16]
    9479            InternalSerialNumber                 undef[16]
    9480   0x0e00   PrintIM                              PrintIM
    9481   0x1001   ImageInfo                            Ricoh ImageInfo
    9482   0x1003   Sharpness                            int32u
    9483   0x2001   RicohSubdir                          Ricoh Subdir
    9484            RicohRR1Subdir                       Ricoh Subdir
    9485 
    9486 =head3 Ricoh ImageInfo Tags
    9487 
    9488    Index   Tag Name                             Writable
    9489    -----   --------                             --------
    9490       0    RicohImageWidth                      int16u
    9491       2    RicohImageHeight                     int16u
    9492       6    RicohDate                            int8u[7]
    9493      28    PreviewImageStart                    int16u*
    9494      30    PreviewImageLength                   int16u*
    9495      32    FlashMode                            int8u
    9496      33    Macro                                int8u
    9497      34    Sharpness                            int8u
    9498      38    WhiteBalance                         int8u
    9499      39    ISOSetting                           int8u
    9500      40    Saturation                           int8u
    9501 
    9502 =head3 Ricoh Subdir Tags
    9503 
    9504   Tag ID   Tag Name                             Writable
    9505   ------   --------                             --------
    9506   0x0004   ManufactureDate1                     string[20]
    9507   0x0005   ManufactureDate2                     string[20]
    9508   0x001a   FaceInfo                             Ricoh FaceInfo
    9509   0x0029   FirmwareInfo                         Ricoh FirmwareInfo
    9510   0x002a   NoiseReduction                       int32u
    9511   0x002c   SerialInfo                           Ricoh SerialInfo
    9512 
    9513 =head3 Ricoh FaceInfo Tags
    9514 
    9515    Index   Tag Name                             Writable
    9516    -----   --------                             --------
    9517     181    FacesDetected                        int8u
    9518     182    FaceDetectFrameSize                  int16u[2]
    9519     188    Face1Position                        int16u[4]
    9520     200    Face2Position                        int16u[4]
    9521     212    Face3Position                        int16u[4]
    9522     224    Face4Position                        int16u[4]
    9523     236    Face5Position                        int16u[4]
    9524     248    Face6Position                        int16u[4]
    9525     260    Face7Position                        int16u[4]
    9526     272    Face8Position                        int16u[4]
    9527 
    9528 =head3 Ricoh FirmwareInfo Tags
    9529 
    9530    Index   Tag Name                             Writable
    9531    -----   --------                             --------
    9532       0    FirmwareRevision                     string[12]
    9533      12    FirmwareRevision2                    string[12]
    9534 
    9535 =head3 Ricoh SerialInfo Tags
    9536 
    9537 This information is found in images from the GXR.
    9538 
    9539    Index   Tag Name                             Writable
    9540    -----   --------                             --------
    9541       0    BodyFirmware                         string[16]
    9542      16    BodySerialNumber                     string[16]
    9543      32    LensFirmware                         string[16]
    9544      48    LensSerialNumber                     string[16]
    9545 
    9546 =head3 Ricoh Text Tags
    9547 
    9548 Some Ricoh DC and RDC models use a text-based format for their maker notes
    9549 instead of the IFD format used by the Caplio models.  Below is a list of known
    9550 tags in this information.
    9551 
    9552   Tag ID   Tag Name                             Writable
    9553   ------   --------                             --------
    9554   'Bg'     BlueGain                             N
    9555   'Gg'     GreenGain                            N
    9556   'Rev'    FirmwareVersion                      N
    9557   'Rg'     RedGain                              N
    9558   'Rv'     FirmwareVersion                      N
    9559 
    9560 =head3 Ricoh RMETA Tags
    9561 
    9562 The Ricoh Caplio Pro G3 has the ability to add custom fields to the APP5
    9563 "RMETA" segment of JPEG images.  While only a few observed tags have been
    9564 defined below, ExifTool will extract any information found here.
    9565 
    9566   Tag ID               Tag Name                 Writable
    9567   ------               --------                 --------
    9568   'Azimuth'            Azimuth                  N
    9569   'Condition'          Condition                N
    9570   'Lit'                Lit                      N
    9571   'Location'           Location                 N
    9572   'Sign type'          SignType                 N
    9573 
    9574 =head3 Ricoh AVI Tags
    9575 
    9576   Tag ID   Tag Name                             Writable
    9577   ------   --------                             --------
    9578   'mnrt'   MakerNoteRicoh                       Ricoh
    9579   'rdc2'   RicohRDC2?                           N
    9580   'thum'   ThumbnailImage                       N
    9581   'ucmt'   Comment                              N
    9582 
    9583 =head2 Samsung Tags
    9584 
    9585 =head3 Samsung Type1 Tags
    9586 
    9587 Tags found in the binary "STMN" format maker notes written by a number of
    9588 Samsung models.
    9589 
    9590    Index   Tag Name                             Writable
    9591    -----   --------                             --------
    9592       0    MakerNoteVersion                     undef[8]
    9593       2    PreviewImageStart                    int32u*
    9594       3    PreviewImageLength                   int32u*
    9595 
    9596 =head3 Samsung Type2 Tags
    9597 
    9598 Tags found in the EXIF-format maker notes of newer Samsung models.
    9599 
    9600   Tag ID   Tag Name                             Writable
    9601   ------   --------                             --------
    9602   0x0001   MakerNoteVersion                     undef[4]
    9603   0x0021   PictureWizard                        int16u[5]
    9604   0x0030   LocalLocationName                    string
    9605   0x0031   LocationName                         string
    9606   0x0035   PreviewIFD                           Nikon PreviewIFD
    9607   0x0043   CameraTemperature                    rational64s
    9608   0xa001   FirmwareName                         string
    9609   0xa003   LensType                             int16u
    9610   0xa004   LensFirmware                         string
    9611   0xa010   SensorAreas                          int32u[8]
    9612   0xa011   ColorSpace                           int16u
    9613   0xa012   SmartRange                           int16u
    9614   0xa013   ExposureCompensation                 rational64s
    9615   0xa014   ISO                                  int32u
    9616   0xa018   ExposureTime                         rational64u
    9617   0xa019   FNumber                              rational64u
    9618   0xa01a   FocalLengthIn35mmFormat              int32u
    9619   0xa020   EncryptionKey                        int32u[11]!
    9620   0xa021   WB_RGGBLevelsUncorrected             int32u[4]
    9621   0xa022   WB_RGGBLevelsAuto                    int32u[4]
    9622   0xa023   WB_RGGBLevelsIlluminator1            int32u[4]
    9623   0xa024   WB_RGGBLevelsIlluminator2            int32u[4]
    9624   0xa028   WB_RGGBLevelsBlack                   int32s[4]
    9625   0xa030   ColorMatrix                          int32s[9]
    9626   0xa031   ColorMatrixSRGB                      int32s[9]
    9627   0xa032   ColorMatrixAdobeRGB                  int32s[9]
    9628   0xa040   ToneCurve1                           int32u[23]
    9629   0xa041   ToneCurve2                           int32u[23]
    9630   0xa042   ToneCurve3                           int32u[23]
    9631   0xa043   ToneCurve4                           int32u[23]
    9632 
    9633 =head3 Samsung INFO Tags
    9634 
    9635 This information is found in MP4 videos from Samsung models such as the
    9636 SMX-C20N.
    9637 
    9638   Tag ID   Tag Name                             Writable
    9639   ------   --------                             --------
    9640   'EFCT'   Effect                               N
    9641   'QLTY'   Quality                              N
    9642 
    9643 =head3 Samsung MP4 Tags
    9644 
    9645 This information is found in Samsung MP4 videos from models such as the
    9646 WP10.
    9647 
    9648    Index   Tag Name                             Writable
    9649    -----   --------                             --------
    9650       0    Make                                 N
    9651      24    Model                                N
    9652      46    ExposureTime                         N
    9653      50    FNumber                              N
    9654      58    ExposureCompensation                 N
    9655     106    ISO                                  N
    9656     125    Software                             N
    9657     248    ThumbnailWidth                       N
    9658     252    ThumbnailHeight                      N
    9659     256    ThumbnailLength                      N
    9660     260    ThumbnailOffset                      N
     16768=head3 Reconyx Type2 Tags
     16769
     16770Tags extracted from models such as the UltraFire.
     16771
     16772  Index1   Tag Name                             Writable
     16773  ------   --------                             --------
     16774     24    FirmwareVersion                      undef[7]
     16775     31    Micro1Version                        undef[7]
     16776     38    BootLoaderVersion                    undef[7]
     16777     45    Micro2Version                        undef[7]
     16778     52    TriggerMode                          undef[1]
     16779     53    Sequence                             int8u[2]
     16780     55    EventNumber                          int32u
     16781     59    DateTimeOriginal                     int8u[7]
     16782     66    DayOfWeek                            int8u
     16783     67    MoonPhase                            int8u
     16784     68    AmbientTemperatureFahrenheit         int16s
     16785     70    AmbientTemperature                   int16s
     16786     72    Illumination                         int8u
     16787     73    BatteryVoltage                       int16u
     16788     75    SerialNumber                         string[15]
     16789     90    UserLabel                            string[21]
     16790
     16791=head3 Reconyx Type3 Tags
     16792
     16793Tags extracted from models such as the HF2 PRO.
     16794
     16795  Index1   Tag Name                             Writable
     16796  ------   --------                             --------
     16797     16    FileNumber                           int16u
     16798     18    DirectoryNumber                      int16u
     16799     42    FirmwareVersion                      int16u[3]
     16800     48    FirmwareDate                         int16u[2]
     16801     52    TriggerMode                          string[2]
     16802     54    Sequence                             int16u[2]
     16803     58    EventNumber                          int16u[2]
     16804     62    DateTimeOriginal                     int16u[6]
     16805     74    DayOfWeek                            int16u
     16806     76    MoonPhase                            int16u
     16807     78    AmbientTemperatureFahrenheit         int16s
     16808     80    AmbientTemperature                   int16s
     16809     82    Contrast                             int16u
     16810     84    Brightness                           int16u
     16811     86    Sharpness                            int16u
     16812     88    Saturation                           int16u
     16813     90    Flash                                int16u
     16814     92    AmbientInfrared                      int16u
     16815     94    AmbientLight                         int16u
     16816     96    MotionSensitivity                    int16u
     16817     98    BatteryVoltage                       int16u
     16818    100    BatteryVoltageAvg                    int16u
     16819    102    BatteryType                          int16u
     16820    104    UserLabel                            string[22]
     16821    126    SerialNumber                         unicode[15]
    966116822
    966216823=head2 Sanyo Tags
     
    967016831  0x0202   Macro                                int16u
    967116832  0x0204   DigitalZoom                          rational64u
    9672   0x0207   SoftwareVersion                      Y
    9673   0x0208   PictInfo                             Y
    9674   0x0209   CameraID                             Y
     16833  0x0207   SoftwareVersion                      yes
     16834  0x0208   PictInfo                             yes
     16835  0x0209   CameraID                             yes
    967516836  0x020e   SequentialShot                       int16u
    967616837  0x020f   WideRange                            int16u
     
    969116852  0x0225   FlashMode                            int16u
    969216853  0x0e00   PrintIM                              PrintIM
    9693   0x0f00   DataDump                             N
     16854  0x0f00   DataDump                             no
    969416855
    969516856=head3 Sanyo FaceInfo Tags
    969616857
    9697    Index   Tag Name                             Writable
    9698    -----   --------                             --------
     16858  Index4   Tag Name                             Writable
     16859  ------   --------                             --------
    969916860      0    FacesDetected                        int32u
    970016861      4    FacePosition                         int32u[4]
     
    970416865This information is found in Sanyo MOV videos.
    970516866
    9706    Index   Tag Name                             Writable
    9707    -----   --------                             --------
    9708       0    Make                                 N
    9709      24    Model                                N
    9710      38    ExposureTime                         N
    9711      42    FNumber                              N
    9712      50    ExposureCompensation                 N
    9713      68    WhiteBalance                         N
    9714      72    FocalLength                          N
     16867  Index1   Tag Name                             Writable
     16868  ------   --------                             --------
     16869      0    Make                                 no
     16870     24    Model                                no
     16871     38    ExposureTime                         no
     16872     42    FNumber                              no
     16873     50    ExposureCompensation                 no
     16874     68    WhiteBalance                         no
     16875     72    FocalLength                          no
    971516876
    971616877=head3 Sanyo MP4 Tags
     
    971816879This information is found in Sanyo MP4 videos.
    971916880
    9720    Index   Tag Name                             Writable
    9721    -----   --------                             --------
    9722       0    Make                                 N
    9723      24    Model                                N
    9724      50    FNumber                              N
    9725      58    ExposureCompensation                 N
    9726     106    ISO                                  N
    9727     209    Software                             N
    9728     210    Software                             N
    9729     253    ThumbnailLength                      N
    9730     254    ThumbnailLength                      N
    9731     257    ThumbnailOffset                      N
    9732     258    ThumbnailOffset                      N
     16881  Index1   Tag Name                             Writable
     16882  ------   --------                             --------
     16883      0    Make                                 no
     16884     24    Model                                no
     16885     50    FNumber                              no
     16886     58    ExposureCompensation                 no
     16887    106    ISO                                  no
     16888    209    Software                             no
     16889    210    Software                             no
     16890    241    Thumbnail                            Sanyo Thumbnail
     16891    242    Thumbnail                            Sanyo Thumbnail
     16892
     16893=head3 Sanyo Thumbnail Tags
     16894
     16895  Index4   Tag Name                             Writable
     16896  ------   --------                             --------
     16897      1    ThumbnailWidth                       no
     16898      2    ThumbnailHeight                      no
     16899      3    ThumbnailLength                      no
     16900      4    ThumbnailOffset                      no
     16901
     16902=head2 Samsung Tags
     16903
     16904Tags found in the binary "STMN" format maker notes written by a number of
     16905Samsung models.
     16906
     16907  Index4   Tag Name                             Writable
     16908  ------   --------                             --------
     16909      0    MakerNoteVersion                     undef[8]
     16910      2    PreviewImageStart                    int32u*
     16911      3    PreviewImageLength                   int32u*
     16912     11    SamsungIFD                           Samsung IFD
     16913
     16914=head3 Samsung IFD Tags
     16915
     16916This is a standard-format IFD found in the maker notes of some Samsung
     16917models, except that the entry count is a 4-byte integer and the offsets are
     16918relative to the end of the IFD.  Currently, no tags in this IFD are known,
     16919so the Unknown (-u) or Verbose (-v) option must be used to see this
     16920information.
     16921
     16922  Tag ID   Tag Name                             Writable
     16923  ------   --------                             --------
     16924  [no tags known]
     16925
     16926=head3 Samsung Type2 Tags
     16927
     16928Tags found in the EXIF-format maker notes of newer Samsung models.
     16929
     16930  Tag ID   Tag Name                             Writable
     16931  ------   --------                             --------
     16932  0x0001   MakerNoteVersion                     undef[4]
     16933  0x0002   DeviceType                           int32u
     16934  0x0003   SamsungModelID                       int32u
     16935  0x0011   OrientationInfo                      Samsung OrientationInfo
     16936  0x0020   SmartAlbumColor                      int16u[2]
     16937  0x0021   PictureWizard                        Samsung PictureWizard
     16938  0x0030   LocalLocationName                    string
     16939  0x0031   LocationName                         string
     16940  0x0035   PreviewIFD                           Nikon PreviewIFD
     16941                                                Nikon PreviewIFD
     16942  0x0040   RawDataByteOrder                     yes
     16943  0x0041   WhiteBalanceSetup                    int32u
     16944  0x0043   CameraTemperature                    rational64s
     16945  0x0050   RawDataCFAPattern                    yes
     16946  0x0100   FaceDetect                           int16u
     16947  0x0120   FaceRecognition                      int32u
     16948  0x0123   FaceName                             string
     16949  0xa001   FirmwareName                         string
     16950  0xa002   SerialNumber                         string
     16951  0xa003   LensType                             int16u[n]
     16952  0xa004   LensFirmware                         string
     16953  0xa005   InternalLensSerialNumber             string
     16954  0xa010   SensorAreas                          int32u[8]
     16955  0xa011   ColorSpace                           int16u
     16956  0xa012   SmartRange                           int16u
     16957  0xa013   ExposureCompensation                 rational64s
     16958  0xa014   ISO                                  int32u
     16959  0xa018   ExposureTime                         rational64u
     16960  0xa019   FNumber                              rational64u
     16961  0xa01a   FocalLengthIn35mmFormat              int32u
     16962  0xa020   EncryptionKey                        int32u[11]!
     16963  0xa021   WB_RGGBLevelsUncorrected             int32u[4]
     16964  0xa022   WB_RGGBLevelsAuto                    int32u[4]
     16965  0xa023   WB_RGGBLevelsIlluminator1            int32u[4]
     16966  0xa024   WB_RGGBLevelsIlluminator2            int32u[4]
     16967  0xa025   HighlightLinearityLimit              int32u
     16968  0xa028   WB_RGGBLevelsBlack                   int32s[4]
     16969  0xa030   ColorMatrix                          int32s[9]
     16970  0xa031   ColorMatrixSRGB                      int32s[9]
     16971  0xa032   ColorMatrixAdobeRGB                  int32s[9]
     16972  0xa033   CbCrMatrixDefault                    int32s[4]
     16973  0xa034   CbCrMatrix                           int32s[4]
     16974  0xa035   CbCrGainDefault                      int32u[2]
     16975  0xa036   CbCrGain                             int32u[2]
     16976  0xa040   ToneCurveSRGBDefault                 int32u[23]
     16977  0xa041   ToneCurveAdobeRGBDefault             int32u[23]
     16978  0xa042   ToneCurveSRGB                        int32u[23]
     16979  0xa043   ToneCurveAdobeRGB                    int32u[23]
     16980  0xa048   RawData?                             int32s[12]
     16981  0xa050   Distortion?                          int32s[8]
     16982  0xa051   ChromaticAberration?                 int16u[22]
     16983  0xa052   Vignetting?                          int16u[15]
     16984  0xa053   VignettingCorrection?                int16u[15]
     16985  0xa054   VignettingSetting?                   int16u[15]
     16986
     16987=head3 Samsung OrientationInfo Tags
     16988
     16989Camera orientation information written by the Gear 360 (SM-C200).
     16990
     16991  Index8   Tag Name                             Writable
     16992  ------   --------                             --------
     16993      0    YawAngle?                            rational64s
     16994      1    PitchAngle                           rational64s
     16995      2    RollAngle                            rational64s
     16996
     16997=head3 Samsung PictureWizard Tags
     16998
     16999  Index2   Tag Name                             Writable
     17000  ------   --------                             --------
     17001      0    PictureWizardMode                    int16u
     17002      1    PictureWizardColor                   int16u
     17003      2    PictureWizardSaturation              int16u
     17004      3    PictureWizardSharpness               int16u
     17005      4    PictureWizardContrast                int16u
     17006
     17007=head3 Samsung APP5 Tags
     17008
     17009  Tag ID               Tag Name                 Writable
     17010  ------               --------                 --------
     17011  'ssuniqueid'         UniqueID                 no
     17012
     17013=head3 Samsung Trailer Tags
     17014
     17015Tags extracted from the trailer of JPEG images written when using certain
     17016features (such as "Sound & Shot" or "Shot & More") from Samsung models such
     17017as the Galaxy S4 and Tab S.
     17018
     17019  Tag Name                                      Writable
     17020  --------                                      --------
     17021  DepthMapData                                  no
     17022  DepthMapName                                  no
     17023  DualCameraImage                               no
     17024  DualCameraImageName                           no
     17025  DualShotExtra                                 Samsung DualShotExtra
     17026  EmbeddedAudioFile                             no
     17027  EmbeddedAudioFileName                         no
     17028  EmbeddedImage                                 no
     17029  EmbeddedImageName                             no
     17030  EmbeddedVideoFile                             no
     17031  EmbeddedVideoType                             no
     17032  SingleShotDepthMap                            no
     17033  SingleShotMeta                                Samsung SingleShotMeta
     17034  SurroundShotVideo                             no
     17035  SurroundShotVideoName                         no
     17036  TimeStamp                                     no
     17037
     17038=head3 Samsung DualShotExtra Tags
     17039
     17040  Index4   Tag Name                             Writable
     17041  ------   --------                             --------
     17042     16    DepthMapWidth                        no
     17043     17    DepthMapHeight                       no
     17044
     17045=head3 Samsung SingleShotMeta Tags
     17046
     17047  Tag ID               Tag Name                 Writable
     17048  ------               --------                 --------
     17049  'beautyColorLevel'   BeautyColorLevel         no
     17050  'beautyRetouchLevel' BeautyRetouchLevel       no
     17051  'blurStrength'       BlurStrength             no
     17052  'bokehShape'         BokehShape               no
     17053  'colorpopStrength'   ColorpopStrength         no
     17054  'depthHWHeight'      DepthHWHeight            no
     17055  'depthHWWidth'       DepthHWWidth             no
     17056  'depthSWHeight'      DepthSWHeight            no
     17057  'depthSWWidth'       DepthSWWidth             no
     17058  'deviceOrientation'  DeviceOrientation        no
     17059  'effectStrength'     EffectStrength           no
     17060  'effectType'         EffectType               no
     17061  'flipStatus'         FlipStatus               no
     17062  'inputHeight'        InputHeight              no
     17063  'inputWidth'         InputWidth               no
     17064  'isArtBokeh'         IsArtBokeh               no
     17065  'lensFacing'         LensFacing               no
     17066  'monoStrength'       MonoStrength             no
     17067  'objectOrientation'  ObjectOrientation        no
     17068  'outputHeight'       OutputHeight             no
     17069  'outputWidth'        OutputWidth              no
     17070  'perfMode'           PerfMode                 no
     17071  'segHeight'          SegHeight                no
     17072  'segWidth'           SegWidth                 no
     17073  'sidelightStrength'  SidelightStrength        no
     17074  'spinStrength'       SpinStrength             no
     17075  'vintageStrength'    VintageStrength          no
     17076  'zoomStrength'       ZoomStrength             no
     17077
     17078=head3 Samsung sec Tags
     17079
     17080This information is found in the @sec atom of Samsung MP4 videos from models
     17081such as the WB30F.
     17082
     17083  Index1   Tag Name                             Writable
     17084  ------   --------                             --------
     17085      0    Make                                 no
     17086     32    Model                                no
     17087    512    ThumbnailWidth                       no
     17088    516    ThumbnailHeight                      no
     17089    520    ThumbnailLength                      no
     17090    524    ThumbnailImage                       no
     17091
     17092=head3 Samsung INFO Tags
     17093
     17094This information is found in MP4 videos from Samsung models such as the
     17095SMX-C20N.
     17096
     17097  Tag ID   Tag Name                             Writable
     17098  ------   --------                             --------
     17099  'EFCT'   Effect                               no
     17100  'QLTY'   Quality                              no
     17101
     17102=head3 Samsung MP4 Tags
     17103
     17104This information is found in Samsung MP4 videos from models such as the
     17105WP10.
     17106
     17107  Index1   Tag Name                             Writable
     17108  ------   --------                             --------
     17109      0    Make                                 no
     17110     24    Model                                no
     17111     46    ExposureTime                         no
     17112     50    FNumber                              no
     17113     58    ExposureCompensation                 no
     17114    106    ISO                                  no
     17115    125    Software                             no
     17116    244    Thumbnail                            Samsung Thumbnail
     17117
     17118=head3 Samsung Thumbnail Tags
     17119
     17120  Index4   Tag Name                             Writable
     17121  ------   --------                             --------
     17122      1    ThumbnailWidth                       no
     17123      2    ThumbnailHeight                      no
     17124      3    ThumbnailLength                      no
     17125      4    ThumbnailOffset                      no
     17126
     17127=head3 Samsung smta Tags
     17128
     17129This information is found in the smta atom of Samsung MP4 videos from models
     17130such as the Galaxy S4.
     17131
     17132  Tag ID   Tag Name                             Writable
     17133  ------   --------                             --------
     17134  'svss'   SamsungSvss                          Samsung svss
     17135
     17136=head3 Samsung svss Tags
     17137
     17138This information is found in the svss atom of Samsung MP4 videos from models
     17139such as the Galaxy S4.
     17140
     17141  Tag ID   Tag Name                             Writable
     17142  ------   --------                             --------
     17143  [no tags known]
     17144
     17145=head2 Ricoh Tags
     17146
     17147  Tag ID   Tag Name                             Writable
     17148  ------   --------                             --------
     17149  0x0001   MakerNoteType                        string
     17150  0x0002   FirmwareVersion                      string
     17151  0x0005   SerialNumber                         undef[16]
     17152           InternalSerialNumber                 undef[16]
     17153  0x0e00   PrintIM                              PrintIM
     17154  0x1000   RecordingFormat                      int16u
     17155  0x1001   ImageInfo                            Ricoh ImageInfo
     17156           ExposureProgram                      int16u
     17157  0x1002   DriveMode                            int16u
     17158  0x1003   Sharpness                            int32u
     17159           WhiteBalance                         int16u
     17160  0x1004   WhiteBalanceFineTune                 int16u
     17161  0x1006   FocusMode                            int16u
     17162  0x1007   AutoBracketing                       int16u
     17163  0x1009   MacroMode                            int16u
     17164  0x100a   FlashMode                            int16u
     17165  0x100b   FlashExposureComp                    rational64s
     17166  0x100c   ManualFlashOutput                    rational64s
     17167  0x100d   FullPressSnap                        int16u
     17168  0x100e   DynamicRangeExpansion                int16u
     17169  0x100f   NoiseReduction                       int16u
     17170  0x1010   ImageEffects                         int16u
     17171  0x1011   Vignetting                           int16u
     17172  0x1012   Contrast                             int32u
     17173  0x1013   Saturation                           int32u
     17174  0x1014   Sharpness                            int32u
     17175  0x1015   ToningEffect                         int16u
     17176  0x1016   HueAdjust                            int16u
     17177  0x1017   WideAdapter                          int16u
     17178  0x1018   CropMode                             int16u
     17179  0x1019   NDFilter                             int16u
     17180  0x101a   WBBracketShotNumber                  int16u
     17181  0x1200   AFStatus                             int16u
     17182  0x1201   AFAreaXPosition1                     int32u
     17183  0x1202   AFAreaYPosition1                     int32u
     17184  0x1203   AFAreaXPosition                      int32u
     17185  0x1204   AFAreaYPosition                      int32u
     17186  0x1205   AFAreaMode                           int16u
     17187  0x1307   ColorTempKelvin                      int32u
     17188  0x1308   ColorTemperature                     int32u
     17189  0x1500   FocalLength                          rational64u
     17190  0x1601   SensorWidth                          int32u
     17191  0x1602   SensorHeight                         int32u
     17192  0x1603   CroppedImageWidth                    int32u
     17193  0x1604   CroppedImageHeight                   int32u
     17194  0x2001   RicohSubdir                          Ricoh Subdir
     17195           RicohSubdirIFD                       Ricoh Subdir
     17196           RicohRR1Subdir                       Ricoh Subdir
     17197  0x4001   ThetaSubdir                          Ricoh ThetaSubdir
     17198
     17199=head3 Ricoh ImageInfo Tags
     17200
     17201  Index1   Tag Name                             Writable
     17202  ------   --------                             --------
     17203      0    RicohImageWidth                      int16u
     17204      2    RicohImageHeight                     int16u
     17205      6    RicohDate                            int8u[7]
     17206     28    PreviewImageStart                    int16u*
     17207     30    PreviewImageLength                   int16u*
     17208     32    FlashMode                            int8u
     17209     33    Macro                                int8u
     17210     34    Sharpness                            int8u
     17211     38    WhiteBalance                         int8u
     17212     39    ISOSetting                           int8u
     17213     40    Saturation                           int8u
     17214
     17215=head3 Ricoh Subdir Tags
     17216
     17217  Tag ID   Tag Name                             Writable
     17218  ------   --------                             --------
     17219  0x0004   ManufactureDate1                     string[20]
     17220  0x0005   ManufactureDate2                     string[20]
     17221  0x001a   FaceInfo                             Ricoh FaceInfo
     17222  0x0029   FirmwareInfo                         Ricoh FirmwareInfo
     17223  0x002a   NoiseReduction                       int32u
     17224  0x002c   SerialInfo                           Ricoh SerialInfo
     17225
     17226=head3 Ricoh FaceInfo Tags
     17227
     17228  Index1   Tag Name                             Writable
     17229  ------   --------                             --------
     17230    181    FacesDetected                        int8u
     17231    182    FaceDetectFrameSize                  int16u[2]
     17232    188    Face1Position                        int16u[4]
     17233    200    Face2Position                        int16u[4]
     17234    212    Face3Position                        int16u[4]
     17235    224    Face4Position                        int16u[4]
     17236    236    Face5Position                        int16u[4]
     17237    248    Face6Position                        int16u[4]
     17238    260    Face7Position                        int16u[4]
     17239    272    Face8Position                        int16u[4]
     17240
     17241=head3 Ricoh FirmwareInfo Tags
     17242
     17243  Index1   Tag Name                             Writable
     17244  ------   --------                             --------
     17245      0    FirmwareRevision                     string[12]
     17246     12    FirmwareRevision2                    string[12]
     17247
     17248=head3 Ricoh SerialInfo Tags
     17249
     17250This information is found in images from the GXR.
     17251
     17252  Index1   Tag Name                             Writable
     17253  ------   --------                             --------
     17254      0    BodyFirmware                         string[16]
     17255     16    BodySerialNumber                     string[16]
     17256     32    LensFirmware                         string[16]
     17257     48    LensSerialNumber                     string[16]
     17258
     17259=head3 Ricoh ThetaSubdir Tags
     17260
     17261  Tag ID   Tag Name                             Writable
     17262  ------   --------                             --------
     17263  0x0003   Accelerometer                        rational64s[2]
     17264  0x0004   Compass                              rational64u
     17265  0x000a   TimeZone                             string
     17266
     17267=head3 Ricoh Type2 Tags
     17268
     17269Tags written by models such as the Ricoh HZ15 and the Pentax XG-1.  These
     17270are not writable due to numerous formatting errors as written by these
     17271cameras.
     17272
     17273  Tag ID   Tag Name                             Writable
     17274  ------   --------                             --------
     17275  0x0207   RicohModel                           no
     17276  0x0300   RicohMake                            no
     17277
     17278=head3 Ricoh Text Tags
     17279
     17280Some Ricoh DC and RDC models use a text-based format for their maker notes
     17281instead of the IFD format used by the Caplio models.  Below is a list of known
     17282tags in this information.
     17283
     17284  Tag ID   Tag Name                             Writable
     17285  ------   --------                             --------
     17286  'Bg'     BlueGain                             no
     17287  'Gg'     GreenGain                            no
     17288  'Rev'    FirmwareVersion                      no
     17289  'Rg'     RedGain                              no
     17290  'Rv'     FirmwareVersion                      no
     17291
     17292=head3 Ricoh RMETA Tags
     17293
     17294The Ricoh Caplio Pro G3 has the ability to add custom fields to the APP5
     17295"RMETA" segment of JPEG images.  While only a few observed tags have been
     17296defined below, ExifTool will extract any information found here.
     17297
     17298  Tag ID               Tag Name                 Writable
     17299  ------               --------                 --------
     17300  'Azimuth'            Azimuth                  no
     17301  'Condition'          Condition                no
     17302  'Lit'                Lit                      no
     17303  'Location'           Location                 no
     17304  'Sign type'          SignType                 no
     17305  '_audio'             SoundFile                no
     17306  '_barcode'           Barcodes                 no+
     17307
     17308=head3 Ricoh AVI Tags
     17309
     17310  Tag ID   Tag Name                             Writable
     17311  ------   --------                             --------
     17312  'mnrt'   MakerNoteRicoh                       Ricoh
     17313  'rdc2'   RicohRDC2?                           no
     17314  'thum'   ThumbnailImage                       no
     17315  'ucmt'   Comment                              no
    973317316
    973417317=head2 Sigma Tags
    973517318
    9736 These tags are used in Sigma/Foveon cameras.
     17319These tags are written by Sigma/Foveon cameras.  In the early days Sigma was
     17320a class leader by releasing their maker note specification to the public,
     17321but since then they have deviated from this standard and newer camera models
     17322are less than consistent about their metadata formats.
    973717323
    973817324  Tag ID   Tag Name                             Writable
     
    977417360           LuminanceNoiseReduction              string
    977517361  0x001c   PreviewImageSize                     int16u[2]
     17362           PreviewImageStart                    int32u*
    977617363  0x001d   MakerNoteVersion                     undef
     17364           PreviewImageLength                   int32u*
     17365  0x001e   PreviewImageSize                     int16u[2]
    977717366  0x001f   AFPoint                              string
     17367           MakerNoteVersion                     undef
    977817368  0x0022   FileFormat                           string
    977917369  0x0024   Calibration                          string
     17370  0x0026   FileFormat                           string
     17371  0x0027   LensType                             string
     17372           LensType                             -
     17373                                                Sigma LensType
     17374  0x002a   LensFocalRange                       rational64u[2]
     17375  0x002b   LensMaxApertureRange                 rational64u[2]
    978017376  0x002c   ColorMode                            int32u
    978117377  0x0030   LensApertureRange                    string
     17378           Calibration                          string
    978217379  0x0031   FNumber                              rational64u
    978317380  0x0032   ExposureTime                         rational64u
     
    979017387  0x003c   WhiteBalance                         string
    979117388  0x003d   PictureMode                          string
     17389  0x0048   LensApertureRange                    string
     17390  0x0049   FNumber                              rational64u
     17391  0x004a   ExposureTime                         rational64u
     17392  0x004b   ExposureTime2                        string
     17393  0x004d   ExposureCompensation                 rational64s
     17394  0x0055   SensorTemperature                    string
     17395  0x0056   FlashExposureComp                    rational64s
     17396  0x0057   Firmware2                            string
     17397  0x0058   WhiteBalance                         string
     17398  0x0059   DigitalFilter                        string
     17399  0x0084   Model                                string
     17400  0x0086   ISO                                  int16u
     17401  0x0087   ResolutionMode                       string
     17402  0x0088   WhiteBalance                         string
     17403  0x008c   Firmware                             string
     17404  0x011f   CameraCalibration                    float[9]
     17405  0x0120   WBSettings                           Sigma WBSettings
     17406  0x0121   WBSettings2                          Sigma WBSettings2
     17407
     17408=head3 Sigma WBSettings Tags
     17409
     17410  Index4   Tag Name                             Writable
     17411  ------   --------                             --------
     17412      0    WB_RGBLevelsAuto                     float[3]
     17413      3    WB_RGBLevelsDaylight                 float[3]
     17414      6    WB_RGBLevelsShade                    float[3]
     17415      9    WB_RGBLevelsOvercast                 float[3]
     17416     12    WB_RGBLevelsIncandescent             float[3]
     17417     15    WB_RGBLevelsFluorescent              float[3]
     17418     18    WB_RGBLevelsFlash                    float[3]
     17419     21    WB_RGBLevelsCustom1                  float[3]
     17420     24    WB_RGBLevelsCustom2                  float[3]
     17421     27    WB_RGBLevelsCustom3                  float[3]
     17422
     17423=head3 Sigma WBSettings2 Tags
     17424
     17425  Index4   Tag Name                             Writable
     17426  ------   --------                             --------
     17427      0    WB_RGBLevelsUnknown0?                float[3]
     17428      3    WB_RGBLevelsUnknown1?                float[3]
     17429      6    WB_RGBLevelsUnknown2?                float[3]
     17430      9    WB_RGBLevelsUnknown3?                float[3]
     17431     12    WB_RGBLevelsUnknown4?                float[3]
     17432     15    WB_RGBLevelsUnknown5?                float[3]
     17433     18    WB_RGBLevelsUnknown6?                float[3]
     17434     21    WB_RGBLevelsUnknown7?                float[3]
     17435     24    WB_RGBLevelsUnknown8?                float[3]
     17436     27    WB_RGBLevelsUnknown9?                float[3]
    979217437
    979317438=head2 Sony Tags
    979417439
    9795 The maker notes in images from most recent Sony camera models contain a
    9796 wealth of information, but for some models very little has been decoded.
    9797 Use the ExifTool Unknown (-u) or Verbose (-v) options to see information
    9798 about the unknown tags.  Also see the Minolta tags which are used by some
    9799 Sony models.
     17440The following information has been decoded from the MakerNotes of Sony
     17441cameras.  Some of these tags have been inherited from the Minolta
     17442MakerNotes.
    980017443
    980117444  Tag ID   Tag Name                             Writable
    980217445  ------   --------                             --------
     17446  0x0010   CameraInfo                           Sony CameraInfo
     17447           CameraInfo2                          Sony CameraInfo2
     17448           CameraInfo3                          Sony CameraInfo3
     17449           CameraInfoUnknown                    Sony CameraInfoUnknown
     17450  0x0020   FocusInfo                            Sony FocusInfo
     17451           MoreInfo                             Sony MoreInfo
    980317452  0x0102   Quality                              int32u
    980417453  0x0104   FlashExposureComp                    rational64s
     
    980717456  0x0114   CameraSettings                       Sony CameraSettings
    980817457           CameraSettings2                      Sony CameraSettings2
     17458           CameraSettings3                      Sony CameraSettings3
    980917459           CameraSettingsUnknown                Sony CameraSettingsUnknown
    981017460  0x0115   WhiteBalance                         int32u
     17461  0x0116   ExtraInfo                            Sony ExtraInfo
     17462           ExtraInfo2                           Sony ExtraInfo2
     17463           ExtraInfo3                           Sony ExtraInfo3
    981117464  0x0e00   PrintIM                              PrintIM
    981217465  0x1000   MultiBurstMode                       undef
     
    981517468  0x1003   Panorama                             Sony Panorama
    981617469  0x2001   PreviewImage                         undef
     17470  0x2002   Rating                               int32u
    981717471  0x2004   Contrast                             int32s
    981817472  0x2005   Saturation                           int32s
     
    982317477  0x200a   HDR                                  int32u
    982417478  0x200b   MultiFrameNoiseReduction             int32u
     17479  0x200e   PictureEffect                        int16u
     17480  0x200f   SoftSkinEffect                       int32u
     17481  0x2010   Tag2010a                             Sony Tag2010a
     17482           Tag2010b                             Sony Tag2010b
     17483           Tag2010c                             Sony Tag2010c
     17484           Tag2010d                             Sony Tag2010d
     17485           Tag2010e                             Sony Tag2010e
     17486           Tag2010f                             Sony Tag2010f
     17487           Tag2010g                             Sony Tag2010g
     17488           Tag2010h                             Sony Tag2010h
     17489           Tag2010i                             Sony Tag2010i
     17490  0x2011   VignettingCorrection                 int32u
     17491  0x2012   LateralChromaticAberration           int32u
     17492  0x2013   DistortionCorrectionSetting          int32u
     17493  0x2014   WBShiftAB_GM                         int32s[2]
     17494  0x2016   AutoPortraitFramed                   int16u
     17495  0x2017   FlashAction                          int32u
     17496  0x201a   ElectronicFrontCurtainShutter        int32u
     17497  0x201b   FocusMode                            int8u
     17498  0x201c   AFAreaModeSetting                    int8u
     17499  0x201d   FlexibleSpotPosition                 int16u[2]
     17500  0x201e   AFPointSelected                      int8u
     17501  0x2020   AFPointsUsed                         no
     17502  0x2021   AFTracking                           int8u
     17503  0x2022   FocalPlaneAFPointsUsed               no
     17504  0x2023   MultiFrameNREffect                   int32u
     17505  0x2026   WBShiftAB_GM_Precise                 int32s[2]~
     17506  0x2027   FocusLocation                        int16u[4]
     17507  0x2028   VariableLowPassFilter                int16u[2]
     17508  0x2029   RAWFileType                          int16u
     17509  0x202a   Tag202a                              Sony Tag202a
     17510  0x202b   PrioritySetInAWB                     int8u
     17511  0x202c   MeteringMode2                        int16u
     17512  0x202d   ExposureStandardAdjustment           rational64s
     17513  0x202e   Quality                              int16u[2]
     17514  0x202f   PixelShiftInfo                       undef
     17515  0x2031   SerialNumber                         string
    982517516  0x3000   ShotInfo                             Sony ShotInfo
     17517  0x900b   Tag900b                              Sony Tag900b
     17518  0x9050   Tag9050a                             Sony Tag9050a
     17519           Tag9050b                             Sony Tag9050b
     17520           Tag9050c                             Sony Tag9050c
     17521  0x9400   Tag9400a                             Sony Tag9400a
     17522           Tag9400b                             Sony Tag9400b
     17523           Tag9400c                             Sony Tag9400c
     17524  0x9401   Tag9401                              Sony Tag9401
     17525  0x9402   Tag9402                              Sony Tag9402
     17526  0x9403   Tag9403                              Sony Tag9403
     17527  0x9404   Tag9404a                             Sony Tag9404a
     17528           Tag9404b                             Sony Tag9404b
     17529           Tag9404c                             Sony Tag9404c
     17530  0x9405   Tag9405a                             Sony Tag9405a
     17531           Tag9405b                             Sony Tag9405b
     17532  0x9406   Tag9406                              Sony Tag9406
     17533  0x940a   Tag940a                              Sony Tag940a
     17534  0x940c   Tag940c                              Sony Tag940c
     17535  0x940e   AFInfo                               Sony AFInfo
     17536           Tag940e                              Sony Tag940e
     17537  0x9416   Sony_0x9416                          Sony Tag9416
    982617538  0xb000   FileFormat                           int8u[4]
    982717539  0xb001   SonyModelID                          int16u
    9828   0xb020   ColorReproduction                    string
     17540  0xb020   CreativeStyle                        string
    982917541  0xb021   ColorTemperature                     int32u
    983017542  0xb022   ColorCompensationFilter              int32u
     
    983617548  0xb028   MinoltaMakerNote                     Minolta
    983717549  0xb029   ColorMode                            int32u
     17550  0xb02a   LensSpec                             int8u[8]
    983817551  0xb02b   FullImageSize                        int32u[2]
    983917552  0xb02c   PreviewImageSize                     int32u[2]
     
    984117554  0xb041   ExposureMode                         int16u
    984217555  0xb042   FocusMode                            int16u
    9843   0xb043   AFMode                               int16u
     17556  0xb043   AFAreaMode                           int16u
    984417557  0xb044   AFIlluminator                        int16u
    9845   0xb047   Quality                              int16u
     17558  0xb047   JPEGQuality                          int16u
    984617559  0xb048   FlashLevel                           int16s
    984717560  0xb049   ReleaseMode                          int16u
    984817561  0xb04a   SequenceNumber                       int16u
    984917562  0xb04b   Anti-Blur                            int16u
    9850   0xb04e   LongExposureNoiseReduction           int16u
     17563  0xb04e   FocusMode                            int16u
    985117564  0xb04f   DynamicRangeOptimizer                int16u
     17565  0xb050   HighISONoiseReduction2               int16u
    985217566  0xb052   IntelligentAuto                      int16u
    985317567  0xb054   WhiteBalance                         int16u
    985417568
     17569=head3 Sony CameraInfo Tags
     17570
     17571Camera information for the A700, A850 and A900.
     17572
     17573  Index1   Tag Name                             Writable
     17574  ------   --------                             --------
     17575      0    LensSpec                             undef[8]
     17576     20    FocusModeSetting                     int8u
     17577     21    AFPointSelected                      int8u
     17578     25    AFPoint                              int8u
     17579     30    AFStatusActiveSensor                 int16s
     17580     32    AFStatusUpper-left                   int16s
     17581     34    AFStatusLeft                         int16s
     17582     36    AFStatusLower-left                   int16s
     17583     38    AFStatusFarLeft                      int16s
     17584     40    AFStatusBottomAssist-left            int16s
     17585     42    AFStatusBottom                       int16s
     17586     44    AFStatusBottomAssist-right           int16s
     17587     46    AFStatusCenter-7                     int16s
     17588     48    AFStatusCenter-horizontal            int16s
     17589     50    AFStatusCenter-9                     int16s
     17590     52    AFStatusCenter-10                    int16s
     17591     54    AFStatusCenter-11                    int16s
     17592     56    AFStatusCenter-12                    int16s
     17593     58    AFStatusCenter-vertical              int16s
     17594     60    AFStatusCenter-14                    int16s
     17595     62    AFStatusTopAssist-left               int16s
     17596     64    AFStatusTop                          int16s
     17597     66    AFStatusTopAssist-right              int16s
     17598     68    AFStatusFarRight                     int16s
     17599     70    AFStatusUpper-right                  int16s
     17600     72    AFStatusRight                        int16s
     17601     74    AFStatusLower-right                  int16s
     17602     76    AFStatusCenterF2-8                   int16s
     17603    304    AFMicroAdjValue                      int8u
     17604    305    AFMicroAdjMode                       int8u & 0x80
     17605  305.1    AFMicroAdjRegisteredLenses           int8u & 0x7f
     17606
     17607=head3 Sony CameraInfo2 Tags
     17608
     17609Camera information for the DSLR-A200, A230, A290, A300, A330, A350, A380 and
     17610A390.
     17611
     17612  Index1   Tag Name                             Writable
     17613  ------   --------                             --------
     17614      0    LensSpec                             undef[8]
     17615     20    AFPointSelected                      int8u
     17616     21    FocusModeSetting                     int8u
     17617     24    AFPoint                              int8u
     17618     27    AFStatusActiveSensor                 int16s
     17619     29    AFStatusTop-right                    int16s
     17620     31    AFStatusBottom-right                 int16s
     17621     33    AFStatusBottom                       int16s
     17622     35    AFStatusMiddleHorizontal             int16s
     17623     37    AFStatusCenterVertical               int16s
     17624     39    AFStatusTop                          int16s
     17625     41    AFStatusTop-left                     int16s
     17626     43    AFStatusBottom-left                  int16s
     17627     45    AFStatusLeft                         int16s
     17628     47    AFStatusCenterHorizontal             int16s
     17629     49    AFStatusRight                        int16s
     17630
     17631=head3 Sony CameraInfo3 Tags
     17632
     17633Camera information stored by the A33, A35, A55, A450, A500, A550, A560,
     17634A580, NEX-3/5/5C/C3 and VG10E.  Some tags are valid only for some of these
     17635models.
     17636
     17637  Index1   Tag Name                             Writable
     17638  ------   --------                             --------
     17639      0    LensSpec                             undef[8]
     17640     14    FocalLength                          int16u
     17641     16    FocalLengthTeleZoom                  int16u
     17642     20    AFPointSelected                      int8u
     17643     21    FocusMode                            int8u
     17644     24    AFPoint                              int8u
     17645     25    FocusStatus                          int8u
     17646     27    AFStatusActiveSensor                 int16s
     17647     28    AFPointSelected                      int8u
     17648     29    FocusMode                            int8u
     17649           AFStatusTop-right                    int16s
     17650     31    AFStatusBottom-right                 int16s
     17651     32    AFPoint                              int8u
     17652     33    AFStatusActiveSensor                 int16s
     17653           AFStatusBottom                       int16s
     17654     35    AFStatus15                           Sony AFStatus15
     17655           AFStatusMiddleHorizontal             int16s
     17656     37    AFStatusCenterVertical               int16s
     17657     39    AFStatusTop                          int16s
     17658     41    AFStatusTop-left                     int16s
     17659     43    AFStatusBottom-left                  int16s
     17660     45    AFStatusLeft                         int16s
     17661     47    AFStatusCenterHorizontal             int16s
     17662     49    AFStatusRight                        int16s
     17663
     17664=head3 Sony AFStatus15 Tags
     17665
     17666AF Status information for models with 15-point AF.
     17667
     17668  Index1   Tag Name                             Writable
     17669  ------   --------                             --------
     17670      0    AFStatusUpper-left                   int16s
     17671      2    AFStatusLeft                         int16s
     17672      4    AFStatusLower-left                   int16s
     17673      6    AFStatusFarLeft                      int16s
     17674      8    AFStatusTopHorizontal                int16s
     17675     10    AFStatusNearRight                    int16s
     17676     12    AFStatusCenterHorizontal             int16s
     17677     14    AFStatusNearLeft                     int16s
     17678     16    AFStatusBottomHorizontal             int16s
     17679     18    AFStatusTopVertical                  int16s
     17680     20    AFStatusCenterVertical               int16s
     17681     22    AFStatusBottomVertical               int16s
     17682     24    AFStatusFarRight                     int16s
     17683     26    AFStatusUpper-right                  int16s
     17684     28    AFStatusRight                        int16s
     17685     30    AFStatusLower-right                  int16s
     17686     32    AFStatusUpper-middle                 int16s
     17687     34    AFStatusLower-middle                 int16s
     17688
     17689=head3 Sony CameraInfoUnknown Tags
     17690
     17691  Index1   Tag Name                             Writable
     17692  ------   --------                             --------
     17693  [no tags known]
     17694
     17695=head3 Sony FocusInfo Tags
     17696
     17697More camera settings and focus information decoded for models such as the
     17698A200, A230, A290, A300, A330, A350, A380, A390, A700, A850 and A900.
     17699
     17700  Index1   Tag Name                             Writable
     17701  ------   --------                             --------
     17702     14    DriveMode2                           int8u
     17703     16    Rotation                             int8u
     17704     20    ImageStabilizationSetting            int8u
     17705     21    DynamicRangeOptimizerMode            int8u
     17706     43    BracketShotNumber                    int8u
     17707     44    WhiteBalanceBracketing               int8u
     17708     45    BracketShotNumber2                   int8u
     17709     46    DynamicRangeOptimizerBracket         int8u
     17710     47    ExposureBracketShotNumber            int8u
     17711     63    ExposureProgram                      int8u
     17712     65    CreativeStyle                        int8u
     17713    109    ISOSetting                           int8u
     17714    111    ISO                                  int8u
     17715    119    DynamicRangeOptimizerMode            int8u
     17716    121    DynamicRangeOptimizerLevel           int8u
     17717   2118    ShutterCount                         int32u
     17718   2491    FocusPosition                        int8u
     17719   4368    TiffMeteringImage                    no
     17720
     17721=head3 Sony MoreInfo Tags
     17722
     17723More camera settings information decoded for the A450, A500, A550, A560,
     17724A580, A33, A35, A55, NEX-3/5/C3 and VG10E.
     17725
     17726  Tag ID   Tag Name                             Writable
     17727  ------   --------                             --------
     17728  0x0001   MoreSettings                         Sony MoreSettings
     17729  0x0002   FaceInfo                             Sony FaceInfo
     17730           FaceInfoA                            Sony FaceInfoA
     17731  0x0107   TiffMeteringImage                    no
     17732  0x0201   MoreInfo0201                         Sony MoreInfo0201
     17733  0x0401   MoreInfo0401                         Sony MoreInfo0401
     17734
     17735=head3 Sony MoreSettings Tags
     17736
     17737  Index1   Tag Name                             Writable
     17738  ------   --------                             --------
     17739      1    DriveMode2                           int8u
     17740      2    ExposureProgram                      int8u
     17741      3    MeteringMode                         int8u
     17742      4    DynamicRangeOptimizerSetting         int8u
     17743      5    DynamicRangeOptimizerLevel           int8u
     17744      6    ColorSpace                           int8u
     17745      7    CreativeStyleSetting                 int8u
     17746      8    ContrastSetting                      int8s
     17747      9    SaturationSetting                    int8s
     17748     10    SharpnessSetting                     int8s
     17749     13    WhiteBalanceSetting                  int8u
     17750     14    ColorTemperatureSetting              int8u
     17751     15    ColorCompensationFilterSet           int8s
     17752     16    FlashMode                            int8u
     17753     17    LongExposureNoiseReduction           int8u
     17754     18    HighISONoiseReduction                int8u
     17755     19    FocusMode                            int8u
     17756     21    MultiFrameNoiseReduction             int8u
     17757     22    HDRSetting                           int8u
     17758     23    HDRLevel                             int8u
     17759     24    ViewingMode                          int8u
     17760     25    FaceDetection                        int8u
     17761     26    CustomWB_RBLevels                    int16uRev[2]
     17762     30    BrightnessValue                      int8u
     17763           ExposureCompensationSet              int8u
     17764     31    ISO                                  int8u
     17765           FlashExposureCompSet                 int8u
     17766     32    FNumber                              int8u
     17767           LiveViewAFMethod                     int8u
     17768     33    ExposureTime                         int8u
     17769           ISO                                  int8u
     17770     34    FNumber                              int8u
     17771     35    FocalLength2                         int8u
     17772           ExposureTime                         int8u
     17773     36    ExposureCompensation2                int16s
     17774     37    FocalLength2                         int8u
     17775           ISO                                  int8u
     17776     38    FlashExposureCompSet2                int16s
     17777           ExposureCompensation2                int16s
     17778           FNumber                              int8u
     17779     39    ExposureTime                         int8u
     17780     40    Orientation2                         int8u
     17781     41    FocusPosition2                       int8u
     17782           FocalLength2                         int8u
     17783     42    FlashAction                          int8u
     17784           ExposureCompensation2                int16s
     17785     43    FocusPosition2                       int8u
     17786     44    FocusMode2                           int8u
     17787           FlashAction                          int8u
     17788           FlashExposureCompSet2                int16s
     17789     46    FocusMode2                           int8u
     17790           Orientation2                         int8u
     17791     47    FocusPosition2                       int8u
     17792     48    FlashAction                          int8u
     17793     50    FocusMode2                           int8u
     17794    119    FlashAction2                         int8u
     17795    120    FlashActionExternal                  int8u
     17796    124    FlashActionExternal                  int8u
     17797    130    FlashStatus                          int8u
     17798    134    FlashStatus                          int8u
     17799
     17800=head3 Sony FaceInfo Tags
     17801
     17802  Index2   Tag Name                             Writable
     17803  ------   --------                             --------
     17804      0    FacesDetected                        int16s
     17805      1    Face1Position                        int16u[4]
     17806      6    Face2Position                        int16u[4]
     17807     11    Face3Position                        int16u[4]
     17808     16    Face4Position                        int16u[4]
     17809     21    Face5Position                        int16u[4]
     17810     26    Face6Position                        int16u[4]
     17811     31    Face7Position                        int16u[4]
     17812     36    Face8Position                        int16u[4]
     17813
     17814=head3 Sony FaceInfoA Tags
     17815
     17816  Index2   Tag Name                             Writable
     17817  ------   --------                             --------
     17818      3    FacesDetected                        no
     17819     11    PotentialFace1Position               int16u[4]
     17820     21    PotentialFace2Position               int16u[4]
     17821     31    PotentialFace3Position               int16u[4]
     17822     41    PotentialFace4Position               int16u[4]
     17823     51    PotentialFace5Position               int16u[4]
     17824     61    PotentialFace6Position               int16u[4]
     17825     71    PotentialFace7Position               int16u[4]
     17826     81    PotentialFace8Position               int16u[4]
     17827     91    Face1Position                        int16u[4]
     17828    101    Face2Position                        int16u[4]
     17829    111    Face3Position                        int16u[4]
     17830    121    Face4Position                        int16u[4]
     17831
     17832=head3 Sony MoreInfo0201 Tags
     17833
     17834  Index1   Tag Name                             Writable
     17835  ------   --------                             --------
     17836    283    ImageCount                           int32u
     17837    293    ShutterCount                         int32u
     17838    330    ShutterCount                         int32u
     17839
     17840=head3 Sony MoreInfo0401 Tags
     17841
     17842  Index1   Tag Name                             Writable
     17843  ------   --------                             --------
     17844   1102    ShotNumberSincePowerUp               int32u
     17845
    985517846=head3 Sony CameraSettings Tags
    985617847
    9857 Camera settings for the A200, A230, A300, A350, A700, A850 and A900.  Some
    9858 tags are only valid for certain models.
    9859 
    9860    Index   Tag Name                             Writable
    9861    -----   --------                             --------
    9862       4    DriveMode                            int16u
    9863       6    WhiteBalanceFineTune                 int16s
    9864      16    FocusMode                            int16u
     17848Camera settings for the A200, A300, A350, A700, A850 and A900.
     17849
     17850  Index2   Tag Name                             Writable
     17851  ------   --------                             --------
     17852      0    ExposureTime                         int16u
     17853      1    FNumber                              int16u
     17854      2    HighSpeedSync                        int16u
     17855      3    ExposureCompensationSet              int16u
     17856      4    DriveMode                            int16u & 0xff
     17857      5    WhiteBalanceSetting                  int16u
     17858      6    WhiteBalanceFineTune                 int16u
     17859      7    ColorTemperatureSet                  int16u
     17860      8    ColorCompensationFilterSet           int16u
     17861     12    ColorTemperatureCustom               int16u
     17862     13    ColorCompensationFilterCustom        int16u
     17863     15    WhiteBalance                         int16u
     17864     16    FocusModeSetting                     int16u
    986517865     17    AFAreaMode                           int16u
    9866      18    LocalAFAreaPoint                     int16u
     17866     18    AFPointSetting                       int16u
     17867     19    FlashMode                            int16u
     17868     20    FlashExposureCompSet                 int16u
    986717869     21    MeteringMode                         int16u
    986817870     22    ISOSetting                           int16u
     
    987017872     25    DynamicRangeOptimizerLevel           int16u
    987117873     26    CreativeStyle                        int16u
     17874     27    ColorSpace                           int16u
    987217875     28    Sharpness                            int16u
    987317876     29    Contrast                             int16u
     
    987517878     31    ZoneMatchingValue                    int16u
    987617879     34    Brightness                           int16u
    9877      35    FlashMode                            int16u
     17880     35    FlashControl                         int16u
    987817881     40    PrioritySetupShutterRelease          int16u
    987917882     41    AFIlluminator                        int16u
     
    988217885     44    HighISONoiseReduction                int16u
    988317886     45    ImageStyle                           int16u
     17887     46    FocusModeSwitch                      int16u
     17888     47    ShutterSpeedSetting                  int16u
     17889     48    ApertureSetting                      int16u
    988417890     60    ExposureProgram                      int16u
    9885      61    ImageStabilization                   int16u
     17891     61    ImageStabilizationSetting            int16u
     17892     62    FlashAction                          int16u
    988617893     63    Rotation                             int16u
     17894     64    AELock                               int16u
     17895     76    FlashAction2                         int16u
     17896     77    FocusMode                            int16u
     17897     80    BatteryState                         int16u
     17898     81    BatteryLevel                         int16u
     17899     83    FocusStatus                          int16u
    988717900     84    SonyImageSize                        int16u
    988817901     85    AspectRatio                          int16u
    988917902     86    Quality                              int16u
    989017903     88    ExposureLevelIncrements              int16u
     17904    106    RedEyeReduction                      int16u
     17905    154    FolderNumber                         int16u & 0x3ff
     17906    155    ImageNumber                          int16u & 0x3fff
    989117907
    989217908=head3 Sony CameraSettings2 Tags
    989317909
    9894 Camera settings for the A330 and A380.
    9895 
    9896    Index   Tag Name                             Writable
    9897    -----   --------                             --------
    9898      16    FocusMode                            int16u
    9899      17    AFAreaMode                           int16u
    9900      18    LocalAFAreaPoint                     int16u
     17910Camera settings for the A230, A290, A330, A380 and A390.
     17911
     17912  Index2   Tag Name                             Writable
     17913  ------   --------                             --------
     17914      0    ExposureTime                         int16u
     17915      1    FNumber                              int16u
     17916      2    HighSpeedSync                        int16u
     17917      3    ExposureCompensationSet              int16u
     17918      4    WhiteBalanceSetting                  int16u
     17919      5    WhiteBalanceFineTune                 int16u
     17920      6    ColorTemperatureSet                  int16u
     17921      7    ColorCompensationFilterSet           int16u
     17922      8    CustomWB_RGBLevels                   int16u[3]
     17923     11    ColorTemperatureCustom               int16u
     17924     12    ColorCompensationFilterCustom        int16u
     17925     14    WhiteBalance                         int16u
     17926     15    FocusModeSetting                     int16u
     17927     16    AFAreaMode                           int16u
     17928     17    AFPointSetting                       int16u
     17929     18    FlashExposureCompSet                 int16u
    990117930     19    MeteringMode                         int16u
    990217931     20    ISOSetting                           int16u
     
    990717936     26    Contrast                             int16u
    990817937     27    Saturation                           int16u
    9909      35    FlashMode                            int16u
     17938     31    FlashControl                         int16u
     17939     37    LongExposureNoiseReduction           int16u
     17940     38    HighISONoiseReduction                int16u
     17941     39    ImageStyle                           int16u
     17942     40    ShutterSpeedSetting                  int16u
     17943     41    ApertureSetting                      int16u
    991017944     60    ExposureProgram                      int16u
     17945     61    ImageStabilizationSetting            int16u
     17946     62    FlashAction                          int16u
    991117947     63    Rotation                             int16u
     17948     64    AELock                               int16u
     17949     76    FlashAction2                         int16u
     17950     77    FocusMode                            int16u
     17951     83    FocusStatus                          int16u
    991217952     84    SonyImageSize                        int16u
     17953     85    AspectRatio                          int16u
     17954     86    Quality                              int16u
     17955     88    ExposureLevelIncrements              int16u
     17956    126    DriveMode                            int16u & 0xff
     17957    127    FlashMode                            int16u
     17958    131    ColorSpace                           int16u
     17959
     17960=head3 Sony CameraSettings3 Tags
     17961
     17962Camera settings for models such as the A33, A35, A55, A450, A500, A550,
     17963A560, A580, NEX-3, NEX-5, NEX-C3 and NEX-VG10E.
     17964
     17965  Index1   Tag Name                             Writable
     17966  ------   --------                             --------
     17967      0    ShutterSpeedSetting                  int8u
     17968      1    ApertureSetting                      int8u
     17969      2    ISOSetting                           int8u
     17970      3    ExposureCompensationSet              int8u
     17971      4    DriveModeSetting                     int8u
     17972      5    ExposureProgram                      int8u
     17973      6    FocusModeSetting                     int8u
     17974      7    MeteringMode                         int8u
     17975      9    SonyImageSize                        int8u
     17976     10    AspectRatio                          int8u
     17977     11    Quality                              int8u
     17978     12    DynamicRangeOptimizerSetting         int8u
     17979     13    DynamicRangeOptimizerLevel           int8u
     17980     14    ColorSpace                           int8u
     17981     15    CreativeStyleSetting                 int8u
     17982     16    ContrastSetting                      int8s
     17983     17    SaturationSetting                    int8s
     17984     18    SharpnessSetting                     int8s
     17985     22    WhiteBalanceSetting                  int8u
     17986     23    ColorTemperatureSetting              int8u
     17987     24    ColorCompensationFilterSet           int8s
     17988     25    CustomWB_RGBLevels                   int16uRev[3]
     17989     32    FlashMode                            int8u
     17990     33    FlashControl                         int8u
     17991     35    FlashExposureCompSet                 int8u
     17992     36    AFAreaMode                           int8u
     17993     37    LongExposureNoiseReduction           int8u
     17994     38    HighISONoiseReduction                int8u
     17995     39    SmileShutterMode                     int8u
     17996     40    RedEyeReduction                      int8u
     17997     45    HDRSetting                           int8u
     17998     46    HDRLevel                             int8u
     17999     47    ViewingMode                          int8u
     18000     48    FaceDetection                        int8u
     18001     49    SmileShutter                         int8u
     18002     50    SweepPanoramaSize                    int8u
     18003     51    SweepPanoramaDirection               int8u
     18004     52    DriveMode                            int8u
     18005     53    MultiFrameNoiseReduction             int8u
     18006     54    LiveViewAFSetting                    int8u
     18007     56    PanoramaSize3D                       int8u
     18008    131    AFButtonPressed                      int8u
     18009    132    LiveViewMetering                     int8u
     18010    133    ViewingMode2                         int8u
     18011    134    AELock                               int8u
     18012    135    FlashStatusBuilt-in                  int8u
     18013    136    FlashStatusExternal                  int8u
     18014    139    LiveViewFocusMode                    int8u
     18015    153    LensMount                            int8u
     18016    268    SequenceNumber                       int8u
     18017    276    FolderNumber                         int32u & 0xffc000
     18018  276.1    ImageNumber                          int32u & 0x3fff
     18019    512    ShotNumberSincePowerUp2              int32u
     18020    643    AFButtonPressed                      int8u
     18021    644    LiveViewMetering                     int8u
     18022    645    ViewingMode2                         int8u
     18023    646    AELock                               int8u
     18024    647    FlashStatusBuilt-in                  int8u
     18025    648    FlashStatusExternal                  int8u
     18026    651    LiveViewFocusMode                    int8u
     18027    780    SequenceNumber                       int8u
     18028    788    ImageNumber                          int16u & 0x3fff
     18029    790    FolderNumber                         int16u & 0x3ff
     18030   1008    LensE-mountVersion                   int16u
     18031   1011    LensFirmwareVersion                  int16u~
     18032   1015    LensType2                            int16u
     18033   1024    ImageNumber                          int16u & 0x3fff
     18034   1026    FolderNumber                         int16u & 0x3ff
    991318035
    991418036=head3 Sony CameraSettingsUnknown Tags
    991518037
    9916    Index   Tag Name                             Writable
    9917    -----   --------                             --------
     18038  Index2   Tag Name                             Writable
     18039  ------   --------                             --------
    991818040  [no tags known]
    991918041
     18042=head3 Sony ExtraInfo Tags
     18043
     18044Extra hardware information for the A850 and A900.
     18045
     18046  Index1   Tag Name                             Writable
     18047  ------   --------                             --------
     18048      1    BatteryTemperature                   int8u
     18049      2    BatteryUnknown?                      no
     18050      8    BatteryVoltage?                      no
     18051     10    ImageStabilization2?                 int8u
     18052     12    BatteryLevel                         int8u
     18053     26    ExtraInfoVersion                     int8u[4]
     18054
     18055=head3 Sony ExtraInfo2 Tags
     18056
     18057Extra hardware information for the A230/290/330/380/390.
     18058
     18059  Index1   Tag Name                             Writable
     18060  ------   --------                             --------
     18061      4    BatteryLevel                         int8u
     18062     18    ImageStabilization                   int8u
     18063
     18064=head3 Sony ExtraInfo3 Tags
     18065
     18066Extra hardware information for the A33, A35, A55, A450, A500, A550, A560,
     18067A580 and NEX-3/5/C3/VG10.
     18068
     18069  Index1   Tag Name                             Writable
     18070  ------   --------                             --------
     18071      0    BatteryUnknown?                      int16u
     18072      2    BatteryTemperature                   int8u
     18073      4    BatteryLevel                         int8u
     18074      6    BatteryVoltage1                      int16u
     18075      8    BatteryVoltage2                      int16u
     18076     17    ImageStabilization                   int8u
     18077     20    BatteryState                         int8u
     18078           ExposureProgram                      int8u
     18079           ModeDialPosition                     int8u
     18080     22    MemoryCardConfiguration              int8u & 0xc0
     18081           CameraOrientation                    int8u
     18082     24    CameraOrientation                    int8u & 0x30
     18083
    992018084=head3 Sony Panorama Tags
    992118085
    9922 Tags found only in panorama images from Sony cameras such as the HX1, HX5
    9923 and TX7.  The width/height values of these tags are not affected by camera
     18086Tags found in panorama images from various Sony DSC, NEX, SLT and DSLR
     18087cameras.  The width/height values of these tags are not affected by camera
    992418088rotation -- the width is always the longer dimension.
    992518089
    9926    Index   Tag Name                             Writable
    9927    -----   --------                             --------
     18090  Index4   Tag Name                             Writable
     18091  ------   --------                             --------
    992818092      1    PanoramaFullWidth                    int32u
    992918093      2    PanoramaFullHeight                   int32u
     
    993818102     11    PanoramaSourceHeight                 int32u
    993918103
     18104=head3 Sony Tag2010a Tags
     18105
     18106Valid for NEX-5N.
     18107
     18108  Index1   Tag Name                             Writable
     18109  ------   --------                             --------
     18110   1200    MeterInfo?                           Sony MeterInfo
     18111   4392    ReleaseMode3                         int8u
     18112   4396    ReleaseMode2                         int8u
     18113   4404    SelfTimer                            int8u
     18114   4408    FlashMode                            int8u
     18115   4414    StopsAboveBaseISO                    int16u
     18116   4416    BrightnessValue                      int16u
     18117   4420    DynamicRangeOptimizer                int8u
     18118   4424    HDRSetting                           int8u
     18119   4428    ExposureCompensation                 int16s
     18120   4446    PictureProfile                       int8u
     18121   4447    PictureProfile                       int8u
     18122   4451    PictureEffect2                       int8u
     18123   4464    Quality2                             int8u
     18124   4468    MeteringMode                         int8u
     18125   4469    ExposureProgram                      int8u
     18126   4476    WB_RGBLevels                         int16u[3]
     18127
     18128=head3 Sony MeterInfo Tags
     18129
     18130Information possibly related to metering.  Extracted only if the Unknown
     18131option is used.
     18132
     18133  Index1   Tag Name                             Writable
     18134  ------   --------                             --------
     18135      0    MeterInfo1Row1                       int32u[27]
     18136    108    MeterInfo1Row2                       int32u[27]
     18137    216    MeterInfo1Row3                       int32u[27]
     18138    324    MeterInfo1Row4                       int32u[27]
     18139    432    MeterInfo1Row5                       int32u[27]
     18140    540    MeterInfo1Row6                       int32u[27]
     18141    648    MeterInfo1Row7                       int32u[27]
     18142    756    MeterInfo2Row1                       int32u[33]
     18143    888    MeterInfo2Row2                       int32u[33]
     18144   1020    MeterInfo2Row3                       int32u[33]
     18145   1152    MeterInfo2Row4                       int32u[33]
     18146   1284    MeterInfo2Row5                       int32u[33]
     18147   1416    MeterInfo2Row6                       int32u[33]
     18148   1548    MeterInfo2Row7                       int32u[33]
     18149   1680    MeterInfo2Row8                       int32u[33]
     18150   1812    MeterInfo2Row9                       int32u[33]
     18151
     18152=head3 Sony Tag2010b Tags
     18153
     18154Valid for SLT-A65/A77, NEX-7/VG20E.
     18155
     18156  Index1   Tag Name                             Writable
     18157  ------   --------                             --------
     18158      0    SequenceImageNumber                  int32u
     18159      4    SequenceFileNumber                   int32u
     18160      8    ReleaseMode2                         int32u
     18161    438    SonyDateTime                         undef[7]
     18162    804    DynamicRangeOptimizer                int8u
     18163   1204    MeterInfo?                           Sony MeterInfo
     18164   4392    ReleaseMode3                         int8u
     18165   4396    ReleaseMode2                         int8u
     18166   4404    SelfTimer                            int8u
     18167   4408    FlashMode                            int8u
     18168   4414    StopsAboveBaseISO                    int16u
     18169   4416    BrightnessValue                      int16u
     18170   4420    DynamicRangeOptimizer                int8u
     18171   4424    HDRSetting                           int8u
     18172   4428    ExposureCompensation                 int16s
     18173   4450    PictureProfile                       int8u
     18174   4451    PictureProfile                       int8u
     18175   4455    PictureEffect2                       int8u
     18176   4468    Quality2                             int8u
     18177   4472    MeteringMode                         int8u
     18178   4473    ExposureProgram                      int8u
     18179   4480    WB_RGBLevels                         int16u[3]
     18180   4632    SonyISO                              int16u
     18181   6691    DistortionCorrParams                 int16s[16]
     18182
     18183=head3 Sony Tag2010c Tags
     18184
     18185Valid for SLT-A37/A57 and NEX-F3.
     18186
     18187  Index1   Tag Name                             Writable
     18188  ------   --------                             --------
     18189      0    SequenceImageNumber                  int32u
     18190      4    SequenceFileNumber                   int32u
     18191      8    ReleaseMode2                         int32u
     18192    512    DigitalZoomRatio                     int8u
     18193    528    SonyDateTime                         undef[7]
     18194    768    DynamicRangeOptimizer                int8u
     18195   1168    MeterInfo?                           Sony MeterInfo
     18196   4356    ReleaseMode3                         int8u
     18197   4360    ReleaseMode2                         int8u
     18198   4368    SelfTimer                            int8u
     18199   4372    FlashMode                            int8u
     18200   4378    StopsAboveBaseISO                    int16u
     18201   4380    BrightnessValue                      int16u
     18202   4384    DynamicRangeOptimizer                int8u
     18203   4388    HDRSetting                           int8u
     18204   4392    ExposureCompensation                 int16s
     18205   4414    PictureProfile                       int8u
     18206   4415    PictureProfile                       int8u
     18207   4419    PictureEffect2                       int8u
     18208   4432    Quality2                             int8u
     18209   4436    MeteringMode                         int8u
     18210   4437    ExposureProgram                      int8u
     18211   4444    WB_RGBLevels                         int16u[3]
     18212   4596    SonyISO                              int16u
     18213
     18214=head3 Sony Tag2010d Tags
     18215
     18216Valid for DSC-HX10V/HX20V/HX200V/TX66/TX200V/TX300V/WX50/WX100/WX150, but
     18217not valid for panorama images.
     18218
     18219  Index1   Tag Name                             Writable
     18220  ------   --------                             --------
     18221      0    SequenceImageNumber                  int32u
     18222      4    SequenceFileNumber                   int32u
     18223      8    ReleaseMode2                         int32u
     18224    510    SonyDateTime                         undef[7]
     18225    892    DynamicRangeOptimizer                int8u
     18226   1292    MeterInfo?                           Sony MeterInfo
     18227   4480    ReleaseMode3                         int8u
     18228   4484    ReleaseMode2                         int8u
     18229   4492    SelfTimer                            int8u
     18230   4496    FlashMode                            int8u
     18231   4502    StopsAboveBaseISO                    int16u
     18232   4504    BrightnessValue                      int16u
     18233   4508    DynamicRangeOptimizer                int8u
     18234   4512    HDRSetting                           int8u
     18235   4538    PictureProfile                       int8u
     18236   4539    PictureProfile                       int8u
     18237   4543    PictureEffect2                       int8u
     18238   4560    MeteringMode                         int8u
     18239   4561    ExposureProgram                      int8u
     18240   4568    WB_RGBLevels                         int16u[3]
     18241   4720    SonyISO                              int16u
     18242
     18243=head3 Sony Tag2010e Tags
     18244
     18245Valid for SLT-A58/A99, ILCE-3000/3500, NEX-3N/5R/5T/6/VG30E/VG900,
     18246DSC-RX100, DSC-RX1/RX1R. Also valid for DSC-HX300/HX50V/TX30/WX60/WX200/
     18247WX300, but not for panorama images.
     18248
     18249  Index1   Tag Name                             Writable
     18250  ------   --------                             --------
     18251      0    SequenceImageNumber                  int32u
     18252      4    SequenceFileNumber                   int32u
     18253      8    ReleaseMode2                         int32u
     18254    540    DigitalZoomRatio                     int8u
     18255    556    SonyDateTime                         undef[7]
     18256    808    DynamicRangeOptimizer                int8u
     18257   1208    MeterInfo?                           Sony MeterInfo
     18258   4444    ReleaseMode3                         int8u
     18259   4448    ReleaseMode2                         int8u
     18260   4456    SelfTimer                            int8u
     18261   4460    FlashMode                            int8u
     18262   4466    StopsAboveBaseISO                    int16u
     18263   4468    BrightnessValue                      int16u
     18264   4472    DynamicRangeOptimizer                int8u
     18265   4476    HDRSetting                           int8u
     18266   4480    ExposureCompensation                 int16s
     18267   4502    PictureProfile                       int8u
     18268   4503    PictureProfile                       int8u
     18269   4507    PictureEffect2                       int8u
     18270   4520    Quality2                             int8u
     18271   4524    MeteringMode                         int8u
     18272   4525    ExposureProgram                      int8u
     18273   4532    WB_RGBLevels                         int16u[3]
     18274   4692    SonyISO                              int16u
     18275   4696    SonyISO                              int16u
     18276   4728    FocalLength                          int16u
     18277   4730    MinFocalLength                       int16u
     18278   4732    MaxFocalLength                       int16u
     18279   4736    SonyISO                              int16u
     18280   6256    DistortionCorrParams                 int16s[16]
     18281   6289    LensFormat                           int8u
     18282   6290    LensMount                            int8u
     18283   6291    LensType2                            int16u
     18284   6294    LensType                             int16u
     18285   6296    DistortionCorrParamsPresent          int8u
     18286   6297    DistortionCorrParamsNumber           int8u
     18287
     18288=head3 Sony Tag2010f Tags
     18289
     18290Valid for DSC-RX100M2, DSC-QX10/QX100.
     18291
     18292  Index1   Tag Name                             Writable
     18293  ------   --------                             --------
     18294      4    ReleaseMode2                         int32u
     18295     80    DynamicRangeOptimizer                int8u
     18296    480    MeterInfo?                           Sony MeterInfo
     18297   4116    ReleaseMode3                         int8u
     18298   4120    ReleaseMode2                         int8u
     18299   4128    SelfTimer                            int8u
     18300   4132    FlashMode                            int8u
     18301   4138    StopsAboveBaseISO                    int16u
     18302   4140    BrightnessValue                      int16u
     18303   4144    DynamicRangeOptimizer                int8u
     18304   4148    HDRSetting                           int8u
     18305   4152    ExposureCompensation                 int16s
     18306   4174    PictureProfile                       int8u
     18307   4175    PictureProfile                       int8u
     18308   4179    PictureEffect2                       int8u
     18309   4192    Quality2                             int8u
     18310   4196    MeteringMode                         int8u
     18311   4197    ExposureProgram                      int8u
     18312   4204    WB_RGBLevels                         int16u[3]
     18313   4404    FocalLength                          int16u
     18314   4406    MinFocalLength                       int16u
     18315   4408    MaxFocalLength                       int16u
     18316   4412    SonyISO                              int16u
     18317
     18318=head3 Sony Tag2010g Tags
     18319
     18320Valid for DSC-HX60V/HX350/HX400V/QX30/RX10/RX100M3/WX220/WX350,
     18321ILCE-7/7R/7S/7M2/5000/5100/6000/QX1, ILCA-68/77M2.
     18322
     18323  Index1   Tag Name                             Writable
     18324  ------   --------                             --------
     18325      4    ReleaseMode2                         int32u
     18326     80    DynamicRangeOptimizer                int8u
     18327    524    ReleaseMode3                         int8u
     18328    528    ReleaseMode2                         int8u
     18329    536    SelfTimer                            int8u
     18330    540    FlashMode                            int8u
     18331    546    StopsAboveBaseISO                    int16u
     18332    548    BrightnessValue                      int16u
     18333    552    DynamicRangeOptimizer                int8u
     18334    556    HDRSetting                           int8u
     18335    560    ExposureCompensation                 int16s
     18336    582    PictureProfile                       int8u
     18337    583    PictureProfile                       int8u
     18338    587    PictureEffect2                       int8u
     18339    600    Quality2                             int8u
     18340    604    MeteringMode                         int8u
     18341    605    ExposureProgram                      int8u
     18342    612    WB_RGBLevels                         int16u[3]
     18343    812    FocalLength                          int16u
     18344    814    MinFocalLength                       int16u
     18345    816    MaxFocalLength                       int16u
     18346    836    SonyISO                              int16u
     18347    904    MeterInfo?                           Sony MeterInfo
     18348   6300    DistortionCorrParams                 int16s[16]
     18349   6333    LensFormat                           int8u
     18350   6334    LensMount                            int8u
     18351   6335    LensType2                            int16u
     18352   6338    LensType                             int16u
     18353   6340    DistortionCorrParamsPresent          int8u
     18354   6341    DistortionCorrParamsNumber           int8u
     18355
     18356=head3 Sony Tag2010h Tags
     18357
     18358Valid for DSC-HX80/HX90V/RX0/RX1RM2/RX10M2/RX10M3/RX100M4/RX100M5/WX500,
     18359ILCE-6300/6500/7RM2/7SM2, ILCA-99M2.
     18360
     18361  Index1   Tag Name                             Writable
     18362  ------   --------                             --------
     18363      4    ReleaseMode2                         int32u
     18364     80    DynamicRangeOptimizer                int8u
     18365    524    ReleaseMode3                         int8u
     18366    528    ReleaseMode2                         int8u
     18367    536    SelfTimer                            int8u
     18368    540    FlashMode                            int8u
     18369    546    StopsAboveBaseISO                    int16u
     18370    548    BrightnessValue                      int16u
     18371    552    DynamicRangeOptimizer                int8u
     18372    556    HDRSetting                           int8u
     18373    560    ExposureCompensation                 int16s
     18374    582    PictureProfile                       int8u
     18375    583    PictureProfile                       int8u
     18376    587    PictureEffect2                       int8u
     18377    600    Quality2                             int8u
     18378    604    MeteringMode                         int8u
     18379    605    ExposureProgram                      int8u
     18380    612    WB_RGBLevels                         int16u[3]
     18381    812    FocalLength                          int16u
     18382    814    MinFocalLength                       int16u
     18383    816    MaxFocalLength                       int16u
     18384    838    SonyISO                              int16u
     18385    904    MeterInfo?                           Sony MeterInfo
     18386    920    MeterInfo?                           Sony MeterInfo
     18387   6348    DistortionCorrParams                 int16s[16]
     18388   6381    LensFormat                           int8u
     18389   6382    LensMount                            int8u
     18390   6383    LensType2                            int16u
     18391   6386    LensType                             int16u
     18392   6388    DistortionCorrParamsPresent          int8u
     18393   6389    DistortionCorrParamsNumber           int8u
     18394
     18395=head3 Sony Tag2010i Tags
     18396
     18397Valid for ILCE-6100/6400/6600/7C/7M3/7RM3/7RM4/9/9M2, DSC-RX0M2/RX10M4/RX100M6/
     18398RX100M5A/RX100M7/HX99.
     18399
     18400  Index1   Tag Name                             Writable
     18401  ------   --------                             --------
     18402      4    ReleaseMode2                         int32u
     18403     78    DynamicRangeOptimizer                int8u
     18404    516    ReleaseMode3                         int8u
     18405    520    ReleaseMode2                         int8u
     18406    528    SelfTimer                            int8u
     18407    529    FlashMode                            int8u
     18408    535    StopsAboveBaseISO                    int16u
     18409    537    BrightnessValue                      int16u
     18410    539    DynamicRangeOptimizer                int8u
     18411    543    HDRSetting                           int8u
     18412    547    ExposureCompensation                 int16s
     18413    567    PictureProfile                       int8u
     18414    568    PictureProfile                       int8u
     18415    572    PictureEffect2                       int8u
     18416    583    Quality2                             int8u
     18417    587    MeteringMode                         int8u
     18418    588    ExposureProgram                      int8u
     18419    594    WB_RGBLevels                         int16u[3]
     18420    778    FocalLength                          int16u
     18421    780    MinFocalLength                       int16u
     18422    782    MaxFocalLength                       int16u
     18423    800    SonyISO                              int16u
     18424    877    MeterInfo?                           Sony MeterInfo9
     18425   6096    DistortionCorrParams                 int16s[16]
     18426   6129    LensFormat                           int8u
     18427   6130    LensMount                            int8u
     18428   6131    LensType2                            int16u
     18429   6134    LensType                             int16u
     18430   6136    DistortionCorrParamsPresent          int8u
     18431   6137    DistortionCorrParamsNumber           int8u
     18432
     18433=head3 Sony MeterInfo9 Tags
     18434
     18435Information possibly related to metering.  Extracted only if the Unknown
     18436option is used.
     18437
     18438  Index1   Tag Name                             Writable
     18439  ------   --------                             --------
     18440      0    MeterInfo1Row1                       no
     18441     90    MeterInfo1Row2                       no
     18442    180    MeterInfo1Row3                       no
     18443    270    MeterInfo1Row4                       no
     18444    360    MeterInfo1Row5                       no
     18445    450    MeterInfo1Row6                       no
     18446    540    MeterInfo1Row7                       no
     18447    630    MeterInfo2Row1                       no
     18448    740    MeterInfo2Row2                       no
     18449    850    MeterInfo2Row3                       no
     18450    960    MeterInfo2Row4                       no
     18451   1070    MeterInfo2Row5                       no
     18452   1180    MeterInfo2Row6                       no
     18453   1290    MeterInfo2Row7                       no
     18454   1400    MeterInfo2Row8                       no
     18455   1510    MeterInfo2Row9                       no
     18456
     18457=head3 Sony Tag202a Tags
     18458
     18459  Index1   Tag Name                             Writable
     18460  ------   --------                             --------
     18461      1    FocalPlaneAFPointsUsed               int8u
     18462      2    FocalPlaneAFPointArea                int16u[2]
     18463      6    FocalPlaneAFPointLocation1           int16u[2]
     18464     10    FocalPlaneAFPointLocation2           int16u[2]
     18465     14    FocalPlaneAFPointLocation3           int16u[2]
     18466     18    FocalPlaneAFPointLocation4           int16u[2]
     18467     22    FocalPlaneAFPointLocation5           int16u[2]
     18468     26    FocalPlaneAFPointLocation6           int16u[2]
     18469     30    FocalPlaneAFPointLocation7           int16u[2]
     18470     34    FocalPlaneAFPointLocation8           int16u[2]
     18471     38    FocalPlaneAFPointLocation9           int16u[2]
     18472     42    FocalPlaneAFPointLocation10          int16u[2]
     18473     46    FocalPlaneAFPointLocation11          int16u[2]
     18474     50    FocalPlaneAFPointLocation12          int16u[2]
     18475     54    FocalPlaneAFPointLocation13          int16u[2]
     18476     58    FocalPlaneAFPointLocation14          int16u[2]
     18477     62    FocalPlaneAFPointLocation15          int16u[2]
     18478
    994018479=head3 Sony ShotInfo Tags
    994118480
    9942    Index   Tag Name                             Writable
    9943    -----   --------                             --------
    9944       2    FaceInfoOffset                       N
     18481  Index1   Tag Name                             Writable
     18482  ------   --------                             --------
     18483      2    FaceInfoOffset                       no
    994518484      6    SonyDateTime                         string[20]
     18485     26    SonyImageHeight                      int16u
     18486     28    SonyImageWidth                       int16u
    994618487     48    FacesDetected                        int16u
    9947      50    FaceInfoLength                       N
     18488     50    FaceInfoLength                       no
     18489     52    MetaVersion                          string[16]
    994818490     72    FaceInfo1                            Sony FaceInfo1
    994918491     94    FaceInfo2                            Sony FaceInfo2
     
    995118493=head3 Sony FaceInfo1 Tags
    995218494
    9953    Index   Tag Name                             Writable
    9954    -----   --------                             --------
     18495  Index1   Tag Name                             Writable
     18496  ------   --------                             --------
    995518497      0    Face1Position                        int16u[4]
    995618498     32    Face2Position                        int16u[4]
     
    996418506=head3 Sony FaceInfo2 Tags
    996518507
    9966    Index   Tag Name                             Writable
    9967    -----   --------                             --------
     18508  Index1   Tag Name                             Writable
     18509  ------   --------                             --------
    996818510      0    Face1Position                        int16u[4]
    996918511     37    Face2Position                        int16u[4]
     
    997518517    259    Face8Position                        int16u[4]
    997618518
     18519=head3 Sony Tag900b Tags
     18520
     18521  Index1   Tag Name                             Writable
     18522  ------   --------                             --------
     18523      2    FacesDetected                        no
     18524    189    FaceDetection                        no
     18525
     18526=head3 Sony Tag9050a Tags
     18527
     18528Data for tags 0x9050, 0x94xx and 0x2010 is encrypted by a simple
     18529substitution cipher, but the deciphered values are listed below.
     18530
     18531  Index1   Tag Name                             Writable
     18532  ------   --------                             --------
     18533      0    SonyMaxAperture                      int8u
     18534      1    SonyMinAperture                      int8u
     18535     32    Shutter                              int16u[3]
     18536     49    FlashStatus                          int8u
     18537     50    ShutterCount                         int32u
     18538     58    SonyExposureTime                     int16u
     18539     60    SonyFNumber                          int16u
     18540     63    ReleaseMode2                         int8u
     18541     76    ShutterCount2                        int32u
     18542     81    SonyDateTime2                        undef[6]
     18543    103    ReleaseMode2                         int8u
     18544    124    InternalSerialNumber                 int8u[4]~
     18545    240    InternalSerialNumber                 int8u[5]
     18546    261    LensMount                            int8u
     18547    262    LensFormat                           int8u
     18548    263    LensType2                            int16u
     18549    265    LensType                             int16u
     18550    267    DistortionCorrParamsPresent          int8u
     18551    276    APS-CSizeCapture                     int8u
     18552    277    LensSpecFeatures                     undef[2]
     18553    278    LensSpecFeatures                     undef[2]
     18554    416    ShutterCount3                        int32u
     18555    426    ShutterCount3                        int32u
     18556    445    ShutterCount3                        int32u
     18557
     18558=head3 Sony Tag9050b Tags
     18559
     18560Valid from July 2015 for ILCE-6100/6300/6400/6500/6600/7C/7M3/7RM2/7RM3/7RM4/
     185617SM2/9/9M2, ILCA-99M2.
     18562
     18563  Index1   Tag Name                             Writable
     18564  ------   --------                             --------
     18565      0    SonyMaxAperture                      int8u
     18566      1    SonyMinAperture                      int8u
     18567     38    Shutter                              int16u[3]
     18568     57    FlashStatus                          int8u
     18569     58    ShutterCount                         int32u
     18570     70    SonyExposureTime                     int16u
     18571     72    SonyFNumber                          int16u
     18572     75    ReleaseMode2                         int8u
     18573     80    ShutterCount2                        int32u
     18574     82    ShutterCount2                        int32u
     18575     88    ShutterCount2                        int32u
     18576     97    SonyTimeMinSec                       no
     18577    107    ReleaseMode2                         int8u
     18578    109    ReleaseMode2                         int8u
     18579    115    ReleaseMode2                         int8u
     18580    136    InternalSerialNumber                 int8u[6]~
     18581    261    LensMount                            int8u
     18582    262    LensFormat                           int8u
     18583    263    LensType2                            int16u
     18584    265    LensType                             int16u
     18585    267    DistortionCorrParamsPresent          int8u
     18586    276    APS-CSizeCapture                     int8u
     18587    278    LensSpecFeatures                     undef[2]
     18588    415    ShutterCount3                        int32u
     18589    459    ShutterCount3                        int32u
     18590    461    ShutterCount3                        int32u
     18591    491    APS-CSizeCapture                     int8u
     18592    493    LensSpecFeatures                     undef[2]
     18593    494    APS-CSizeCapture                     int8u
     18594    496    LensSpecFeatures                     undef[2]
     18595    538    APS-CSizeCapture                     int8u
     18596    540    LensSpecFeatures                     undef[2]
     18597           APS-CSizeCapture                     int8u
     18598    542    LensSpecFeatures                     undef[2]
     18599
     18600=head3 Sony Tag9050c Tags
     18601
     18602Valid from July 2020 for ILCE-1/7SM3.
     18603
     18604  Index1   Tag Name                             Writable
     18605  ------   --------                             --------
     18606     38    Shutter                              int16u[3]
     18607     57    FlashStatus                          int8u
     18608     58    ShutterCount                         int32u~
     18609     70    SonyExposureTime                     int16u
     18610     72    SonyFNumber                          int16u
     18611     75    ReleaseMode2                         int8u
     18612     80    ShutterCount2                        int32u
     18613    102    SonyExposureTime                     int16u
     18614    104    SonyFNumber                          int16u
     18615    107    ReleaseMode2                         int8u
     18616    136    InternalSerialNumber                 int8u[6]~
     18617
     18618=head3 Sony Tag9400a Tags
     18619
     18620Valid for many DSC, NEX and SLT models
     18621
     18622  Index1   Tag Name                             Writable
     18623  ------   --------                             --------
     18624      8    SequenceImageNumber                  int32u
     18625     12    SequenceFileNumber                   int32u
     18626     16    ReleaseMode2                         int8u
     18627     18    DigitalZoom                          int8u
     18628     26    ShotNumberSincePowerUp               int32u
     18629     34    SequenceLength                       int8u
     18630     40    CameraOrientation                    int8u
     18631     41    Quality2                             int8u
     18632     68    SonyImageHeight                      int16u~
     18633     82    ModelReleaseYear                     int8u~
     18634
     18635=head3 Sony Tag9400b Tags
     18636
     18637Valid for NEX-3N, ILCE-3000/3500, SLT-A58, DSC-WX60, DSC-WX300, DSC-RX100M2,
     18638DSC-HX50V, DSC-QX10/QX100.
     18639
     18640  Index1   Tag Name                             Writable
     18641  ------   --------                             --------
     18642      8    SequenceImageNumber                  int32u
     18643     12    SequenceFileNumber                   int32u
     18644     16    ReleaseMode2                         int8u
     18645     18    DigitalZoom                          int8u
     18646     22    ShotNumberSincePowerUp               int32u
     18647     30    SequenceLength                       int8u
     18648     36    CameraOrientation                    int8u
     18649     37    Quality2                             int8u
     18650     63    SonyImageHeight                      int16u~
     18651     70    ModelReleaseYear                     int8u~
     18652
     18653=head3 Sony Tag9400c Tags
     18654
     18655Valid for DSC-HX60V/HX80/HX90V/HX99/HX350/HX400V/QX30/RX0/RX1RM2/RX10/
     18656RX10M2/RX10M3/RX10M4/RX100M3/RX100M4/RX100M5/RX100M5A/RX100M6/RX100M7/WX220/
     18657WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
     186585100/6000/6100/6300/6400/6500/6600/QX1, ILCA-68/77M2/99M2.
     18659
     18660  Index1   Tag Name                             Writable
     18661  ------   --------                             --------
     18662      9    ReleaseMode2                         int8u
     18663     10    ShotNumberSincePowerUp               int32u
     18664     18    SequenceImageNumber                  int32u
     18665     22    SequenceLength                       int8u
     18666     26    SequenceFileNumber                   int32u
     18667     30    SequenceLength                       int8u
     18668     41    CameraOrientation                    int8u
     18669     42    Quality2                             int8u
     18670     71    SonyImageHeight                      int16u~
     18671     83    ModelReleaseYear                     int8u~
     18672
     18673=head3 Sony Tag9401 Tags
     18674
     18675  Index1   Tag Name                             Writable
     18676  ------   --------                             --------
     18677   1176    ISOInfo                              Sony ISOInfo
     18678   1185    ISOInfo                              Sony ISOInfo
     18679   1186    ISOInfo                              Sony ISOInfo
     18680   1437    ISOInfo                              Sony ISOInfo
     18681   1588    ISOInfo                              Sony ISOInfo
     18682   1590    ISOInfo                              Sony ISOInfo
     18683   1612    ISOInfo                              Sony ISOInfo
     18684   1619    ISOInfo                              Sony ISOInfo
     18685   1656    ISOInfo                              Sony ISOInfo
     18686   1720    ISOInfo                              Sony ISOInfo
     18687   1758    ISOInfo                              Sony ISOInfo
     18688   1767    ISOInfo                              Sony ISOInfo
     18689
     18690=head3 Sony ISOInfo Tags
     18691
     18692  Index1   Tag Name                             Writable
     18693  ------   --------                             --------
     18694      0    ISOSetting                           int8u
     18695      2    ISOAutoMin                           int8u
     18696      4    ISOAutoMax                           int8u
     18697
     18698=head3 Sony Tag9402 Tags
     18699
     18700  Index1   Tag Name                             Writable
     18701  ------   --------                             --------
     18702      4    AmbientTemperature                   int8s
     18703     22    FocusMode                            int8u & 0x7f
     18704     23    AFAreaMode                           int8u
     18705     45    FocusPosition2                       int8u
     18706
     18707=head3 Sony Tag9403 Tags
     18708
     18709  Index1   Tag Name                             Writable
     18710  ------   --------                             --------
     18711      5    CameraTemperature                    int8s
     18712
     18713=head3 Sony Tag9404a Tags
     18714
     18715  Index1   Tag Name                             Writable
     18716  ------   --------                             --------
     18717     11    ExposureProgram                      int8u
     18718     13    IntelligentAuto                      int8u
     18719     25    LensZoomPosition                     int16u
     18720
     18721=head3 Sony Tag9404b Tags
     18722
     18723  Index1   Tag Name                             Writable
     18724  ------   --------                             --------
     18725     12    ExposureProgram                      int8u
     18726     14    IntelligentAuto                      int8u
     18727     30    LensZoomPosition                     int16u
     18728     32    FocusPosition2                       int8u
     18729
     18730=head3 Sony Tag9404c Tags
     18731
     18732  Index1   Tag Name                             Writable
     18733  ------   --------                             --------
     18734     11    ExposureProgram                      int8u
     18735     13    IntelligentAuto                      int8u
     18736
     18737=head3 Sony Tag9405a Tags
     18738
     18739Valid for SLT, NEX, ILCE-3000/3500 and several DSC models.
     18740
     18741  Index1   Tag Name                             Writable
     18742  ------   --------                             --------
     18743   1536    DistortionCorrParamsPresent          int8u
     18744   1537    DistortionCorrection                 int8u
     18745   1539    LensFormat                           int8u
     18746   1540    LensMount                            int8u
     18747   1541    LensType2                            int16u
     18748   1544    LensType                             int16u
     18749   1610    VignettingCorrParams                 int16s[16]
     18750   1642    ChromaticAberrationCorrParams        int16s[32]
     18751   1738    DistortionCorrParams                 int16s[16]
     18752
     18753=head3 Sony Tag9405b Tags
     18754
     18755Valid for DSC-HX60V/HX80/HX90V/HX99/HX350/HX400V/QX30/RX0/RX10/RX10M2/
     18756RX10M3/RX10M4/RX100M3/RX100M4/RX100M5/RX100M5A/RX100M6/RX100M7/WX220/WX350,
     18757ILCE-7/7M2/7M3/7R/7RM2/7RM3/7RM4/7S/7SM2/9/9M2/5000/5100/6000/6100/6300/
     187586400/6500/6600/QX1, ILCA-68/77M2/99M2.
     18759
     18760  Index1   Tag Name                             Writable
     18761  ------   --------                             --------
     18762      4    SonyISO                              int16u
     18763      6    BaseISO                              int16u
     18764     10    StopsAboveBaseISO                    int16u
     18765     14    SonyExposureTime2                    int16u
     18766     16    ExposureTime                         rational32u
     18767     20    SonyFNumber                          int16u
     18768     22    SonyMaxApertureValue                 int16u
     18769     36    SequenceImageNumber                  int32u
     18770     52    ReleaseMode2                         int8u
     18771     62    SonyImageWidthMax                    int16u
     18772     64    SonyImageHeightMax                   int16u
     18773     66    HighISONoiseReduction                int8u
     18774     68    LongExposureNoiseReduction           int8u
     18775     70    PictureEffect2                       int8u
     18776     72    ExposureProgram                      int8u
     18777     74    CreativeStyle                        int8u
     18778     82    Sharpness                            int8s
     18779     90    DistortionCorrParamsPresent          int8u
     18780     91    DistortionCorrection                 int8u
     18781     93    LensFormat                           int8u
     18782     94    LensMount                            int8u
     18783     96    LensType2                            int16u
     18784     98    LensType                             int16u
     18785    100    DistortionCorrParams                 int16s[16]
     18786    834    LensZoomPosition                     int16u
     18787    842    VignettingCorrParams                 int16s[16]
     18788    846    LensZoomPosition                     int16u
     18789    848    VignettingCorrParams                 int16s[16]
     18790    858    LensZoomPosition                     int16u
     18791    860    VignettingCorrParams                 int16s[16]
     18792    872    VignettingCorrParams                 int16s[16]
     18793    892    ChromaticAberrationCorrParams        int16s[32]
     18794    900    ChromaticAberrationCorrParams        int16s[32]
     18795    924    ChromaticAberrationCorrParams        int16s[32]
     18796    944    ChromaticAberrationCorrParams        int16s[32]
     18797    952    ChromaticAberrationCorrParams        int16s[32]
     18798
     18799=head3 Sony Tag9406 Tags
     18800
     18801  Index1   Tag Name                             Writable
     18802  ------   --------                             --------
     18803      5    BatteryTemperature                   int8u
     18804      6    BatteryLevelGrip1                    int8u
     18805      7    BatteryLevel                         int8u
     18806      8    BatteryLevelGrip2                    int8u
     18807
     18808=head3 Sony Tag940a Tags
     18809
     18810These tags are currently extracted for SLT models only.
     18811
     18812  Index1   Tag Name                             Writable
     18813  ------   --------                             --------
     18814      4    AFPointsSelected                     int32u
     18815
     18816=head3 Sony Tag940c Tags
     18817
     18818NEX and ILCE models only.
     18819
     18820  Index1   Tag Name                             Writable
     18821  ------   --------                             --------
     18822      8    LensMount2                           int8u
     18823      9    LensType3                            int16u
     18824     11    CameraE-mountVersion                 int16u
     18825     13    LensE-mountVersion                   int16u
     18826     20    LensFirmwareVersion                  int16u~
     18827
     18828=head3 Sony AFInfo Tags
     18829
     18830These tags are currently extracted for SLT models only.
     18831
     18832  Index1   Tag Name                             Writable
     18833  ------   --------                             --------
     18834      2    AFType                               int8u
     18835      4    AFStatusActiveSensor                 int16s
     18836      5    FocusMode                            int8u
     18837      7    AFPoint                              int8u
     18838      8    AFPointInFocus                       int8u
     18839      9    AFPointAtShutterRelease              int8u
     18840     10    AFAreaMode                           int8u
     18841     11    FocusMode                            int8u
     18842     16    AFPointsUsed                         int8u[10]
     18843     17    AFStatus15                           Sony AFStatus15
     18844           AFStatus19                           Sony AFStatus19
     18845     55    AFPoint                              int8u
     18846     56    AFPointInFocus                       int8u
     18847     57    AFPointAtShutterRelease              int8u
     18848     58    AFAreaMode                           int8u
     18849     59    AFStatusActiveSensor                 int16s
     18850     67    ExposureProgram                      int8u
     18851     80    AFMicroAdj                           int8s
     18852    125    AFStatus79                           Sony AFStatus79
     18853    366    AFPointsUsed                         int32u
     18854    381    AFMicroAdj                           int8s
     18855    382    ExposureProgram                      int8u
     18856
     18857=head3 Sony AFStatus19 Tags
     18858
     18859AF Status information for models with 19-point AF.
     18860
     18861  Index1   Tag Name                             Writable
     18862  ------   --------                             --------
     18863      0    AFStatusUpperFarLeft                 int16s
     18864      2    AFStatusUpper-leftHorizontal         int16s
     18865      4    AFStatusFarLeftHorizontal            int16s
     18866      6    AFStatusLeftHorizontal               int16s
     18867      8    AFStatusLowerFarLeft                 int16s
     18868     10    AFStatusLower-leftHorizontal         int16s
     18869     12    AFStatusUpper-leftVertical           int16s
     18870     14    AFStatusLeftVertical                 int16s
     18871     16    AFStatusLower-leftVertical           int16s
     18872     18    AFStatusFarLeftVertical              int16s
     18873     20    AFStatusTopHorizontal                int16s
     18874     22    AFStatusNearRight                    int16s
     18875     24    AFStatusCenterHorizontal             int16s
     18876     26    AFStatusNearLeft                     int16s
     18877     28    AFStatusBottomHorizontal             int16s
     18878     30    AFStatusTopVertical                  int16s
     18879     32    AFStatusUpper-middle                 int16s
     18880     34    AFStatusCenterVertical               int16s
     18881     36    AFStatusLower-middle                 int16s
     18882     38    AFStatusBottomVertical               int16s
     18883     40    AFStatusUpperFarRight                int16s
     18884     42    AFStatusUpper-rightHorizontal        int16s
     18885     44    AFStatusFarRightHorizontal           int16s
     18886     46    AFStatusRightHorizontal              int16s
     18887     48    AFStatusLowerFarRight                int16s
     18888     50    AFStatusLower-rightHorizontal        int16s
     18889     52    AFStatusFarRightVertical             int16s
     18890     54    AFStatusUpper-rightVertical          int16s
     18891     56    AFStatusRightVertical                int16s
     18892     58    AFStatusLower-rightVertical          int16s
     18893
     18894=head3 Sony AFStatus79 Tags
     18895
     18896AF Status information for models with 79-point AF.
     18897
     18898  Index1   Tag Name                             Writable
     18899  ------   --------                             --------
     18900      0    AFStatus_00_B4                       int16s
     18901      2    AFStatus_01_C4                       int16s
     18902      4    AFStatus_02_D4                       int16s
     18903      6    AFStatus_03_E4                       int16s
     18904      8    AFStatus_04_F4                       int16s
     18905     10    AFStatus_05_G4                       int16s
     18906     12    AFStatus_06_H4                       int16s
     18907     14    AFStatus_07_B3                       int16s
     18908     16    AFStatus_08_C3                       int16s
     18909     18    AFStatus_09_D3                       int16s
     18910     20    AFStatus_10_E3                       int16s
     18911     22    AFStatus_11_F3                       int16s
     18912     24    AFStatus_12_G3                       int16s
     18913     26    AFStatus_13_H3                       int16s
     18914     28    AFStatus_14_B2                       int16s
     18915     30    AFStatus_15_C2                       int16s
     18916     32    AFStatus_16_D2                       int16s
     18917     34    AFStatus_17_E2                       int16s
     18918     36    AFStatus_18_F2                       int16s
     18919     38    AFStatus_19_G2                       int16s
     18920     40    AFStatus_20_H2                       int16s
     18921     42    AFStatus_21_C1                       int16s
     18922     44    AFStatus_22_D1                       int16s
     18923     46    AFStatus_23_E1                       int16s
     18924     48    AFStatus_24_F1                       int16s
     18925     50    AFStatus_25_G1                       int16s
     18926     52    AFStatus_26_A7_Vertical              int16s
     18927     54    AFStatus_27_A6_Vertical              int16s
     18928     56    AFStatus_28_A5_Vertical              int16s
     18929     58    AFStatus_29_C7_Vertical              int16s
     18930     60    AFStatus_30_C6_Vertical              int16s
     18931     62    AFStatus_31_C5_Vertical              int16s
     18932     64    AFStatus_32_E7_Vertical              int16s
     18933     66    AFStatus_33_E6_Center_Vertical       int16s
     18934     68    AFStatus_34_E5_Vertical              int16s
     18935     70    AFStatus_35_G7_Vertical              int16s
     18936     72    AFStatus_36_G6_Vertical              int16s
     18937     74    AFStatus_37_G5_Vertical              int16s
     18938     76    AFStatus_38_I7_Vertical              int16s
     18939     78    AFStatus_39_I6_Vertical              int16s
     18940     80    AFStatus_40_I5_Vertical              int16s
     18941     82    AFStatus_41_A7                       int16s
     18942     84    AFStatus_42_B7                       int16s
     18943     86    AFStatus_43_C7                       int16s
     18944     88    AFStatus_44_D7                       int16s
     18945     90    AFStatus_45_E7                       int16s
     18946     92    AFStatus_46_F7                       int16s
     18947     94    AFStatus_47_G7                       int16s
     18948     96    AFStatus_48_H7                       int16s
     18949     98    AFStatus_49_I7                       int16s
     18950    100    AFStatus_50_A6                       int16s
     18951    102    AFStatus_51_B6                       int16s
     18952    104    AFStatus_52_C6                       int16s
     18953    106    AFStatus_53_D6                       int16s
     18954    108    AFStatus_54_E6_Center                int16s
     18955    110    AFStatus_55_F6                       int16s
     18956    112    AFStatus_56_G6                       int16s
     18957    114    AFStatus_57_H6                       int16s
     18958    116    AFStatus_58_I6                       int16s
     18959    118    AFStatus_59_A5                       int16s
     18960    120    AFStatus_60_B5                       int16s
     18961    122    AFStatus_61_C5                       int16s
     18962    124    AFStatus_62_D5                       int16s
     18963    126    AFStatus_63_E5                       int16s
     18964    128    AFStatus_64_F5                       int16s
     18965    130    AFStatus_65_G5                       int16s
     18966    132    AFStatus_66_H5                       int16s
     18967    134    AFStatus_67_I5                       int16s
     18968    136    AFStatus_68_C11                      int16s
     18969    138    AFStatus_69_D11                      int16s
     18970    140    AFStatus_70_E11                      int16s
     18971    142    AFStatus_71_F11                      int16s
     18972    144    AFStatus_72_G11                      int16s
     18973    146    AFStatus_73_B10                      int16s
     18974    148    AFStatus_74_C10                      int16s
     18975    150    AFStatus_75_D10                      int16s
     18976    152    AFStatus_76_E10                      int16s
     18977    154    AFStatus_77_F10                      int16s
     18978    156    AFStatus_78_G10                      int16s
     18979    158    AFStatus_79_H10                      int16s
     18980    160    AFStatus_80_B9                       int16s
     18981    162    AFStatus_81_C9                       int16s
     18982    164    AFStatus_82_D9                       int16s
     18983    166    AFStatus_83_E9                       int16s
     18984    168    AFStatus_84_F9                       int16s
     18985    170    AFStatus_85_G9                       int16s
     18986    172    AFStatus_86_H9                       int16s
     18987    174    AFStatus_87_B8                       int16s
     18988    176    AFStatus_88_C8                       int16s
     18989    178    AFStatus_89_D8                       int16s
     18990    180    AFStatus_90_E8                       int16s
     18991    182    AFStatus_91_F8                       int16s
     18992    184    AFStatus_92_G8                       int16s
     18993    186    AFStatus_93_H8                       int16s
     18994    188    AFStatus_94_E6_Center_F2-8           int16s
     18995
     18996=head3 Sony Tag940e Tags
     18997
     18998E-mount models.
     18999
     19000  Index1   Tag Name                             Writable
     19001  ------   --------                             --------
     19002   6662    TiffMeteringImageWidth               no
     19003   6663    TiffMeteringImageHeight              no
     19004   6664    TiffMeteringImage                    no
     19005
     19006=head3 Sony Tag9416 Tags
     19007
     19008Valid for the ILCE-1/7SM3.
     19009
     19010  Index1   Tag Name                             Writable
     19011  ------   --------                             --------
     19012      0    Tag9416_0000                         no
     19013      4    SonyISO                              no
     19014      6    StopsAboveBaseISO                    no
     19015     10    SonyExposureTime2                    no
     19016     12    ExposureTime                         no
     19017     16    SonyFNumber2                         no
     19018     18    SonyMaxApertureValue                 no
     19019     29    SequenceImageNumber                  no
     19020     53    ExposureProgram                      no
     19021     72    LensMount                            no
     19022     73    LensFormat                           no
     19023     74    LensMount                            no
     19024     75    LensType2                            no
     19025     77    LensType                             no
     19026     79    DistortionCorrParams                 no
     19027    112    PictureProfile                       no
     19028    113    FocalLength                          no
     19029    115    MinFocalLength                       no
     19030    117    MaxFocalLength                       no
     19031   2191    VignettingCorrParams                 no
     19032   2324    ChromaticAberrationCorrParams        no
     19033
     19034=head3 Sony PIC Tags
     19035
     19036The TextInfo data is extracted as a block to preserve the formatting, and
     19037some of the more interesting information is extracted as separate tags.
     19038
     19039  Tag ID               Tag Name                 Writable
     19040  ------               --------                 --------
     19041  'BC:'                Barcode                  no
     19042  'BarCode:'           Barcode                  no
     19043  'Capt:'              SensorTemperature        no
     19044  'FWVer:'             FirmwareVersion          no
     19045  'IFD'                PIC_IFD                  Sony
     19046  'Temp:'              CameraTemperature        no
     19047  'Temp:Clbt:'         BoardTemperature         no
     19048  'TextInfo1'          TextInfo1                no
     19049  'TextInfo2'          TextInfo2                no
     19050  'VR Enable C:'       VibrationReduction       no
     19051  'barcode:'           Barcode                  no
     19052
    997719053=head3 Sony Ericsson Tags
    997819054
     
    999619072  Tag ID   Tag Name                             Writable
    999719073  ------   --------                             --------
    9998   0x0000   SRF2Key                              N
    9999   0x0001   DataKey                              N
     19074  0x0000   SRF2Key                              no
     19075  0x0001   DataKey                              no
    1000019076
    1000119077=head3 Sony SRF2 Tags
     
    1000519081  Tag ID   Tag Name                             Writable
    1000619082  ------   --------                             --------
    10007   0x0002   SRF6Offset                           N
    10008   0x0003   SRFDataOffset?                       N
    10009   0x0004   RawDataOffset                        N
    10010   0x0005   RawDataLength                        N
     19083  0x0002   SRF6Offset                           no
     19084  0x0003   SRFDataOffset?                       no
     19085  0x0004   RawDataOffset                        no
     19086  0x0005   RawDataLength                        no
     19087  0x0043   MaxApertureAtMaxFocal                no
     19088  0x0044   MaxApertureAtMinFocal                no
     19089  0x0045   MinFocalLength                       no
     19090  0x0046   MaxFocalLength                       no
     19091  0x00c0   WBRedDaylight                        no
     19092  0x00c1   WBGreenDaylight                      no
     19093  0x00c2   WBBlueDaylight                       no
     19094  0x00c3   WBRedCloudy                          no
     19095  0x00c4   WBGreenCloudy                        no
     19096  0x00c5   WBBlueCloudy                         no
     19097  0x00c6   WBRedFluorescent                     no
     19098  0x00c7   WBGreenFluorescent                   no
     19099  0x00c8   WBBlueFluorescent                    no
     19100  0x00c9   WBRedTungsten                        no
     19101  0x00ca   WBGreenTungsten                      no
     19102  0x00cb   WBBlueTungsten                       no
     19103  0x00cc   WBRedFlash                           no
     19104  0x00cd   WBGreenFlash                         no
     19105  0x00ce   WBBlueFlash                          no
     19106  0x00d0   WBRedAsShot                          no
     19107  0x00d1   WBGreenAsShot                        no
     19108  0x00d2   WBBlueAsShot                         no
    1001119109
    1001219110=head3 Sony SR2Private Tags
     
    1001819116  Tag ID   Tag Name                             Writable
    1001919117  ------   --------                             --------
    10020   0x7200   SR2SubIFDOffset                      N
    10021   0x7201   SR2SubIFDLength                      N
    10022   0x7221   SR2SubIFDKey                         N
     19118  0x7200   SR2SubIFDOffset                      no
     19119  0x7201   SR2SubIFDLength                      no
     19120  0x7221   SR2SubIFDKey                         no
    1002319121  0x7240   IDC_IFD                              SonyIDC
    1002419122  0x7241   IDC2_IFD                             SonyIDC
     
    1003119129  Tag ID   Tag Name                             Writable
    1003219130  ------   --------                             --------
    10033   0x7303   WB_GRBGLevels                        N
    10034   0x7313   WB_RGGBLevels                        N
    10035   0x74a0   MaxApertureAtMaxFocal                N
    10036   0x74a1   MaxApertureAtMinFocal                N
     19131  0x7300   BlackLevel                           no
     19132  0x7302   WB_GRBGLevelsAuto                    no
     19133  0x7303   WB_GRBGLevels                        no
     19134  0x7310   BlackLevel                           no
     19135  0x7312   WB_RGGBLevelsAuto                    no
     19136  0x7313   WB_RGGBLevels                        no
     19137  0x7480   WB_RGBLevelsDaylight                 no
     19138  0x7481   WB_RGBLevelsCloudy                   no
     19139  0x7482   WB_RGBLevelsTungsten                 no
     19140  0x7483   WB_RGBLevelsFlash                    no
     19141  0x7484   WB_RGBLevels4500K                    no
     19142  0x7486   WB_RGBLevelsFluorescent              no
     19143  0x74a0   MaxApertureAtMaxFocal                no
     19144  0x74a1   MaxApertureAtMinFocal                no
     19145  0x74a2   MaxFocalLength                       no
     19146  0x74a3   MinFocalLength                       no
    1003719147  0x74c0   SR2DataIFD                           Sony SR2DataIFD
    10038   0x7820   WB_RGBLevelsDaylight                 N
    10039   0x7821   WB_RGBLevelsCloudy                   N
    10040   0x7822   WB_RGBLevelsTungsten                 N
    10041   0x7825   WB_RGBLevelsShade                    N
    10042   0x7826   WB_RGBLevelsFluorescent              N
    10043   0x7828   WB_RGBLevelsFlash                    N
     19148  0x7800   ColorMatrix                          no
     19149  0x7820   WB_RGBLevelsDaylight                 no
     19150  0x7821   WB_RGBLevelsCloudy                   no
     19151  0x7822   WB_RGBLevelsTungsten                 no
     19152  0x7823   WB_RGBLevelsFlash                    no
     19153  0x7824   WB_RGBLevels4500K                    no
     19154  0x7825   WB_RGBLevelsShade                    no
     19155  0x7826   WB_RGBLevelsFluorescent              no
     19156  0x7827   WB_RGBLevelsFluorescentP1            no
     19157  0x7828   WB_RGBLevelsFluorescentP2            no
     19158  0x7829   WB_RGBLevelsFluorescentM1            no
     19159  0x782a   WB_RGBLevels8500K                    no
     19160  0x782b   WB_RGBLevels6000K                    no
     19161  0x782c   WB_RGBLevels3200K                    no
     19162  0x782d   WB_RGBLevels2500K                    no
     19163  0x787f   WhiteLevel                           no
     19164  0x797d   VignettingCorrParams                 no
     19165  0x7980   ChromaticAberrationCorrParams        no
     19166  0x7982   DistortionCorrParams                 no
    1004419167
    1004519168=head3 Sony SR2DataIFD Tags
     
    1004719170  Tag ID   Tag Name                             Writable
    1004819171  ------   --------                             --------
    10049   0x7770   ColorMode                            N
     19172  0x7770   ColorMode                            no
    1005019173
    1005119174=head3 Sony PMP Tags
     
    1005419177the DSC-F1.
    1005519178
    10056    Index   Tag Name                             Writable
    10057    -----   --------                             --------
    10058       8    JpgFromRawStart                      N
    10059      12    JpgFromRawLength                     N
    10060      22    SonyImageWidth                       N
    10061      24    SonyImageHeight                      N
    10062      27    Orientation                          N
    10063      29    ImageQuality                         N
    10064      52    Comment                              N
    10065      76    DateTimeOriginal                     N
    10066      84    ModifyDate                           N
    10067     102    ExposureTime                         N
    10068     106    FNumber                              N
    10069     108    ExposureCompensation                 N
    10070     112    FocalLength                          N
    10071     118    Flash                                N
     19179  Index1   Tag Name                             Writable
     19180  ------   --------                             --------
     19181      8    JpgFromRawStart                      no
     19182     12    JpgFromRawLength                     no
     19183     22    SonyImageWidth                       no
     19184     24    SonyImageHeight                      no
     19185     27    Orientation                          no
     19186     29    ImageQuality                         no
     19187     52    Comment                              no
     19188     76    DateTimeOriginal                     no
     19189     84    ModifyDate                           no
     19190    102    ExposureTime                         no
     19191    106    FNumber                              no
     19192    108    ExposureCompensation                 no
     19193    112    FocalLength                          no
     19194    118    Flash                                no
     19195
     19196=head3 Sony rtmd Tags
     19197
     19198These tags are extracted from the 'rtmd' timed metadata of MP4 videos from
     19199some models when the ExtractEmbedded option is used.
     19200
     19201  Tag ID   Tag Name                             Writable
     19202  ------   --------                             --------
     19203  0x8500   GPSVersionID                         no
     19204  0x8501   GPSLatitudeRef                       no
     19205  0x8502   GPSLatitude                          no
     19206  0x8503   GPSLongitudeRef                      no
     19207  0x8504   GPSLongitude                         no
     19208  0x8507   GPSTimeStamp                         no
     19209  0x8509   GPSStatus                            no
     19210  0x850a   GPSMeasureMode                       no
     19211  0x8512   GPSMapDatum                          no
     19212  0x851d   GPSDateStamp                         no
     19213  0xe304   DateTime                             no
    1007219214
    1007319215=head2 SonyIDC Tags
     
    1010619248  0x8031   PeripheralIllumCentralValue          int32s
    1010719249  0x8032   PeripheralIllumPeriphValue           int32s
     19250  0x8040   DistortionCompensation               int32s
    1010819251  0x9000   ToneCurveBrightnessX                 int16u[n]
    1010919252  0x9001   ToneCurveRedX                        int16u[n]
     
    1011419257  0x9006   ToneCurveGreenY                      int16u[n]
    1011519258  0x9007   ToneCurveBlueY                       int16u[n]
     19259  0x900d   ChromaticAberrationCorrection        int32s
     19260  0x900e   InclinationCorrection                int32u
     19261  0x900f   InclinationAngle                     int32s
     19262  0x9010   Cropping                             int32u
     19263  0x9011   CropArea                             int32u[4]
     19264  0x9012   PreviewImageSize                     int32u[2]
     19265  0x9013   PxShiftPeriphEdgeNR                  int32s
     19266  0x9014   PxShiftPeriphEdgeNRValue             int32s
     19267  0x9017   WhitesAdj                            int32s
     19268  0x9018   BlacksAdj                            int32s
     19269  0x9019   HighlightsAdj                        int32s
     19270  0x901a   ShadowsAdj                           int32s
    1011619271  0xd000   CurrentVersion                       int32u
    1011719272  0xd001   VersionIFD                           SonyIDC
     
    1015619311  'Leaf'   AdobeLeaf                            Leaf SubIFD
    1015719312  'MRW '   AdobeMRW                             MinoltaRaw
    10158   'MakN'   MakerNoteCanon                       Canon
     19313  'MakN'   MakerNoteApple                       Apple
     19314           MakerNoteNikon                       Nikon
     19315           MakerNoteCanon                       Canon
    1015919316           MakerNoteCasio                       Casio
    1016019317           MakerNoteCasio2                      Casio Type2
     19318           MakerNoteDJI                         DJI
     19319           MakerNoteFLIR                        FLIR
    1016119320           MakerNoteFujiFilm                    FujiFilm
    1016219321           MakerNoteGE                          GE
    1016319322           MakerNoteGE2                         FujiFilm
     19323           MakerNoteHasselblad                  Unknown
    1016419324           MakerNoteHP                          HP
    1016519325           MakerNoteHP2                         HP Type2
     
    1018019340           MakerNoteKodak8a                     Kodak Type8
    1018119341           MakerNoteKodak8b                     Kodak Type8
     19342           MakerNoteKodak8c                     Kodak Type8
    1018219343           MakerNoteKodak9                      Kodak Type9
    1018319344           MakerNoteKodak10                     Kodak Type10
     19345           MakerNoteKodak11                     Kodak Type11
     19346           MakerNoteKodak12                     Kodak Type11
    1018419347           MakerNoteKodakUnknown                Kodak Unknown
    1018519348           MakerNoteKyocera                     Unknown
     
    1018719350           MakerNoteMinolta2                    Olympus
    1018819351           MakerNoteMinolta3                    undef
    10189            MakerNoteNikon                       Nikon
     19352           MakerNoteMotorola                    Motorola
    1019019353           MakerNoteNikon2                      Nikon Type2
    1019119354           MakerNoteNikon3                      Nikon
     19355           MakerNoteNintendo                    Nintendo
    1019219356           MakerNoteOlympus                     Olympus
    1019319357           MakerNoteOlympus2                    Olympus
     
    1019819362           MakerNoteLeica5                      Panasonic Leica5
    1019919363           MakerNoteLeica6                      Panasonic Leica6
     19364           MakerNoteLeica7                      Panasonic Leica6
     19365           MakerNoteLeica8                      Panasonic Leica5
     19366           MakerNoteLeica9                      Panasonic Leica9
     19367           MakerNoteLeica10                     Panasonic
    1020019368           MakerNotePanasonic                   Panasonic
    1020119369           MakerNotePanasonic2                  Panasonic Type2
     19370           MakerNotePanasonic3                  Panasonic
    1020219371           MakerNotePentax                      Pentax
    1020319372           MakerNotePentax2                     Pentax Type2
     
    1020519374           MakerNotePentax4                     Pentax Type4
    1020619375           MakerNotePentax5                     Pentax
    10207            MakerNotePhaseOne                    undef
     19376           MakerNotePentax6                     Pentax S1
     19377           MakerNotePhaseOne                    PhaseOne
    1020819378           MakerNoteReconyx                     Reconyx
     19379           MakerNoteReconyx2                    Reconyx Type2
     19380           MakerNoteReconyx3                    Reconyx Type3
     19381           MakerNoteRicohPentax                 Pentax
    1020919382           MakerNoteRicoh                       Ricoh
     19383           MakerNoteRicoh2                      Ricoh Type2
    1021019384           MakerNoteRicohText                   Ricoh Text
    1021119385           MakerNoteSamsung1a                   undef
    10212            MakerNoteSamsung1b                   Samsung Type1
     19386           MakerNoteSamsung1b                   Samsung
    1021319387           MakerNoteSamsung2                    Samsung Type2
    1021419388           MakerNoteSanyo                       Sanyo
     
    1021919393           MakerNoteSony2                       Olympus
    1022019394           MakerNoteSony3                       Olympus
    10221            MakerNoteSony4                       Sony
     19395           MakerNoteSony4                       Sony PIC
     19396           MakerNoteSony5                       Sony
    1022219397           MakerNoteSonyEricsson                Sony Ericsson
    1022319398           MakerNoteSonySRF                     Sony SRF
    1022419399           MakerNoteUnknownText                 undef
     19400           MakerNoteUnknownBinary               undef
    1022519401           MakerNoteUnknown                     Unknown
    1022619402  'Pano'   AdobePano                            PanasonicRaw
     
    1023519411  Tag ID   Tag Name                             Writable
    1023619412  ------   --------                             --------
    10237   0x0000   OriginalRawImage                     N
    10238   0x0001   OriginalRawResource                  N
    10239   0x0002   OriginalRawFileType                  N
    10240   0x0003   OriginalRawCreator                   N
    10241   0x0004   OriginalTHMImage                     N
    10242   0x0005   OriginalTHMResource                  N
    10243   0x0006   OriginalTHMFileType                  N
    10244   0x0007   OriginalTHMCreator                   N
     19413  0x0000   OriginalRawImage                     no
     19414  0x0001   OriginalRawResource                  no
     19415  0x0002   OriginalRawFileType                  no
     19416  0x0003   OriginalRawCreator                   no
     19417  0x0004   OriginalTHMImage                     no
     19418  0x0005   OriginalTHMResource                  no
     19419  0x0006   OriginalTHMFileType                  no
     19420  0x0007   OriginalTHMCreator                   no
    1024519421
    1024619422=head2 CanonRaw Tags
     
    1025019426length of the information is preserved (and the new information is truncated
    1025119427or padded as required) unless B<Writable> is C<resize>. Currently, only
    10252 JpgFromRaw and ThumbnailImage are allowed to change size.
     19428JpgFromRaw and ThumbnailImage are allowed to change size.  See
     19429L<https://exiftool.org/canon_raw.html> for a description of the Canon CRW
     19430format.
    1025319431
    1025419432CRW images also support the addition of a CanonVRD trailer, which in turn
     
    1026019438  0x0000   NullRecord                           undef
    1026119439  0x0001   FreeBytes                            undef
    10262   0x0032   CanonColorInfo1                      N
     19440  0x0032   CanonColorInfo1                      no
    1026319441  0x0805   CanonFileDescription                 string[32]
    1026419442           UserComment                          string[256]
     
    1027919457  0x1029   CanonFocalLength                     Canon FocalLength
    1028019458  0x102a   CanonShotInfo                        Canon ShotInfo
    10281   0x102c   CanonColorInfo2                      N
     19459  0x102c   CanonColorInfo2                      no
    1028219460  0x102d   CanonCameraSettings                  Canon CameraSettings
    1028319461  0x1030   WhiteSample                          CanonRaw WhiteSample
     
    1029819476  0x1807   TargetDistanceSetting                float
    1029919477  0x180b   SerialNumber                         int32u
    10300            UnknownNumber?                       Y
     19478           UnknownNumber?                       yes
    1030119479  0x180e   TimeStamp                            CanonRaw TimeStamp
    1030219480  0x1810   ImageInfo                            CanonRaw ImageInfo
     
    1030819486  0x1835   DecoderTable                         CanonRaw DecoderTable
    1030919487  0x183b   SerialNumberFormat                   int32u
    10310   0x2005   RawData                              N
    10311   0x2007   JpgFromRaw                           resize
    10312   0x2008   ThumbnailImage                       resize
     19488  0x2005   RawData                              no
     19489  0x2007   JpgFromRaw                           resize^
     19490  0x2008   ThumbnailImage                       resize^
    1031319491  0x2804   ImageDescription                     CanonRaw
    1031419492  0x2807   CameraObject                         CanonRaw
     
    1032119499=head3 CanonRaw MakeModel Tags
    1032219500
    10323    Index   Tag Name                             Writable
    10324    -----   --------                             --------
     19501  Index1   Tag Name                             Writable
     19502  ------   --------                             --------
    1032519503      0    Make                                 string[6]
    1032619504      6    Model                                string
     
    1032819506=head3 CanonRaw WhiteSample Tags
    1032919507
    10330    Index   Tag Name                             Writable
    10331    -----   --------                             --------
    10332       1    WhiteSampleWidth                     N
    10333       2    WhiteSampleHeight                    N
    10334       3    WhiteSampleLeftBorder                N
    10335       4    WhiteSampleTopBorder                 N
    10336       5    WhiteSampleBits                      N
     19508  Index2   Tag Name                             Writable
     19509  ------   --------                             --------
     19510      1    WhiteSampleWidth                     no
     19511      2    WhiteSampleHeight                    no
     19512      3    WhiteSampleLeftBorder                no
     19513      4    WhiteSampleTopBorder                 no
     19514      5    WhiteSampleBits                      no
    1033719515
    1033819516=head3 CanonRaw RawJpgInfo Tags
    1033919517
    10340    Index   Tag Name                             Writable
    10341    -----   --------                             --------
     19518  Index2   Tag Name                             Writable
     19519  ------   --------                             --------
    1034219520      1    RawJpgQuality                        int16u
    1034319521      2    RawJpgSize                           int16u
     
    1034719525=head3 CanonRaw ImageFormat Tags
    1034819526
    10349    Index   Tag Name                             Writable
    10350    -----   --------                             --------
     19527  Index4   Tag Name                             Writable
     19528  ------   --------                             --------
    1035119529      0    FileFormat                           int32u
    1035219530      1    TargetCompressionRatio               float
     
    1035419532=head3 CanonRaw TimeStamp Tags
    1035519533
    10356    Index   Tag Name                             Writable
    10357    -----   --------                             --------
     19534  Index4   Tag Name                             Writable
     19535  ------   --------                             --------
    1035819536      0    DateTimeOriginal                     int32u
    1035919537      1    TimeZoneCode                         int32s
     
    1036219540=head3 CanonRaw ImageInfo Tags
    1036319541
    10364    Index   Tag Name                             Writable
    10365    -----   --------                             --------
    10366       0    ImageWidth                           N
    10367       1    ImageHeight                          N
    10368       2    PixelAspectRatio                     N
     19542  Index4   Tag Name                             Writable
     19543  ------   --------                             --------
     19544      0    ImageWidth                           no
     19545      1    ImageHeight                          no
     19546      2    PixelAspectRatio                     no
    1036919547      3    Rotation                             int32s
    10370       4    ComponentBitDepth                    N
    10371       5    ColorBitDepth                        N
    10372       6    ColorBW                              N
     19548      4    ComponentBitDepth                    no
     19549      5    ColorBitDepth                        no
     19550      6    ColorBW                              no
    1037319551
    1037419552=head3 CanonRaw FlashInfo Tags
    1037519553
    10376    Index   Tag Name                             Writable
    10377    -----   --------                             --------
     19554  Index4   Tag Name                             Writable
     19555  ------   --------                             --------
    1037819556      0    FlashGuideNumber                     float
    1037919557      1    FlashThreshold                       float
     
    1038119559=head3 CanonRaw ExposureInfo Tags
    1038219560
    10383    Index   Tag Name                             Writable
    10384    -----   --------                             --------
     19561  Index4   Tag Name                             Writable
     19562  ------   --------                             --------
    1038519563      0    ExposureCompensation                 float
    1038619564      1    ShutterSpeedValue                    float
     
    1038919567=head3 CanonRaw DecoderTable Tags
    1039019568
    10391    Index   Tag Name                             Writable
    10392    -----   --------                             --------
    10393       0    DecoderTableNumber                   N
    10394       2    CompressedDataOffset                 N
    10395       3    CompressedDataLength                 N
     19569  Index4   Tag Name                             Writable
     19570  ------   --------                             --------
     19571      0    DecoderTableNumber                   no
     19572      2    CompressedDataOffset                 no
     19573      3    CompressedDataLength                 no
    1039619574
    1039719575=head2 KyoceraRaw Tags
     
    1039919577Tags for Kyocera Contax N Digital RAW images.
    1040019578
    10401    Index   Tag Name                             Writable
    10402    -----   --------                             --------
    10403       1    FirmwareVersion                      N
    10404      12    Model                                N
    10405      25    Make                                 N
    10406      33    DateTimeOriginal                     N
    10407      52    ISO                                  N
    10408      56    ExposureTime                         N
    10409      60    WB_RGGBLevels                        N
    10410      88    FNumber                              N
    10411     104    MaxAperture                          N
    10412     112    FocalLength                          N
    10413     124    Lens                                 N
     19579  Index1   Tag Name                             Writable
     19580  ------   --------                             --------
     19581      1    FirmwareVersion                      no
     19582     12    Model                                no
     19583     25    Make                                 no
     19584     33    DateTimeOriginal                     no
     19585     52    ISO                                  no
     19586     56    ExposureTime                         no
     19587     60    WB_RGGBLevels                        no
     19588     88    FNumber                              no
     19589    104    MaxAperture                          no
     19590    112    FocalLength                          no
     19591    124    Lens                                 no
    1041419592
    1041519593=head2 MinoltaRaw Tags
     
    1042619604=head3 MinoltaRaw PRD Tags
    1042719605
    10428    Index   Tag Name                             Writable
    10429    -----   --------                             --------
     19606  Index1   Tag Name                             Writable
     19607  ------   --------                             --------
    1043019608      0    FirmwareID                           string[8]
    1043119609      8    SensorHeight                         int16u
     
    1044019618=head3 MinoltaRaw RIF Tags
    1044119619
    10442    Index   Tag Name                             Writable
    10443    -----   --------                             --------
     19620  Index1   Tag Name                             Writable
     19621  ------   --------                             --------
    1044419622      1    Saturation                           int8s
    1044519623      2    Contrast                             int8s
     
    1045419632     20    WB_RBLevelsCoolWhiteF                int16u[2]
    1045519633     24    WB_RBLevelsFlash                     int16u[2]
    10456      28    WB_RBLevelsUnknown?                  int16u[2]
     19634     28    WB_RBLevelsCustom                    int16u[2]
    1045719635     32    WB_RBLevelsShade                     int16u[2]
    1045819636     36    WB_RBLevelsDaylightF                 int16u[2]
     
    1046919647     78    ColorTemperature                     int8u
    1047019648     79    ColorFilter                          int8u
     19649     80    RawDataLength                        no
    1047119650
    1047219651=head3 MinoltaRaw WBG Tags
    1047319652
    10474    Index   Tag Name                             Writable
    10475    -----   --------                             --------
     19653  Index1   Tag Name                             Writable
     19654  ------   --------                             --------
    1047619655      0    WBScale                              int8u[4]
    1047719656      4    WB_GBRGLevels                        int16u[4]
     
    1048519664  ------   --------                             --------
    1048619665  0x0001   PanasonicRawVersion                  undef
    10487   0x0002   SensorWidth                          N
    10488   0x0003   SensorHeight                         N
    10489   0x0004   SensorTopBorder                      N
    10490   0x0005   SensorLeftBorder                     N
    10491   0x0006   ImageHeight                          N
    10492   0x0007   ImageWidth                           N
     19666  0x0002   SensorWidth                          no
     19667  0x0003   SensorHeight                         no
     19668  0x0004   SensorTopBorder                      no
     19669  0x0005   SensorLeftBorder                     no
     19670  0x0006   SensorBottomBorder                   no
     19671  0x0007   SensorRightBorder                    no
     19672  0x0008   SamplesPerPixel                      int16u!
     19673  0x0009   CFAPattern                           int16u!
     19674  0x000a   BitsPerSample                        int16u!
     19675  0x000b   Compression                          int16u!
     19676  0x000e   LinearityLimitRed                    int16u
     19677  0x000f   LinearityLimitGreen                  int16u
     19678  0x0010   LinearityLimitBlue                   int16u
    1049319679  0x0011   RedBalance                           int16u
    1049419680  0x0012   BlueBalance                          int16u
     19681  0x0013   WBInfo                               PanasonicRaw WBInfo
    1049519682  0x0017   ISO                                  int16u
     19683  0x0018   HighISOMultiplierRed                 int16u
     19684  0x0019   HighISOMultiplierGreen               int16u
     19685  0x001a   HighISOMultiplierBlue                int16u
     19686  0x001b   NoiseReductionParams                 undef[n]!
     19687  0x001c   BlackLevelRed                        int16u
     19688  0x001d   BlackLevelGreen                      int16u
     19689  0x001e   BlackLevelBlue                       int16u
    1049619690  0x0024   WBRedLevel                           int16u
    1049719691  0x0025   WBGreenLevel                         int16u
    1049819692  0x0026   WBBlueLevel                          int16u
     19693  0x0027   WBInfo2                              PanasonicRaw WBInfo2
     19694  0x002d   RawFormat                            int16u!
    1049919695  0x002e   JpgFromRaw                           JPEG
     19696  0x002f   CropTop                              int16u
     19697  0x0030   CropLeft                             int16u
     19698  0x0031   CropBottom                           int16u
     19699  0x0032   CropRight                            int16u
    1050019700  0x010f   Make                                 string
    1050119701  0x0110   Model                                string
    10502   0x0111   StripOffsets                         N
     19702  0x0111   StripOffsets                         no
    1050319703  0x0112   Orientation                          int16u
    10504   0x0116   RowsPerStrip                         N
    10505   0x0117   StripByteCounts                      N
    10506   0x0118   RawDataOffset                        N
     19704  0x0116   RowsPerStrip                         no
     19705  0x0117   StripByteCounts                      no
     19706  0x0118   RawDataOffset                        no
     19707  0x0119   DistortionInfo                       PanasonicRaw DistortionInfo
     19708  0x011c   Gamma                                int16u
     19709  0x0120   CameraIFD                            PanasonicRaw CameraIFD
     19710  0x0121   Multishot                            int32u
    1050719711  0x02bc   ApplicationNotes                     XMP
    1050819712  0x83bb   IPTC-NAA                             IPTC
     
    1051019714  0x8825   GPSInfo                              GPS
    1051119715
     19716=head3 PanasonicRaw WBInfo Tags
     19717
     19718  Index2   Tag Name                             Writable
     19719  ------   --------                             --------
     19720      0    NumWBEntries                         int16u
     19721      1    WBType1                              int16u
     19722      2    WB_RBLevels1                         int16u[2]
     19723      4    WBType2                              int16u
     19724      5    WB_RBLevels2                         int16u[2]
     19725      7    WBType3                              int16u
     19726      8    WB_RBLevels3                         int16u[2]
     19727     10    WBType4                              int16u
     19728     11    WB_RBLevels4                         int16u[2]
     19729     13    WBType5                              int16u
     19730     14    WB_RBLevels5                         int16u[2]
     19731     16    WBType6                              int16u
     19732     17    WB_RBLevels6                         int16u[2]
     19733     19    WBType7                              int16u
     19734     20    WB_RBLevels7                         int16u[2]
     19735
     19736=head3 PanasonicRaw WBInfo2 Tags
     19737
     19738  Index2   Tag Name                             Writable
     19739  ------   --------                             --------
     19740      0    NumWBEntries                         int16u
     19741      1    WBType1                              int16u
     19742      2    WB_RGBLevels1                        int16u[3]
     19743      5    WBType2                              int16u
     19744      6    WB_RGBLevels2                        int16u[3]
     19745      9    WBType3                              int16u
     19746     10    WB_RGBLevels3                        int16u[3]
     19747     13    WBType4                              int16u
     19748     14    WB_RGBLevels4                        int16u[3]
     19749     17    WBType5                              int16u
     19750     18    WB_RGBLevels5                        int16u[3]
     19751     21    WBType6                              int16u
     19752     22    WB_RGBLevels6                        int16u[3]
     19753     25    WBType7                              int16u
     19754     26    WB_RGBLevels7                        int16u[3]
     19755
     19756=head3 PanasonicRaw DistortionInfo Tags
     19757
     19758Lens distortion correction information.
     19759
     19760  Tag ID   Tag Name                             Writable
     19761  ------   --------                             --------
     19762  0x0002   DistortionParam02                    int16s
     19763  0x0004   DistortionParam04                    int16s
     19764  0x0005   DistortionScale                      int16s
     19765    7.1    DistortionCorrection                 int16s & 0x0f
     19766  0x0008   DistortionParam08                    int16s
     19767  0x0009   DistortionParam09                    int16s
     19768  0x000b   DistortionParam11                    int16s
     19769  0x000c   DistortionN?                         int16s
     19770
     19771=head3 PanasonicRaw CameraIFD Tags
     19772
     19773  Tag ID   Tag Name                             Writable
     19774  ------   --------                             --------
     19775  0x1001   MultishotOn                          no
     19776  0x1100   FocusStepNear                        no
     19777  0x1101   FocusStepCount                       no
     19778  0x1102   FlashFired                           no
     19779  0x1105   ZoomPosition                         no
     19780  0x1200   LensAttached                         no
     19781  0x1201   LensTypeMake                         no
     19782  0x1202   LensTypeModel                        no
     19783  0x1203   FocalLengthIn35mmFormat              no
     19784  0x1301   ApertureValue                        no
     19785  0x1302   ShutterSpeedValue                    no
     19786  0x1303   SensitivityValue                     no
     19787  0x1305   HighISOMode                          no
     19788  0x1412   FacesDetected                        no
     19789  0x3200   WB_CFA0_LevelDaylight                no
     19790  0x3201   WB_CFA1_LevelDaylight                no
     19791  0x3202   WB_CFA2_LevelDaylight                no
     19792  0x3203   WB_CFA3_LevelDaylight                no
     19793  0x3300   WhiteBalanceSet                      no
     19794  0x3420   WB_RedLevelAuto                      no
     19795  0x3421   WB_BlueLevelAuto                     no
     19796  0x3501   Orientation                          no
     19797  0x3600   WhiteBalanceDetected                 no
     19798
    1051219799=head2 SigmaRaw Tags
    1051319800
     
    1051919806  ------               --------                 --------
    1052019807  'Header'             Header                   SigmaRaw Header
     19808  'Header4'            Header4                  SigmaRaw Header4
    1052119809  'HeaderExt'          HeaderExt                SigmaRaw HeaderExt
    10522   'IMA2'               PreviewImage             N
    10523                        JpgFromRaw               N
    10524   'IMAG'               PreviewImage             N
     19810  'IMA2'               PreviewImage             no
     19811                       JpgFromRaw               no
     19812  'IMAG'               PreviewImage             no
    1052519813  'PROP'               Properties               SigmaRaw Properties
    1052619814
    1052719815=head3 SigmaRaw Header Tags
    1052819816
     19817Information extracted from the header of an X3F file.
     19818
    1052919819  Tag ID   Tag Name                             Writable
    1053019820  ------   --------                             --------
    10531   0x0001   FileVersion                          N
    10532   0x0002   ImageUniqueID                        N
    10533   0x0006   MarkBits                             N
    10534   0x0007   ImageWidth                           N
    10535   0x0008   ImageHeight                          N
    10536   0x0009   Rotation                             N
    10537   0x000a   WhiteBalance                         N
    10538   0x0012   SceneCaptureType                     N
     19821  0x0001   FileVersion                          no
     19822  0x0002   ImageUniqueID                        no
     19823  0x0006   MarkBits                             no
     19824  0x0007   ImageWidth                           no
     19825  0x0008   ImageHeight                          no
     19826  0x0009   Rotation                             no
     19827  0x000a   WhiteBalance                         no
     19828  0x0012   SceneCaptureType                     no
     19829
     19830=head3 SigmaRaw Header4 Tags
     19831
     19832Header information for version 4.0 or greater X3F.
     19833
     19834  Index4   Tag Name                             Writable
     19835  ------   --------                             --------
     19836      1    FileVersion                          no
     19837     10    ImageWidth                           no
     19838     11    ImageHeight                          no
     19839     12    Rotation                             no
    1053919840
    1054019841=head3 SigmaRaw HeaderExt Tags
     
    1054419845  Tag ID   Tag Name                             Writable
    1054519846  ------   --------                             --------
    10546   0x0000   Unused                               N
    10547   0x0001   ExposureAdjust                       N
    10548   0x0002   Contrast                             N
    10549   0x0003   Shadow                               N
    10550   0x0004   Highlight                            N
    10551   0x0005   Saturation                           N
    10552   0x0006   Sharpness                            N
    10553   0x0007   RedAdjust                            N
    10554   0x0008   GreenAdjust                          N
    10555   0x0009   BlueAdjust                           N
    10556   0x000a   X3FillLight                          N
     19847  0x0000   Unused                               no
     19848  0x0001   ExposureAdjust                       no
     19849  0x0002   Contrast                             no
     19850  0x0003   Shadow                               no
     19851  0x0004   Highlight                            no
     19852  0x0005   Saturation                           no
     19853  0x0006   Sharpness                            no
     19854  0x0007   RedAdjust                            no
     19855  0x0008   GreenAdjust                          no
     19856  0x0009   BlueAdjust                           no
     19857  0x000a   X3FillLight                          no
    1055719858
    1055819859=head3 SigmaRaw Properties Tags
     
    1056019861  Tag ID               Tag Name                 Writable
    1056119862  ------               --------                 --------
    10562   'AEMODE'             MeteringMode             N
    10563   'AFAREA'             AFArea                   N
    10564   'AFINFOCUS'          AFInFocus                N
    10565   'AFMODE'             FocusMode                N
    10566   'APERTURE'           FNumber                  N
    10567   'AP_DESC'            ApertureDisplayed        N
    10568   'BRACKET'            BracketShot              N
    10569   'BURST'              BurstShot                N
    10570   'CAMMANUF'           Make                     N
    10571   'CAMMODEL'           Model                    N
    10572   'CAMNAME'            CameraName               N
    10573   'CAMSERIAL'          SerialNumber             N
    10574   'CM_DESC'            SceneCaptureType         N
    10575   'COLORSPACE'         ColorSpace               N
    10576   'DRIVE'              DriveMode                N
    10577   'EVAL_STATE'         EvalState                N
    10578   'EXPCOMP'            ExposureCompensation     N
    10579   'EXPNET'             NetExposureCompensation  N
    10580   'EXPTIME'            IntegrationTime          N
    10581   'FIRMVERS'           FirmwareVersion          N
    10582   'FLASH'              FlashMode                N
    10583   'FLASHEXPCOMP'       FlashExpComp             N
    10584   'FLASHPOWER'         FlashPower               N
    10585   'FLASHTTLMODE'       FlashTTLMode             N
    10586   'FLASHTYPE'          FlashType                N
    10587   'FLENGTH'            FocalLength              N
    10588   'FLEQ35MM'           FocalLengthIn35mmFormat  N
    10589   'FOCUS'              Focus                    N
    10590   'IMAGEBOARDID'       ImageBoardID             N
    10591   'IMAGERBOARDID'      ImagerBoardID            N
    10592   'IMAGERTEMP'         SensorTemperature        N
    10593   'ISO'                ISO                      N
    10594   'LENSARANGE'         LensApertureRange        N
    10595   'LENSFRANGE'         LensFocalRange           N
    10596   'LENSMODEL'          LensType                 N
    10597   'PMODE'              ExposureProgram          N
    10598   'RESOLUTION'         Quality                  N
    10599   'SENSORID'           SensorID                 N
    10600   'SHUTTER'            ExposureTime             N
    10601   'SH_DESC'            ShutterSpeedDisplayed    N
    10602   'TIME'               DateTimeOriginal         N
    10603   'VERSION_BF'         VersionBF                N
    10604   'WB_DESC'            WhiteBalance             N
     19863  'AEMODE'             MeteringMode             no
     19864  'AFAREA'             AFArea                   no
     19865  'AFINFOCUS'          AFInFocus                no
     19866  'AFMODE'             FocusMode                no
     19867  'APERTURE'           FNumber                  no
     19868  'AP_DESC'            ApertureDisplayed        no
     19869  'BRACKET'            BracketShot              no
     19870  'BURST'              BurstShot                no
     19871  'CAMMANUF'           Make                     no
     19872  'CAMMODEL'           Model                    no
     19873  'CAMNAME'            CameraName               no
     19874  'CAMSERIAL'          SerialNumber             no
     19875  'CM_DESC'            SceneCaptureType         no
     19876  'COLORSPACE'         ColorSpace               no
     19877  'DRIVE'              DriveMode                no
     19878  'EVAL_STATE'         EvalState                no
     19879  'EXPCOMP'            ExposureCompensation     no
     19880  'EXPNET'             NetExposureCompensation  no
     19881  'EXPTIME'            IntegrationTime          no
     19882  'FIRMVERS'           FirmwareVersion          no
     19883  'FLASH'              FlashMode                no
     19884  'FLASHEXPCOMP'       FlashExpComp             no
     19885  'FLASHPOWER'         FlashPower               no
     19886  'FLASHTTLMODE'       FlashTTLMode             no
     19887  'FLASHTYPE'          FlashType                no
     19888  'FLENGTH'            FocalLength              no
     19889  'FLEQ35MM'           FocalLengthIn35mmFormat  no
     19890  'FOCUS'              Focus                    no
     19891  'IMAGEBOARDID'       ImageBoardID             no
     19892  'IMAGERBOARDID'      ImagerBoardID            no
     19893  'IMAGERTEMP'         SensorTemperature        no
     19894  'ISO'                ISO                      no
     19895  'LENSARANGE'         LensApertureRange        no
     19896  'LENSFRANGE'         LensFocalRange           no
     19897  'LENSMODEL'          LensType                 no
     19898  'PMODE'              ExposureProgram          no
     19899  'RESOLUTION'         Quality                  no
     19900  'SENSORID'           SensorID                 no
     19901  'SHUTTER'            ExposureTime             no
     19902  'SH_DESC'            ShutterSpeedDisplayed    no
     19903  'TIME'               DateTimeOriginal         no
     19904  'VERSION_BF'         VersionBF                no
     19905  'WB_DESC'            WhiteBalance             no
     19906
     19907=head2 Lytro Tags
     19908
     19909Tag definitions for Lytro Light Field Picture (LFP) files.  ExifTool
     19910extracts the full JSON metadata blocks, as well as breaking them down into
     19911individual tags.  All available tags are extracted from the JSON metadata,
     19912even if they don't appear in the table below.
     19913
     19914  Tag Name                                      Writable
     19915  --------                                      --------
     19916  AccelerometerTime                             no
     19917  AccelerometerX                                no
     19918  AccelerometerY                                no
     19919  AccelerometerZ                                no
     19920  CameraType                                    no
     19921  DateTimeOriginal                              no
     19922  EmbeddedImage                                 no
     19923  ExposureTime                                  no
     19924  FNumber                                       no
     19925  FirmwareVersion                               no
     19926  FocalLength                                   no
     19927  FocalPlaneXResolution                         no
     19928  FrameExposureTime                             no
     19929  ISO                                           no
     19930  ImageLimitExposureBias                        no
     19931  ImageModulationExposureBias                   no
     19932  JSONMetadata                                  no+
     19933  LensTemperature                               no
     19934  Make                                          no
     19935  Model                                         no
     19936  Orientation                                   no
     19937  SensorSerialNumber                            no
     19938  SerialNumber                                  no
     19939  SocTemperature                                no
    1060519940
    1060619941=head2 JFIF Tags
    1060719942
    1060819943The following information is extracted from the JPEG JFIF header.  See
    10609 L<http://www.jpeg.org/public/jfif.pdf> for the JFIF 1.02 specification.
    10610 
    10611    Index   Tag Name                             Writable
    10612    -----   --------                             --------
    10613       0    JFIFVersion                          N
    10614       2    ResolutionUnit                       int8u
    10615       3    XResolution                          int16u
    10616       5    YResolution                          int16u
     19944L<https://www.w3.org/Graphics/JPEG/jfif3.pdf> for the JFIF 1.02
     19945specification.
     19946
     19947  Index1   Tag Name                             Writable
     19948  ------   --------                             --------
     19949      0    JFIFVersion                          no:
     19950      2    ResolutionUnit                       int8u:
     19951      3    XResolution                          int16u:
     19952      5    YResolution                          int16u:
     19953      7    ThumbnailWidth                       no
     19954      8    ThumbnailHeight                      no
     19955      9    ThumbnailTIFF                        no
    1061719956
    1061819957=head3 JFIF Extension Tags
    1061919958
     19959Thumbnail images extracted from the JFXX segment.
     19960
    1062019961  Tag ID   Tag Name                             Writable
    1062119962  ------   --------                             --------
    10622   0x0010   ThumbnailImage                       N
     19963  0x0010   ThumbnailImage                       no
     19964  0x0011   ThumbnailTIFF                        no
     19965  0x0013   ThumbnailTIFF                        no
    1062319966
    1062419967=head2 FlashPix Tags
     
    1063019973popular.  However, some of the structures used in FlashPix streams are part
    1063119974of the EXIF specification, and are still being used in the APP2 FPXR segment
    10632 of JPEG images by some Kodak and Hewlett-Packard digital cameras.
     19975of JPEG images by some digital cameras from manufacturers such as FujiFilm,
     19976Hewlett-Packard, Kodak and Sanyo.
    1063319977
    1063419978ExifTool extracts FlashPix information from both FPX images and the APP2
     
    1063719981(Microsoft Visio) drawings, and FLA (Macromedia/Adobe Flash project) files
    1063819982since these are based on the same file format as FlashPix (the Windows
    10639 Compound Binary File format).  See
     19983Compound Binary File format).  Note that ExifTool identifies any
     19984unrecognized Windows Compound Binary file as a FlashPix (FPX) file.  See
    1064019985L<http://graphcomp.com/info/specs/livepicture/fpx.pdf> for the FlashPix
    1064119986specification.
     
    1065219997  "\x05Image Info"                 ImageInfo    FlashPix ImageInfo
    1065319998  "\x05Operation"                  Operation    FlashPix Operation
    10654   "\x05Screen Nail"                ScreenNail   N
     19999  "\x05Screen Nail"                ScreenNail   no
    1065520000  "\x05SummaryInformation"         SummaryInfo  FlashPix SummaryInfo
    1065620001  "\x05Transform"                  Transform    FlashPix Transform
    10657   'Audio Stream'                   AudioStream  N
     20002  'Audio Stream'                   AudioStream  no
    1065820003  'Contents'                       Contents     XMP
    10659   'Current User'                   CurrentUser  N
     20004  'Current User'                   CurrentUser  no
    1066020005  'ICC Profile 0001'               ICC_Profile  ICC_Profile
     20006  'Preview'                        PreviewImage no
     20007  'Property'                       PreviewInfo  FlashPix PreviewInfo
    1066120008  'Subimage 0000 Header'           SubimageHdr  FlashPix SubimageHdr
     20009  'WordDocument'                   WordDocument FlashPix WordDocument
    1066220010
    1066320011=head3 FlashPix CompObj Tags
    1066420012
    10665    Index   Tag Name                             Writable
    10666    -----   --------                             --------
    10667       0    CompObjUserTypeLen                   N
    10668       1    CompObjUserType                      N
     20013  Index4   Tag Name                             Writable
     20014  ------   --------                             --------
     20015      0    CompObjUserTypeLen                   no
     20016      1    CompObjUserType                      no
    1066920017
    1067020018=head3 FlashPix AudioInfo Tags
     
    1067820026  Tag ID       Tag Name                         Writable
    1067920027  ------       --------                         --------
    10680   0x10000      DataObjectID                     N
    10681   0x10002      LockedPropertyList               N
    10682   0x10003      DataObjectTitle                  N
    10683   0x10004      LastModifier                     N
    10684   0x10005      RevisionNumber                   N
    10685   0x10006      DataCreateDate                   N
    10686   0x10007      DataModifyDate                   N
    10687   0x10008      CreatingApplication              N
    10688   0x10100      DataObjectStatus                 N
    10689   0x10101      CreatingTransform                N
    10690   0x10102      UsingTransforms                  N
    10691   0x10000000   CachedImageHeight                N
    10692   0x10000001   CachedImageWidth                 N
     20028  0x10000      DataObjectID                     no
     20029  0x10002      LockedPropertyList               no
     20030  0x10003      DataObjectTitle                  no
     20031  0x10004      LastModifier                     no
     20032  0x10005      RevisionNumber                   no
     20033  0x10006      DataCreateDate                   no
     20034  0x10007      DataModifyDate                   no
     20035  0x10008      CreatingApplication              no
     20036  0x10100      DataObjectStatus                 no
     20037  0x10101      CreatingTransform                no
     20038  0x10102      UsingTransforms                  no
     20039  0x10000000   CachedImageHeight                no
     20040  0x10000001   CachedImageWidth                 no
    1069320041
    1069420042=head3 FlashPix DocumentInfo Tags
     
    1070120049  Tag ID               Tag Name                 Writable
    1070220050  ------               --------                 --------
    10703   0x0002               Category                 N
    10704   0x0003               PresentationTarget       N
    10705   0x0004               Bytes                    N
    10706   0x0005               Lines                    N
    10707   0x0006               Paragraphs               N
    10708   0x0007               Slides                   N
    10709   0x0008               Notes                    N
    10710   0x0009               HiddenSlides             N
    10711   0x000a               MMClips                  N
    10712   0x000b               ScaleCrop                N
    10713   0x000c               HeadingPairs             N
    10714   0x000d               TitleOfParts             N
    10715   0x000e               Manager                  N
    10716   0x000f               Company                  N
    10717   0x0010               LinksUpToDate            N
    10718   0x0011               CharCountWithSpaces      N
    10719   0x0013               SharedDoc                N
    10720   0x0016               HyperlinksChanged        N
    10721   0x0017               AppVersion               N
    10722   '_PID_HLINKS'        Hyperlinks               N
    10723   '_PID_LINKBASE'      HyperlinkBase            N
     20051  0x0002               Category                 no
     20052  0x0003               PresentationTarget       no
     20053  0x0004               Bytes                    no
     20054  0x0005               Lines                    no
     20055  0x0006               Paragraphs               no
     20056  0x0007               Slides                   no
     20057  0x0008               Notes                    no
     20058  0x0009               HiddenSlides             no
     20059  0x000a               MMClips                  no
     20060  0x000b               ScaleCrop                no
     20061  0x000c               HeadingPairs             no
     20062  0x000d               TitleOfParts             no
     20063  0x000e               Manager                  no
     20064  0x000f               Company                  no
     20065  0x0010               LinksUpToDate            no
     20066  0x0011               CharCountWithSpaces      no
     20067  0x0013               SharedDoc                no
     20068  0x0016               HyperlinksChanged        no
     20069  0x0017               AppVersion               no
     20070  '_PID_HLINKS'        Hyperlinks               no
     20071  '_PID_LINKBASE'      HyperlinkBase            no
    1072420072
    1072520073=head3 FlashPix Extensions Tags
     
    1072720075  Tag ID       Tag Name                         Writable
    1072820076  ------       --------                         --------
    10729   0x0001       ExtensionName                    N
    10730   0x0002       ExtensionClassID                 N
    10731   0x0003       ExtensionPersistence             N
    10732   0x0004       ExtensionCreateDate              N
    10733   0x0005       ExtensionModifyDate              N
    10734   0x0006       CreatingApplication              N
    10735   0x0007       ExtensionDescription             N
    10736   0x1000       Storage-StreamPathname           N
    10737   0x2000       FlashPixStreamPathname           N
    10738   0x2001       FlashPixStreamFieldOffset        N
    10739   0x3000       PropertySetPathname              N
    10740   0x3001       PropertySetIDCodes               N
    10741   0x3002       PropertyVectorElements           N
    10742   0x4000       SubimageResolutions              N
    10743   0x10000000   UsedExtensionNumbers             N
     20077  0x0001       ExtensionName                    no
     20078  0x0002       ExtensionClassID                 no
     20079  0x0003       ExtensionPersistence             no
     20080  0x0004       ExtensionCreateDate              no
     20081  0x0005       ExtensionModifyDate              no
     20082  0x0006       CreatingApplication              no
     20083  0x0007       ExtensionDescription             no
     20084  0x1000       Storage-StreamPathname           no
     20085  0x2000       FlashPixStreamPathname           no
     20086  0x2001       FlashPixStreamFieldOffset        no
     20087  0x3000       PropertySetPathname              no
     20088  0x3001       PropertySetIDCodes               no
     20089  0x3002       PropertyVectorElements           no
     20090  0x4000       SubimageResolutions              no
     20091  0x10000000   UsedExtensionNumbers             no
    1074420092
    1074520093=head3 FlashPix GlobalInfo Tags
     
    1074720095  Tag ID   Tag Name                             Writable
    1074820096  ------   --------                             --------
    10749   0x10002  LockedPropertyList                   N
    10750   0x10003  TransformedImageTitle                N
    10751   0x10004  LastModifier                         N
    10752   0x10100  VisibleOutputs                       N
    10753   0x10101  MaximumImageIndex                    N
    10754   0x10102  MaximumTransformIndex                N
    10755   0x10103  MaximumOperationIndex                N
     20097  0x10002  LockedPropertyList                   no
     20098  0x10003  TransformedImageTitle                no
     20099  0x10004  LastModifier                         no
     20100  0x10100  VisibleOutputs                       no
     20101  0x10101  MaximumImageIndex                    no
     20102  0x10102  MaximumTransformIndex                no
     20103  0x10103  MaximumOperationIndex                no
    1075620104
    1075720105=head3 FlashPix Image Tags
     
    1075920107  Tag ID       Tag Name                         Writable
    1076020108  ------       --------                         --------
    10761   0x1000000    NumberOfResolutions              N
    10762   0x1000002    ImageWidth                       N
    10763   0x1000003    ImageHeight                      N
    10764   0x1000004    DefaultDisplayHeight             N
    10765   0x1000005    DefaultDisplayWidth              N
    10766   0x1000006    DisplayUnits                     N
    10767   0x2000000    SubimageWidth                    N
    10768   0x2000001    SubimageHeight                   N
    10769   0x2000002    SubimageColor                    N
    10770   0x2000003    SubimageNumericalFormat          N
    10771   0x2000004    DecimationMethod                 N
    10772   0x2000005    DecimationPrefilterWidth         N
    10773   0x2000007    SubimageICC_Profile              N
    10774   0x3000001    JPEGTables                       N
    10775   0x3000002    MaxJPEGTableIndex                N
     20109  0x1000000    NumberOfResolutions              no
     20110  0x1000002    ImageWidth                       no
     20111  0x1000003    ImageHeight                      no
     20112  0x1000004    DefaultDisplayHeight             no
     20113  0x1000005    DefaultDisplayWidth              no
     20114  0x1000006    DisplayUnits                     no
     20115  0x2000000    SubimageWidth                    no
     20116  0x2000001    SubimageHeight                   no
     20117  0x2000002    SubimageColor                    no
     20118  0x2000003    SubimageNumericalFormat          no
     20119  0x2000004    DecimationMethod                 no
     20120  0x2000005    DecimationPrefilterWidth         no
     20121  0x2000007    SubimageICC_Profile              no
     20122  0x3000001    JPEGTables                       no
     20123  0x3000002    MaxJPEGTableIndex                no
    1077620124
    1077720125=head3 FlashPix ImageInfo Tags
     
    1077920127  Tag ID       Tag Name                         Writable
    1078020128  ------       --------                         --------
    10781   0x21000000   FileSource                       N
    10782   0x21000001   SceneType                        N
    10783   0x21000002   CreationPathVector               N
    10784   0x21000003   SoftwareRelease                  N
    10785   0x21000004   UserDefinedID                    N
    10786   0x21000005   SharpnessApproximation           N
    10787   0x22000000   Copyright                        N
    10788   0x22000001   OriginalImageBroker              N
    10789   0x22000002   DigitalImageBroker               N
    10790   0x22000003   Authorship                       N
    10791   0x22000004   IntellectualPropertyNotes        N
    10792   0x23000000   TestTarget                       N
    10793   0x23000002   GroupCaption                     N
    10794   0x23000003   CaptionText                      N
    10795   0x23000004   People                           N
    10796   0x23000007   Things                           N
    10797   0x2300000a   DateTimeOriginal                 N
    10798   0x2300000b   Events                           N
    10799   0x2300000c   Places                           N
    10800   0x2300000f   ContentDescriptionNotes          N
    10801   0x24000000   Make                             N
    10802   0x24000001   Model                            N
    10803   0x24000002   SerialNumber                     N
    10804   0x25000000   CreateDate                       N
    10805   0x25000001   ExposureTime                     N
    10806   0x25000002   FNumber                          N
    10807   0x25000003   ExposureProgram                  N
    10808   0x25000004   BrightnessValue                  N
    10809   0x25000005   ExposureCompensation             N
    10810   0x25000006   SubjectDistance                  N
    10811   0x25000007   MeteringMode                     N
    10812   0x25000008   LightSource                      N
    10813   0x25000009   FocalLength                      N
    10814   0x2500000a   MaxApertureValue                 N
    10815   0x2500000b   Flash                            N
    10816   0x2500000c   FlashEnergy                      N
    10817   0x2500000d   FlashReturn                      N
    10818   0x2500000e   BackLight                        N
    10819   0x2500000f   SubjectLocation                  N
    10820   0x25000010   ExposureIndex                    N
    10821   0x25000011   SpecialEffectsOpticalFilter      N
    10822   0x25000012   PerPictureNotes                  N
    10823   0x26000000   SensingMethod                    N
    10824   0x26000001   FocalPlaneXResolution            N
    10825   0x26000002   FocalPlaneYResolution            N
    10826   0x26000003   FocalPlaneResolutionUnit         N
    10827   0x26000004   SpatialFrequencyResponse         N
    10828   0x26000005   CFAPattern                       N
    10829   0x26000007   ISO                              N
    10830   0x26000008   Opto-ElectricConvFactor          N
    10831   0x27000000   FilmBrand                        N
    10832   0x27000001   FilmCategory                     N
    10833   0x27000002   FilmSize                         N
    10834   0x27000003   FilmRollNumber                   N
    10835   0x27000004   FilmFrameNumber                  N
    10836   0x28000000   ScannerMake                      N
    10837   0x28000001   ScannerModel                     N
    10838   0x28000002   ScannerSerialNumber              N
    10839   0x28000003   ScanSoftware                     N
    10840   0x28000004   ScanSoftwareRevisionDate         N
    10841   0x28000005   ServiceOrganizationName          N
    10842   0x28000006   ScanOperatorID                   N
    10843   0x28000008   ScanDate                         N
    10844   0x28000009   ModifyDate                       N
    10845   0x2800000a   ScannerPixelSize                 N
    10846   0x29000000   OriginalScannedImageSize         N
    10847   0x29000001   OriginalDocumentSize             N
    10848   0x29000002   OriginalMedium                   N
    10849   0x29000003   TypeOfOriginal                   N
     20129  0x21000000   FileSource                       no
     20130  0x21000001   SceneType                        no
     20131  0x21000002   CreationPathVector               no
     20132  0x21000003   SoftwareRelease                  no
     20133  0x21000004   UserDefinedID                    no
     20134  0x21000005   SharpnessApproximation           no
     20135  0x22000000   Copyright                        no
     20136  0x22000001   OriginalImageBroker              no
     20137  0x22000002   DigitalImageBroker               no
     20138  0x22000003   Authorship                       no
     20139  0x22000004   IntellectualPropertyNotes        no
     20140  0x23000000   TestTarget                       no
     20141  0x23000002   GroupCaption                     no
     20142  0x23000003   CaptionText                      no
     20143  0x23000004   People                           no
     20144  0x23000007   Things                           no
     20145  0x2300000a   DateTimeOriginal                 no
     20146  0x2300000b   Events                           no
     20147  0x2300000c   Places                           no
     20148  0x2300000f   ContentDescriptionNotes          no
     20149  0x24000000   Make                             no
     20150  0x24000001   Model                            no
     20151  0x24000002   SerialNumber                     no
     20152  0x25000000   CreateDate                       no
     20153  0x25000001   ExposureTime                     no
     20154  0x25000002   FNumber                          no
     20155  0x25000003   ExposureProgram                  no
     20156  0x25000004   BrightnessValue                  no
     20157  0x25000005   ExposureCompensation             no
     20158  0x25000006   SubjectDistance                  no
     20159  0x25000007   MeteringMode                     no
     20160  0x25000008   LightSource                      no
     20161  0x25000009   FocalLength                      no
     20162  0x2500000a   MaxApertureValue                 no
     20163  0x2500000b   Flash                            no
     20164  0x2500000c   FlashEnergy                      no
     20165  0x2500000d   FlashReturn                      no
     20166  0x2500000e   BackLight                        no
     20167  0x2500000f   SubjectLocation                  no
     20168  0x25000010   ExposureIndex                    no
     20169  0x25000011   SpecialEffectsOpticalFilter      no
     20170  0x25000012   PerPictureNotes                  no
     20171  0x26000000   SensingMethod                    no
     20172  0x26000001   FocalPlaneXResolution            no
     20173  0x26000002   FocalPlaneYResolution            no
     20174  0x26000003   FocalPlaneResolutionUnit         no
     20175  0x26000004   SpatialFrequencyResponse         no
     20176  0x26000005   CFAPattern                       no
     20177  0x26000007   ISO                              no
     20178  0x26000008   Opto-ElectricConvFactor          no
     20179  0x27000000   FilmBrand                        no
     20180  0x27000001   FilmCategory                     no
     20181  0x27000002   FilmSize                         no
     20182  0x27000003   FilmRollNumber                   no
     20183  0x27000004   FilmFrameNumber                  no
     20184  0x28000000   ScannerMake                      no
     20185  0x28000001   ScannerModel                     no
     20186  0x28000002   ScannerSerialNumber              no
     20187  0x28000003   ScanSoftware                     no
     20188  0x28000004   ScanSoftwareRevisionDate         no
     20189  0x28000005   ServiceOrganizationName          no
     20190  0x28000006   ScanOperatorID                   no
     20191  0x28000008   ScanDate                         no
     20192  0x28000009   ModifyDate                       no
     20193  0x2800000a   ScannerPixelSize                 no
     20194  0x29000000   OriginalScannedImageSize         no
     20195  0x29000001   OriginalDocumentSize             no
     20196  0x29000002   OriginalMedium                   no
     20197  0x29000003   TypeOfOriginal                   no
    1085020198
    1085120199=head3 FlashPix Operation Tags
     
    1085320201  Tag ID   Tag Name                             Writable
    1085420202  ------   --------                             --------
    10855   0x10000  OperationID                          N
     20203  0x10000  OperationID                          no
    1085620204
    1085720205=head3 FlashPix SummaryInfo Tags
     
    1086220210  Tag ID       Tag Name                         Writable
    1086320211  ------       --------                         --------
    10864   0x0000       Dictionary                       N
    10865   0x0001       CodePage                         N
    10866   0x0002       Title                            N
    10867   0x0003       Subject                          N
    10868   0x0004       Author                           N
    10869   0x0005       Keywords                         N
    10870   0x0006       Comments                         N
    10871   0x0007       Template                         N
    10872   0x0008       LastModifiedBy                   N
    10873   0x0009       RevisionNumber                   N
    10874   0x000a       TotalEditTime                    N
    10875   0x000b       LastPrinted                      N
    10876   0x000c       CreateDate                       N
    10877   0x000d       ModifyDate                       N
    10878   0x000e       Pages                            N
    10879   0x000f       Words                            N
    10880   0x0010       Characters                       N
    10881   0x0011       ThumbnailClip                    N
    10882   0x0012       Software                         N
    10883   0x0013       Security                         N
    10884   0x80000000   LocaleIndicator                  N
     20212  0x0000       Dictionary                       no
     20213  0x0001       CodePage                         no
     20214  0x0002       Title                            no
     20215  0x0003       Subject                          no
     20216  0x0004       Author                           no
     20217  0x0005       Keywords                         no
     20218  0x0006       Comments                         no
     20219  0x0007       Template                         no
     20220  0x0008       LastModifiedBy                   no
     20221  0x0009       RevisionNumber                   no
     20222  0x000a       TotalEditTime                    no
     20223  0x000b       LastPrinted                      no
     20224  0x000c       CreateDate                       no
     20225  0x000d       ModifyDate                       no
     20226  0x000e       Pages                            no
     20227  0x000f       Words                            no
     20228  0x0010       Characters                       no
     20229  0x0011       ThumbnailClip                    no
     20230  0x0012       Software                         no
     20231  0x0013       Security                         no
     20232  0x0022       CreatedBy                        no
     20233  0x0023       DocumentID                       no
     20234  0x80000000   LocaleIndicator                  no
    1088520235
    1088620236=head3 FlashPix Transform Tags
     
    1088820238  Tag ID       Tag Name                         Writable
    1088920239  ------       --------                         --------
    10890   0x10000      TransformNodeID                  N
    10891   0x10001      OperationClassID                 N
    10892   0x10002      LockedPropertyList               N
    10893   0x10003      TransformTitle                   N
    10894   0x10004      LastModifier                     N
    10895   0x10005      RevisionNumber                   N
    10896   0x10006      TransformCreateDate              N
    10897   0x10007      TransformModifyDate              N
    10898   0x10008      CreatingApplication              N
    10899   0x10100      InputDataObjectList              N
    10900   0x10101      OutputDataObjectList             N
    10901   0x10102      OperationNumber                  N
    10902   0x10000000   ResultAspectRatio                N
    10903   0x10000001   RectangleOfInterest              N
    10904   0x10000002   Filtering                        N
    10905   0x10000003   SpatialOrientation               N
    10906   0x10000004   ColorTwistMatrix                 N
    10907   0x10000005   ContrastAdjustment               N
     20240  0x10000      TransformNodeID                  no
     20241  0x10001      OperationClassID                 no
     20242  0x10002      LockedPropertyList               no
     20243  0x10003      TransformTitle                   no
     20244  0x10004      LastModifier                     no
     20245  0x10005      RevisionNumber                   no
     20246  0x10006      TransformCreateDate              no
     20247  0x10007      TransformModifyDate              no
     20248  0x10008      CreatingApplication              no
     20249  0x10100      InputDataObjectList              no
     20250  0x10101      OutputDataObjectList             no
     20251  0x10102      OperationNumber                  no
     20252  0x10000000   ResultAspectRatio                no
     20253  0x10000001   RectangleOfInterest              no
     20254  0x10000002   Filtering                        no
     20255  0x10000003   SpatialOrientation               no
     20256  0x10000004   ColorTwistMatrix                 no
     20257  0x10000005   ContrastAdjustment               no
     20258
     20259=head3 FlashPix PreviewInfo Tags
     20260
     20261Preview information written by some FujiFilm models.
     20262
     20263  Index1   Tag Name                             Writable
     20264  ------   --------                             --------
     20265     13    PreviewImageWidth                    no
     20266     23    PreviewImageHeight                   no
    1090820267
    1090920268=head3 FlashPix SubimageHdr Tags
    1091020269
    10911    Index   Tag Name                             Writable
    10912    -----   --------                             --------
    10913       1    SubimageWidth                        N
    10914       2    SubimageHeight                       N
    10915       3    SubimageTileCount                    N
    10916       4    SubimageTileWidth                    N
    10917       5    SubimageTileHeight                   N
    10918       6    NumChannels                          N
     20270  Index4   Tag Name                             Writable
     20271  ------   --------                             --------
     20272      1    SubimageWidth                        no
     20273      2    SubimageHeight                       no
     20274      3    SubimageTileCount                    no
     20275      4    SubimageTileWidth                    no
     20276      5    SubimageTileHeight                   no
     20277      6    NumChannels                          no
     20278
     20279=head3 FlashPix WordDocument Tags
     20280
     20281Tags extracted from the Microsoft Word document stream.
     20282
     20283  Tag ID   Tag Name                             Writable
     20284  ------   --------                             --------
     20285  0x0000   Identification                       no
     20286  0x0003   LanguageCode                         no
     20287  0x0005   DocFlags                             no
     20288    9.1    System                               no
     20289    9.2    Word97                               no
     20290
     20291=head3 FlashPix DocTable Tags
     20292
     20293Tags extracted from the Microsoft Word document table.
     20294
     20295  Tag Name                                      Writable
     20296  --------                                      --------
     20297  CommentBy                                     no
     20298  DOP                                           FlashPix DOP
     20299  LastSavedBy                                   no
     20300  ModifyDate                                    no
     20301
     20302=head3 FlashPix DOP Tags
     20303
     20304Microsoft office document properties.
     20305
     20306  Index1   Tag Name                             Writable
     20307  ------   --------                             --------
     20308     20    CreateDate                           no
     20309     24    ModifyDate                           no
     20310     28    LastPrinted                          no
     20311     32    RevisionNumber                       no
     20312     34    TotalEditTime                        no
     20313     38    Words                                no
     20314     42    Characters                           no
     20315     46    Pages                                no
     20316     48    Paragraphs                           no
     20317     56    Lines                                no
    1091920318
    1092020319=head2 MPF Tags
    1092120320
    1092220321These tags are part of the CIPA Multi-Picture Format specification, and are
    10923 found in the APP2 "MPF" segment of JPEG images.  See
    10924 L<http://www.cipa.jp/english/hyoujunka/kikaku/pdf/DC-007_E.pdf> for the
    10925 official specification.
     20322found in the APP2 "MPF" segment of JPEG images.  MPImage data referenced
     20323from this segment is stored as a JPEG trailer.  The MPF tags are not
     20324writable, however the MPF segment may be deleted as a group (with "MPF:All")
     20325but then the JPEG trailer should also be deleted (with "Trailer:All").  See
     20326L<https://web.archive.org/web/20190713230858/http://www.cipa.jp/std/documents/e/DC-007_E.pdf>
     20327for the official specification.
    1092620328
    1092720329  Tag ID   Tag Name                             Writable
    1092820330  ------   --------                             --------
    10929   0xb000   MPFVersion                           N
    10930   0xb001   NumberOfImages                       N
     20331  0xb000   MPFVersion                           no
     20332  0xb001   NumberOfImages                       no
    1093120333  0xb002   MPImageList                          MPF MPImage
    10932   0xb003   ImageUIDList                         N
    10933   0xb004   TotalFrames                          N
    10934   0xb101   MPIndividualNum                      N
    10935   0xb201   PanOrientation                       N
    10936   0xb202   PanOverlapH                          N
    10937   0xb203   PanOverlapV                          N
    10938   0xb204   BaseViewpointNum                     N
    10939   0xb205   ConvergenceAngle                     N
    10940   0xb206   BaselineLength                       N
    10941   0xb207   VerticalDivergence                   N
    10942   0xb208   AxisDistanceX                        N
    10943   0xb209   AxisDistanceY                        N
    10944   0xb20a   AxisDistanceZ                        N
    10945   0xb20b   YawAngle                             N
    10946   0xb20c   PitchAngle                           N
    10947   0xb20d   RollAngle                            N
     20334  0xb003   ImageUIDList                         no
     20335  0xb004   TotalFrames                          no
     20336  0xb101   MPIndividualNum                      no
     20337  0xb201   PanOrientation                       no
     20338  0xb202   PanOverlapH                          no
     20339  0xb203   PanOverlapV                          no
     20340  0xb204   BaseViewpointNum                     no
     20341  0xb205   ConvergenceAngle                     no
     20342  0xb206   BaselineLength                       no
     20343  0xb207   VerticalDivergence                   no
     20344  0xb208   AxisDistanceX                        no
     20345  0xb209   AxisDistanceY                        no
     20346  0xb20a   AxisDistanceZ                        no
     20347  0xb20b   YawAngle                             no
     20348  0xb20c   PitchAngle                           no
     20349  0xb20d   RollAngle                            no
    1094820350
    1094920351=head3 MPF MPImage Tags
     
    1095420356embedded images.
    1095520357
     20358  Index1   Tag Name                             Writable
     20359  ------   --------                             --------
     20360    0.1    MPImageFlags                         no
     20361    0.2    MPImageFormat                        no
     20362    0.3    MPImageType                          no
     20363      4    MPImageLength                        no
     20364      8    MPImageStart                         no
     20365     12    DependentImage1EntryNumber           no
     20366     14    DependentImage2EntryNumber           no
     20367
     20368=head2 Stim Tags
     20369
     20370These tags are part of the CIPA Stereo Still Image specification, and are
     20371found in the APP3 "Stim" segment of JPEG images.  See
     20372L<https://web.archive.org/web/20190718152459/http://www.cipa.jp/std/documents/e/DC-006_E.pdf>
     20373for the official specification.
     20374
     20375  Tag ID   Tag Name                             Writable
     20376  ------   --------                             --------
     20377  0x0000   StimVersion                          no
     20378  0x0001   ApplicationData                      no
     20379  0x0002   ImageArrangement                     no
     20380  0x0003   ImageRotation                        no
     20381  0x0004   ScalingFactor                        no
     20382  0x0005   CropXSize                            no
     20383  0x0006   CropYSize                            no
     20384  0x0007   CropX                                Stim CropX
     20385  0x0008   CropY                                Stim CropY
     20386  0x0009   ViewType                             no
     20387  0x000a   RepresentativeImage                  no
     20388  0x000b   ConvergenceBaseImage                 no
     20389  0x000c   AssumedDisplaySize                   no
     20390  0x000d   AssumedDistanceView                  no
     20391  0x000e   RepresentativeDisparityNear          no
     20392  0x000f   RepresentativeDisparityFar           no
     20393  0x0010   InitialDisplayEffect                 no
     20394  0x0011   ConvergenceDistance                  no
     20395  0x0012   CameraArrangementInterval            no
     20396  0x0013   ShootingCount                        no
     20397
     20398=head3 Stim CropX Tags
     20399
     20400  Index1   Tag Name                             Writable
     20401  ------   --------                             --------
     20402      0    CropXCommonOffset                    no
     20403      2    CropXViewpointNumber                 no
     20404      3    CropXOffset                          no
     20405      7    CropXViewpointNumber2                no
     20406      8    CropXOffset2                         no
     20407
     20408=head3 Stim CropY Tags
     20409
     20410  Index1   Tag Name                             Writable
     20411  ------   --------                             --------
     20412      0    CropYCommonOffset                    no
     20413      2    CropYViewpointNumber                 no
     20414      3    CropYOffset                          no
     20415      7    CropYViewpointNumber2                no
     20416      8    CropYOffset2                         no
     20417
     20418=head2 Scalado Tags
     20419
     20420Tags extracted from the JPEG APP4 "SCALADO" segment found in images from
     20421HTC, LG and Samsung phones.  (Presumably written by Scalado mobile software,
     20422L<http://www.scalado.com/>.)
     20423
     20424  Tag ID   Tag Name                             Writable
     20425  ------   --------                             --------
     20426  'HGHT'   PreviewImageHeight                   no
     20427  'QUAL'   PreviewQuality                       no
     20428  'SPMO'   DataLength?                          no
     20429  'WDTH'   PreviewImageWidth                    no
     20430
     20431=head2 GoPro Tags
     20432
     20433=head3 GoPro GPMF Tags
     20434
     20435Tags extracted from the GPMF box of GoPro MP4 videos, the APP6 "GoPro"
     20436segment of JPEG files, and from the "gpmd" timed metadata if the
     20437ExtractEmbedded (-ee) option is enabled.  Many more tags exist, but are
     20438currently unknown and extracted only with the Unknown (-u) option. Please
     20439let me know if you discover the meaning of any of these unknown tags. See
     20440L<https://github.com/gopro/gpmf-parser> for details about this format.
     20441
     20442  Tag ID   Tag Name                             Writable
     20443  ------   --------                             --------
     20444  'ACCL'   Accelerometer                        no
     20445  'ALLD'   AutoLowLightDuration                 no
     20446  'ATTD'   Attitude                             no
     20447  'ATTR'   AttitudeTarget                       no
     20448  'AUDO'   AudioSetting                         no
     20449  'BPOS'   Controller?                          no
     20450  'CASN'   CameraSerialNumber                   no
     20451  'CSEN'   CoyoteSense                          no
     20452  'CYTS'   CoyoteStatus                         no
     20453  'DEVC'   DeviceContainer                      GoPro GPMF
     20454  'DVID'   DeviceID?                            no
     20455  'DVNM'   DeviceName                           no
     20456  'DZOM'   DigitalZoom                          no
     20457  'EISA'   ElectronicImageStabilization         no
     20458  'EMPT'   Empty?                               no
     20459  'ESCS'   EscapeStatus?                        no
     20460  'FACE'   FaceDetected                         no
     20461  'FCNM'   FaceNumbers                          no
     20462  'FMWR'   FirmwareVersion                      no
     20463  'FWVS'   OtherFirmware                        no
     20464  'GLPI'   GPSPos                               GoPro GLPI
     20465  'GPRI'   GPSRaw?                              GoPro GPRI
     20466  'GPS5'   GPSInfo                              GoPro GPS5
     20467  'GPSF'   GPSMeasureMode                       no
     20468  'GPSP'   GPSHPositioningError                 no
     20469  'GPSU'   GPSDateTime                          no
     20470  'GYRO'   Gyroscope                            no
     20471  'ISOE'   ISOSpeeds                            no
     20472  'ISOG'   ImageSensorGain                      no
     20473  'KBAT'   BatteryStatus                        GoPro KBAT
     20474  'LNED'   LocalPositionNED                     no
     20475  'MAGN'   Magnetometer                         no
     20476  'MINF'   Model                                no
     20477  'OREN'   AutoRotation                         no
     20478  'PHDR'   HDRSetting                           no
     20479  'PIMN'   AutoISOMin                           no
     20480  'PIMX'   AutoISOMax                           no
     20481  'PRES'   PhotoResolution                      no
     20482  'PRTN'   ProTune                              no
     20483  'PTCL'   ColorMode                            no
     20484  'PTEV'   ExposureCompensation                 no
     20485  'PTSH'   Sharpness                            no
     20486  'PTWB'   WhiteBalance                         no
     20487  'RATE'   Rate                                 no
     20488  'RMRK'   Comments                             no
     20489  'SCAL'   ScaleFactor?                         no
     20490  'SCPR'   ScaledPressure                       no
     20491  'SHUT'   ExposureTimes                        no
     20492  'SIMU'   ScaledIMU                            no
     20493  'SIUN'   SIUnits?                             no
     20494  'STMP'   TimeStamp                            no
     20495  'STNM'   StreamName?                          no
     20496  'STRM'   NestedSignalStream                   GoPro GPMF
     20497  'SYST'   SystemTime                           no
     20498  'TMPC'   CameraTemperature                    no
     20499  'TSMP'   TotalSamples?                        no
     20500  'TYPE'   StructureType?                       no
     20501  'UNIT'   Units?                               no
     20502  'VERS'   MetadataVersion                      no
     20503  'VFOV'   FieldOfView                          no
     20504  'VFRH'   VisualFlightRulesHUD                 no
     20505  'WBAL'   ColorTemperatures                    no
     20506  'WRGB'   WhiteBalanceRGB                      no
     20507
     20508=head3 GoPro GLPI Tags
     20509
    1095620510   Index   Tag Name                             Writable
    1095720511   -----   --------                             --------
    10958     0.1    MPImageFlags                         N
    10959     0.2    MPImageFormat                        N
    10960     0.3    MPImageType                          N
    10961       4    MPImageLength                        N
    10962       8    MPImageStart                         N
    10963      12    DependentImage1EntryNumber           N
    10964      14    DependentImage2EntryNumber           N
    10965 
    10966 =head2 Stim Tags
    10967 
    10968 These tags are part of the CIPA Stereo Still Image specification, and are
    10969 found in the APP3 "Stim" segment of JPEG images.  See
    10970 L<http://www.cipa.jp/english/hyoujunka/kikaku/pdf/DC-006_E.pdf> for the
    10971 official specification.
    10972 
    10973   Tag ID   Tag Name                             Writable
    10974   ------   --------                             --------
    10975   0x0000   StimVersion                          N
    10976   0x0001   ApplicationData                      N
    10977   0x0002   ImageArrangement                     N
    10978   0x0003   ImageRotation                        N
    10979   0x0004   ScalingFactor                        N
    10980   0x0005   CropXSize                            N
    10981   0x0006   CropYSize                            N
    10982   0x0007   CropX                                Stim CropX
    10983   0x0008   CropY                                Stim CropY
    10984   0x0009   ViewType                             N
    10985   0x000a   RepresentativeImage                  N
    10986   0x000b   ConvergenceBaseImage                 N
    10987   0x000c   AssumedDisplaySize                   N
    10988   0x000d   AssumedDistanceView                  N
    10989   0x000e   RepresentativeDisparityNear          N
    10990   0x000f   RepresentativeDisparityFar           N
    10991   0x0010   InitialDisplayEffect                 N
    10992   0x0011   ConvergenceDistance                  N
    10993   0x0012   CameraArrangementInterval            N
    10994   0x0013   ShootingCount                        N
    10995 
    10996 =head3 Stim CropX Tags
     20512      0    GPSDateTime                          no
     20513      1    GPSLatitude                          no
     20514      2    GPSLongitude                         no
     20515      3    GPSAltitude                          no
     20516      5    GPSSpeedX                            no
     20517      6    GPSSpeedY                            no
     20518      7    GPSSpeedZ                            no
     20519      8    GPSTrack                             no
     20520
     20521=head3 GoPro GPRI Tags
    1099720522
    1099820523   Index   Tag Name                             Writable
    1099920524   -----   --------                             --------
    11000       0    CropXCommonOffset                    N
    11001       2    CropXViewpointNumber                 N
    11002       3    CropXOffset                          N
    11003       7    CropXViewpointNumber2                N
    11004       8    CropXOffset2                         N
    11005 
    11006 =head3 Stim CropY Tags
     20525      0    GPSDateTimeRaw                       no
     20526      1    GPSLatitudeRaw                       no
     20527      2    GPSLongitudeRaw                      no
     20528      3    GPSAltitudeRaw                       no
     20529      6    GPSSpeedRaw                          no
     20530      7    GPSTrackRaw                          no
     20531
     20532=head3 GoPro GPS5 Tags
    1100720533
    1100820534   Index   Tag Name                             Writable
    1100920535   -----   --------                             --------
    11010       0    CropYCommonOffset                    N
    11011       2    CropYViewpointNumber                 N
    11012       3    CropYOffset                          N
    11013       7    CropYViewpointNumber2                N
    11014       8    CropYOffset2                         N
     20536      0    GPSLatitude                          no
     20537      1    GPSLongitude                         no
     20538      2    GPSAltitude                          no
     20539      3    GPSSpeed                             no
     20540      4    GPSSpeed3D                           no
     20541
     20542=head3 GoPro KBAT Tags
     20543
     20544Battery status information found in GoPro Karma videos.
     20545
     20546   Index   Tag Name                             Writable
     20547   -----   --------                             --------
     20548      0    BatteryCurrent                       no
     20549      1    BatteryCapacity                      no
     20550      3    BatteryTemperature                   no
     20551      4    BatteryVoltage1                      no
     20552      5    BatteryVoltage2                      no
     20553      6    BatteryVoltage3                      no
     20554      7    BatteryVoltage4                      no
     20555      8    BatteryTime                          no
     20556     14    BatteryLevel                         no
     20557
     20558=head3 GoPro fdsc Tags
     20559
     20560Tags extracted from the MP4 "fdsc" timed metadata when the ExtractEmbedded
     20561(-ee) option is used.
     20562
     20563  Index1   Tag Name                             Writable
     20564  ------   --------                             --------
     20565      8    FirmwareVersion                      no
     20566     23    SerialNumber                         no
     20567     87    OtherSerialNumber                    no
     20568    102    Model                                no
     20569
     20570=head2 Qualcomm Tags
     20571
     20572The tags below have been observed in the JPEG APP7 "Qualcomm Camera
     20573Attributes" segment written by some cameras such as the HP iPAQ Voice
     20574Messenger.  ExifTool will extract any information found from this segment,
     20575even if it is not listed in this table.
     20576
     20577  Tag Name                                      Writable
     20578  --------                                      --------
     20579  AECAggressiveness                             no
     20580  AECCurrentExpIndex                            no
     20581  AECCurrentSensorLuma                          no
     20582  AECEnable                                     no
     20583  AECExposureIndexAdjStep                       no
     20584  AECHighLumaRegionCount                        no
     20585  AECHighLumaRegionThreshold                    no
     20586  AECIndoorIdx                                  no
     20587  AECLumaTarget                                 no
     20588  AECLumaTolerance                              no
     20589  AECMode                                       no
     20590  AECOdoorIdx                                   no
     20591  AECOutdoorBrightDiscarded                     no
     20592  AECOutdoorBrightEnable                        no
     20593  AECOutdoorBrightReduction                     no
     20594  AECOutdoorBrightThresholdHI                   no
     20595  AECOutdoorBrightThresholdLO                   no
     20596  AECOutdoorGammaIndex                          no
     20597  AECSnapshotDigitalGain                        no
     20598  AECSnapshotExposureTimeMs                     no
     20599  AECSnapshotLineCount                          no
     20600  AECSnapshotSensorGain                         no
     20601  AECVfeLuma                                    no
     20602  AFBoundary                                    no
     20603  AFCollectEndStat                              no
     20604  AFEnable                                      no
     20605  AFFarEnd                                      no
     20606  AFFineSrchPoints                              no
     20607  AFFineStep                                    no
     20608  AFFocusTime                                   no
     20609  AFGrossStep                                   no
     20610  AFMode                                        no
     20611  AFNearEnd                                     no
     20612  AFPosDefMacro                                 no
     20613  AFPosDefNorm                                  no
     20614  AFPosition                                    no
     20615  AFProcess                                     no
     20616  AFREnable                                     no
     20617  AFRFaster0ExpMod                              no
     20618  AFRFaster0Trigger                             no
     20619  AFRFaster1ExpMod                              no
     20620  AFRFaster1Trigger                             no
     20621  AFRFaster2ExpMod                              no
     20622  AFRFaster2Trigger                             no
     20623  AFRFaster3ExpMod                              no
     20624  AFRFaster3Trigger                             no
     20625  AFRFaster4ExpMod                              no
     20626  AFRFaster4Trigger                             no
     20627  AFRPossibleFrameCnt                           no
     20628  AFRSlower0ExpMod                              no
     20629  AFRSlower0Trigger                             no
     20630  AFRSlower1ExpMod                              no
     20631  AFRSlower1Trigger                             no
     20632  AFRSlower2ExpMod                              no
     20633  AFRSlower2Trigger                             no
     20634  AFRSlower3ExpMod                              no
     20635  AFRSlower3Trigger                             no
     20636  AFRSlower4ExpMod                              no
     20637  AFRSlower4Trigger                             no
     20638  AFResetLensAfterSnap                          no
     20639  AFStepsNearFar                                no
     20640  AFStepsNearInfinity                           no
     20641  AFTestMode                                    no
     20642  AFTracePositions00                            no
     20643  AFTracePositions01                            no
     20644  AFTracePositions02                            no
     20645  AFTracePositions03                            no
     20646  AFTracePositions04                            no
     20647  AFTracePositions05                            no
     20648  AFTracePositions06                            no
     20649  AFTracePositions07                            no
     20650  AFTracePositions08                            no
     20651  AFTracePositions09                            no
     20652  AFTracePositions10                            no
     20653  AFTracePositions11                            no
     20654  AFTracePositions12                            no
     20655  AFTracePositions13                            no
     20656  AFTracePositions14                            no
     20657  AFTracePositions15                            no
     20658  AFTracePositions16                            no
     20659  AFTracePositions17                            no
     20660  AFTracePositions18                            no
     20661  AFTracePositions19                            no
     20662  AFTracePositions20                            no
     20663  AFTracePositions21                            no
     20664  AFTracePositions22                            no
     20665  AFTracePositions23                            no
     20666  AFTracePositions24                            no
     20667  AFTracePositions25                            no
     20668  AFTracePositions26                            no
     20669  AFTracePositions27                            no
     20670  AFTracePositions28                            no
     20671  AFTracePositions29                            no
     20672  AFTracePositions30                            no
     20673  AFTracePositions31                            no
     20674  AFTracePositions32                            no
     20675  AFTracePositions33                            no
     20676  AFTracePositions34                            no
     20677  AFTracePositions35                            no
     20678  AFTracePositions36                            no
     20679  AFTracePositions37                            no
     20680  AFTracePositions38                            no
     20681  AFTracePositions39                            no
     20682  AFTracePositions40                            no
     20683  AFTracePositions41                            no
     20684  AFTracePositions42                            no
     20685  AFTracePositions43                            no
     20686  AFTracePositions44                            no
     20687  AFTracePositions45                            no
     20688  AFTracePositions46                            no
     20689  AFTracePositions47                            no
     20690  AFTracePositions48                            no
     20691  AFTracePositions49                            no
     20692  AFTraceStats00                                no
     20693  AFTraceStats01                                no
     20694  AFTraceStats02                                no
     20695  AFTraceStats03                                no
     20696  AFTraceStats04                                no
     20697  AFTraceStats05                                no
     20698  AFTraceStats06                                no
     20699  AFTraceStats07                                no
     20700  AFTraceStats08                                no
     20701  AFTraceStats09                                no
     20702  AFTraceStats10                                no
     20703  AFTraceStats11                                no
     20704  AFTraceStats12                                no
     20705  AFTraceStats13                                no
     20706  AFTraceStats14                                no
     20707  AFTraceStats15                                no
     20708  AFTraceStats16                                no
     20709  AFTraceStats17                                no
     20710  AFTraceStats18                                no
     20711  AFTraceStats19                                no
     20712  AFTraceStats20                                no
     20713  AFTraceStats21                                no
     20714  AFTraceStats22                                no
     20715  AFTraceStats23                                no
     20716  AFTraceStats24                                no
     20717  AFTraceStats25                                no
     20718  AFTraceStats26                                no
     20719  AFTraceStats27                                no
     20720  AFTraceStats28                                no
     20721  AFTraceStats29                                no
     20722  AFTraceStats30                                no
     20723  AFTraceStats31                                no
     20724  AFTraceStats32                                no
     20725  AFTraceStats33                                no
     20726  AFTraceStats34                                no
     20727  AFTraceStats35                                no
     20728  AFTraceStats36                                no
     20729  AFTraceStats37                                no
     20730  AFTraceStats38                                no
     20731  AFTraceStats39                                no
     20732  AFTraceStats40                                no
     20733  AFTraceStats41                                no
     20734  AFTraceStats42                                no
     20735  AFTraceStats43                                no
     20736  AFTraceStats44                                no
     20737  AFTraceStats45                                no
     20738  AFTraceStats46                                no
     20739  AFTraceStats47                                no
     20740  AFTraceStats48                                no
     20741  AFTraceStats49                                no
     20742  AFUndershootProtect                           no
     20743  AFVfeHorzOffset                               no
     20744  AFVfeHorzWidth                                no
     20745  AFVfeMetricMax                                no
     20746  AFVfeVertHeight                               no
     20747  AFVfeVertOffset                               no
     20748  ASF3EdgeDetect                                no
     20749  ASF3EdgeFilterA11                             no
     20750  ASF3EdgeFilterA12                             no
     20751  ASF3EdgeFilterA13                             no
     20752  ASF3EdgeFilterA21                             no
     20753  ASF3EdgeFilterA22                             no
     20754  ASF3EdgeFilterA23                             no
     20755  ASF3EdgeFilterA31                             no
     20756  ASF3EdgeFilterA32                             no
     20757  ASF3EdgeFilterA33                             no
     20758  ASF3Enable                                    no
     20759  ASF3LowerThreshold                            no
     20760  ASF3NoiseFilterA11                            no
     20761  ASF3NoiseFilterA12                            no
     20762  ASF3NoiseFilterA13                            no
     20763  ASF3NoiseFilterA21                            no
     20764  ASF3NoiseFilterA22                            no
     20765  ASF3NoiseFilterA23                            no
     20766  ASF3NoiseFilterA31                            no
     20767  ASF3NoiseFilterA32                            no
     20768  ASF3NoiseFilterA33                            no
     20769  ASF3UpperThreshold                            no
     20770  ASF5BrtLoThres                                no
     20771  ASF5BrtShrpDegF1                              no
     20772  ASF5BrtShrpDegF2                              no
     20773  ASF5BrtSmthPercent                            no
     20774  ASF5BrtUpThres                                no
     20775  ASF5Enable                                    no
     20776  ASF5ExposureIndex1                            no
     20777  ASF5ExposureIndex2                            no
     20778  ASF5Filter1A11                                no
     20779  ASF5Filter1A12                                no
     20780  ASF5Filter1A13                                no
     20781  ASF5Filter1A14                                no
     20782  ASF5Filter1A15                                no
     20783  ASF5Filter1A21                                no
     20784  ASF5Filter1A22                                no
     20785  ASF5Filter1A23                                no
     20786  ASF5Filter1A24                                no
     20787  ASF5Filter1A25                                no
     20788  ASF5Filter1A31                                no
     20789  ASF5Filter1A32                                no
     20790  ASF5Filter1A33                                no
     20791  ASF5Filter1A34                                no
     20792  ASF5Filter1A35                                no
     20793  ASF5Filter1A41                                no
     20794  ASF5Filter1A42                                no
     20795  ASF5Filter1A43                                no
     20796  ASF5Filter1A44                                no
     20797  ASF5Filter1A45                                no
     20798  ASF5Filter1A51                                no
     20799  ASF5Filter1A52                                no
     20800  ASF5Filter1A53                                no
     20801  ASF5Filter1A54                                no
     20802  ASF5Filter1A55                                no
     20803  ASF5Filter2A11                                no
     20804  ASF5Filter2A12                                no
     20805  ASF5Filter2A13                                no
     20806  ASF5Filter2A14                                no
     20807  ASF5Filter2A15                                no
     20808  ASF5Filter2A21                                no
     20809  ASF5Filter2A22                                no
     20810  ASF5Filter2A23                                no
     20811  ASF5Filter2A24                                no
     20812  ASF5Filter2A25                                no
     20813  ASF5Filter2A31                                no
     20814  ASF5Filter2A32                                no
     20815  ASF5Filter2A33                                no
     20816  ASF5Filter2A34                                no
     20817  ASF5Filter2A35                                no
     20818  ASF5Filter2A41                                no
     20819  ASF5Filter2A42                                no
     20820  ASF5Filter2A43                                no
     20821  ASF5Filter2A44                                no
     20822  ASF5Filter2A45                                no
     20823  ASF5Filter2A51                                no
     20824  ASF5Filter2A52                                no
     20825  ASF5Filter2A53                                no
     20826  ASF5Filter2A54                                no
     20827  ASF5Filter2A55                                no
     20828  ASF5FilterMode                                no
     20829  ASF5LowLoThres                                no
     20830  ASF5LowShrpDegF1                              no
     20831  ASF5LowShrpDegF2                              no
     20832  ASF5LowSmthPrcnt                              no
     20833  ASF5LowUpThres                                no
     20834  ASF5LumaFilter00                              no
     20835  ASF5LumaFilter01                              no
     20836  ASF5LumaFilter02                              no
     20837  ASF5LumaFilter03                              no
     20838  ASF5LumaFilter04                              no
     20839  ASF5LumaFilter05                              no
     20840  ASF5LumaFilter06                              no
     20841  ASF5LumaFilter07                              no
     20842  ASF5LumaFilter08                              no
     20843  ASF5MaxExposureIndex                          no
     20844  ASF5NrmLoThres                                no
     20845  ASF5NrmShrpDegF1                              no
     20846  ASF5NrmShrpDegF2                              no
     20847  ASF5NrmSmthPrcnt                              no
     20848  ASF5NrmUpThres                                no
     20849  ASF5NrmizeFactor1                             no
     20850  ASF5NrmizeFactor2                             no
     20851  AWBAggressiveness                             no
     20852  AWBAgwGridDist2Thresh                         no
     20853  AWBAlgorithm                                  no
     20854  AWBAveBgRatio                                 no
     20855  AWBAveRgRatio                                 no
     20856  AWBBlueGainAdjRef1                            no
     20857  AWBBlueGainAdjRef2                            no
     20858  AWBBlueGainAdjRef3                            no
     20859  AWBBlueGainAdjRef4                            no
     20860  AWBBlueGainAdjRef5                            no
     20861  AWBBlueGainAdjRef6                            no
     20862  AWBBlueGainAdjRef7                            no
     20863  AWBBlueGainAdjRef8                            no
     20864  AWBBlueGainRef1                               no
     20865  AWBBlueGainRef2                               no
     20866  AWBBlueGainRef3                               no
     20867  AWBBlueGainRef4                               no
     20868  AWBBlueGainRef5                               no
     20869  AWBBlueGainRef6                               no
     20870  AWBBlueGainRef7                               no
     20871  AWBBlueGainRef8                               no
     20872  AWBCcBias                                     no
     20873  AWBCompactClusterR2                           no
     20874  AWBEnable                                     no
     20875  AWBGreenOffsetBg                              no
     20876  AWBGreenOffsetRg                              no
     20877  AWBIndoorSampleInfluence                      no
     20878  AWBLoVfeC1                                    no
     20879  AWBLoVfeC2                                    no
     20880  AWBLoVfeC3                                    no
     20881  AWBLoVfeC4                                    no
     20882  AWBLoVfeM1                                    no
     20883  AWBLoVfeM2                                    no
     20884  AWBLoVfeM3                                    no
     20885  AWBLoVfeM4                                    no
     20886  AWBLoVfeMaxY                                  no
     20887  AWBLoVfeMinY                                  no
     20888  AWBLowLigColCorEna                            no
     20889  AWBMaxBGain                                   no
     20890  AWBMaxGGain                                   no
     20891  AWBMaxRGain                                   no
     20892  AWBMinBGain                                   no
     20893  AWBMinGGain                                   no
     20894  AWBMinRGain                                   no
     20895  AWBNormVfeC1                                  no
     20896  AWBNormVfeC2                                  no
     20897  AWBNormVfeC3                                  no
     20898  AWBNormVfeC4                                  no
     20899  AWBNormVfeM1                                  no
     20900  AWBNormVfeM2                                  no
     20901  AWBNormVfeM3                                  no
     20902  AWBNormVfeM4                                  no
     20903  AWBNormVfeMaxY                                no
     20904  AWBNormVfeMinY                                no
     20905  AWBOudorVfeC1                                 no
     20906  AWBOudorVfeC2                                 no
     20907  AWBOudorVfeC3                                 no
     20908  AWBOudorVfeC4                                 no
     20909  AWBOudorVfeM1                                 no
     20910  AWBOudorVfeM2                                 no
     20911  AWBOudorVfeM3                                 no
     20912  AWBOudorVfeM4                                 no
     20913  AWBOudorVfeMaxY                               no
     20914  AWBOudorVfeMinY                               no
     20915  AWBOutdoorSampleInfluence                     no
     20916  AWBPrevWbBgain                                no
     20917  AWBPrevWbGgain                                no
     20918  AWBPrevWbRgain                                no
     20919  AWBRedGainAdjRef1                             no
     20920  AWBRedGainAdjRef2                             no
     20921  AWBRedGainAdjRef3                             no
     20922  AWBRedGainAdjRef4                             no
     20923  AWBRedGainAdjRef5                             no
     20924  AWBRedGainAdjRef6                             no
     20925  AWBRedGainAdjRef7                             no
     20926  AWBRedGainAdjRef8                             no
     20927  AWBRedGainRef1                                no
     20928  AWBRedGainRef2                                no
     20929  AWBRedGainRef3                                no
     20930  AWBRedGainRef4                                no
     20931  AWBRedGainRef5                                no
     20932  AWBRedGainRef6                                no
     20933  AWBRedGainRef7                                no
     20934  AWBRedGainRef8                                no
     20935  AWBSampleDecision                             no
     20936  AWBSnapshotBGain                              no
     20937  AWBSnapshotRGain                              no
     20938  AntiBadingPixelClk                            no
     20939  AntiBadingPixelClkPerLine                     no
     20940  AntibandingEnable                             no
     20941  BlckLvlEvenCols                               no
     20942  BlckLvlOddCols                                no
     20943  CamMclkHz                                     no
     20944  ChroSupChroThres1                             no
     20945  ChroSupChroThres2                             no
     20946  ChroSupLumaThres1                             no
     20947  ChroSupLumaThres2                             no
     20948  ChroSupLumaThres3                             no
     20949  ChroSupLumaThres4                             no
     20950  ChromSupress                                  no
     20951  ClipToAfRato                                  no
     20952  CurrResol                                     no
     20953  DayltConvChrmA_M                              no
     20954  DayltConvChrmA_P                              no
     20955  DayltConvChrmB_M                              no
     20956  DayltConvChrmB_P                              no
     20957  DayltConvChrmC_M                              no
     20958  DayltConvChrmC_P                              no
     20959  DayltConvChrmD_M                              no
     20960  DayltConvChrmD_P                              no
     20961  DayltConvChrmKCb                              no
     20962  DayltConvChrmKCr                              no
     20963  DayltConvLumaK                                no
     20964  DayltConvLumaV0                               no
     20965  DayltConvLumaV1                               no
     20966  DayltConvLumaV2                               no
     20967  DefConvChrmA_M                                no
     20968  DefConvChrmA_P                                no
     20969  DefConvChrmB_M                                no
     20970  DefConvChrmB_P                                no
     20971  DefConvChrmC_M                                no
     20972  DefConvChrmC_P                                no
     20973  DefConvChrmD_M                                no
     20974  DefConvChrmD_P                                no
     20975  DefConvChrmKCb                                no
     20976  DefConvChrmKCr                                no
     20977  DefConvLumaK                                  no
     20978  DefConvLumaV0                                 no
     20979  DefConvLumaV1                                 no
     20980  DefConvLumaV2                                 no
     20981  DefCorC0                                      no
     20982  DefCorC1                                      no
     20983  DefCorC2                                      no
     20984  DefCorC3                                      no
     20985  DefCorC4                                      no
     20986  DefCorC5                                      no
     20987  DefCorC6                                      no
     20988  DefCorC7                                      no
     20989  DefCorC8                                      no
     20990  DefCorK0                                      no
     20991  DefCorK1                                      no
     20992  DefCorK2                                      no
     20993  DefLumaGammaMode                              no
     20994  DefRgbGammaMode                               no
     20995  DefectPixCorEnable                            no
     20996  DefectPixMaxThresh                            no
     20997  DefectPixMinThresh                            no
     20998  DiscardFrstFrm                                no
     20999  FrmSkipPttrn                                  no
     21000  GammaEnable                                   no
     21001  HJREnable                                     no
     21002  HJRMaxNumFrames                               no
     21003  HJROneToTwoOffset                             no
     21004  HJRTextureThreshold                           no
     21005  HJR_NReductionFlat                            no
     21006  HJR_NReductionTexture                         no
     21007  IncandConvChrmA_M                             no
     21008  IncandConvChrmA_P                             no
     21009  IncandConvChrmB_M                             no
     21010  IncandConvChrmB_P                             no
     21011  IncandConvChrmC_M                             no
     21012  IncandConvChrmC_P                             no
     21013  IncandConvChrmD_M                             no
     21014  IncandConvChrmD_P                             no
     21015  IncandConvChrmKCb                             no
     21016  IncandConvChrmKCr                             no
     21017  IncandConvLumaK                               no
     21018  IncandConvLumaV0                              no
     21019  IncandConvLumaV1                              no
     21020  IncandConvLumaV2                              no
     21021  LADetect                                      no
     21022  LAEnable                                      no
     21023  MaxPrviewFps                                  no
     21024  MaxVideoFps                                   no
     21025  NghtshtFps                                    no
     21026  NightshotMode                                 no
     21027  OutlierDistance                               no
     21028  PclkInvert                                    no
     21029  PrviewFps                                     no
     21030  PrviewResol                                   no
     21031  R2ABlueCtbl00                                 no
     21032  R2ABlueCtbl01                                 no
     21033  R2ABlueCtbl02                                 no
     21034  R2ABlueCtbl03                                 no
     21035  R2ABlueCtbl04                                 no
     21036  R2ABlueCtbl05                                 no
     21037  R2ABlueCtbl06                                 no
     21038  R2ABlueCtbl07                                 no
     21039  R2ABlueCtbl08                                 no
     21040  R2ABlueCtbl09                                 no
     21041  R2ABlueCtbl10                                 no
     21042  R2ABlueCtbl11                                 no
     21043  R2ABlueCtbl12                                 no
     21044  R2ABlueCtbl13                                 no
     21045  R2ABlueCtbl14                                 no
     21046  R2ABlueCtbl15                                 no
     21047  R2ABlueCtbl16                                 no
     21048  R2ABlueCtbl17                                 no
     21049  R2ABlueCtbl18                                 no
     21050  R2ABlueCtbl19                                 no
     21051  R2ABlueCtbl20                                 no
     21052  R2ABlueCtbl21                                 no
     21053  R2ABlueCtbl22                                 no
     21054  R2ABlueCtbl23                                 no
     21055  R2ABlueCtbl24                                 no
     21056  R2ABlueCtbl25                                 no
     21057  R2ABlueCtbl26                                 no
     21058  R2ABlueCtbl27                                 no
     21059  R2ABlueCtbl28                                 no
     21060  R2ABlueCtbl29                                 no
     21061  R2ABlueCtbl30                                 no
     21062  R2ABlueCtbl31                                 no
     21063  R2ABlueStbl00                                 no
     21064  R2ABlueStbl01                                 no
     21065  R2ABlueStbl02                                 no
     21066  R2ABlueStbl03                                 no
     21067  R2ABlueStbl04                                 no
     21068  R2ABlueStbl05                                 no
     21069  R2ABlueStbl06                                 no
     21070  R2ABlueStbl07                                 no
     21071  R2ABlueStbl08                                 no
     21072  R2ABlueStbl09                                 no
     21073  R2ABlueStbl10                                 no
     21074  R2ABlueStbl11                                 no
     21075  R2ABlueStbl12                                 no
     21076  R2ABlueStbl13                                 no
     21077  R2ABlueStbl14                                 no
     21078  R2ABlueStbl15                                 no
     21079  R2ABlueStbl16                                 no
     21080  R2ABlueStbl17                                 no
     21081  R2ABlueStbl18                                 no
     21082  R2ABlueStbl19                                 no
     21083  R2ABlueStbl20                                 no
     21084  R2ABlueStbl21                                 no
     21085  R2ABlueStbl22                                 no
     21086  R2ABlueStbl23                                 no
     21087  R2ABlueStbl24                                 no
     21088  R2ABlueStbl25                                 no
     21089  R2ABlueStbl26                                 no
     21090  R2ABlueStbl27                                 no
     21091  R2ABlueStbl28                                 no
     21092  R2ABlueStbl29                                 no
     21093  R2ABlueStbl30                                 no
     21094  R2ABlueStbl31                                 no
     21095  R2ACx                                         no
     21096  R2ACy                                         no
     21097  R2AGreenCtbl00                                no
     21098  R2AGreenCtbl01                                no
     21099  R2AGreenCtbl02                                no
     21100  R2AGreenCtbl03                                no
     21101  R2AGreenCtbl04                                no
     21102  R2AGreenCtbl05                                no
     21103  R2AGreenCtbl06                                no
     21104  R2AGreenCtbl07                                no
     21105  R2AGreenCtbl08                                no
     21106  R2AGreenCtbl09                                no
     21107  R2AGreenCtbl10                                no
     21108  R2AGreenCtbl11                                no
     21109  R2AGreenCtbl12                                no
     21110  R2AGreenCtbl13                                no
     21111  R2AGreenCtbl14                                no
     21112  R2AGreenCtbl15                                no
     21113  R2AGreenCtbl16                                no
     21114  R2AGreenCtbl17                                no
     21115  R2AGreenCtbl18                                no
     21116  R2AGreenCtbl19                                no
     21117  R2AGreenCtbl20                                no
     21118  R2AGreenCtbl21                                no
     21119  R2AGreenCtbl22                                no
     21120  R2AGreenCtbl23                                no
     21121  R2AGreenCtbl24                                no
     21122  R2AGreenCtbl25                                no
     21123  R2AGreenCtbl26                                no
     21124  R2AGreenCtbl27                                no
     21125  R2AGreenCtbl28                                no
     21126  R2AGreenCtbl29                                no
     21127  R2AGreenCtbl30                                no
     21128  R2AGreenCtbl31                                no
     21129  R2AGreenStbl00                                no
     21130  R2AGreenStbl01                                no
     21131  R2AGreenStbl02                                no
     21132  R2AGreenStbl03                                no
     21133  R2AGreenStbl04                                no
     21134  R2AGreenStbl05                                no
     21135  R2AGreenStbl06                                no
     21136  R2AGreenStbl07                                no
     21137  R2AGreenStbl08                                no
     21138  R2AGreenStbl09                                no
     21139  R2AGreenStbl10                                no
     21140  R2AGreenStbl11                                no
     21141  R2AGreenStbl12                                no
     21142  R2AGreenStbl13                                no
     21143  R2AGreenStbl14                                no
     21144  R2AGreenStbl15                                no
     21145  R2AGreenStbl16                                no
     21146  R2AGreenStbl17                                no
     21147  R2AGreenStbl18                                no
     21148  R2AGreenStbl19                                no
     21149  R2AGreenStbl20                                no
     21150  R2AGreenStbl21                                no
     21151  R2AGreenStbl22                                no
     21152  R2AGreenStbl23                                no
     21153  R2AGreenStbl24                                no
     21154  R2AGreenStbl25                                no
     21155  R2AGreenStbl26                                no
     21156  R2AGreenStbl27                                no
     21157  R2AGreenStbl28                                no
     21158  R2AGreenStbl29                                no
     21159  R2AGreenStbl30                                no
     21160  R2AGreenStbl31                                no
     21161  R2AHeight                                     no
     21162  R2AIntervals                                  no
     21163  R2ARedCtbl00                                  no
     21164  R2ARedCtbl01                                  no
     21165  R2ARedCtbl02                                  no
     21166  R2ARedCtbl03                                  no
     21167  R2ARedCtbl04                                  no
     21168  R2ARedCtbl05                                  no
     21169  R2ARedCtbl06                                  no
     21170  R2ARedCtbl07                                  no
     21171  R2ARedCtbl08                                  no
     21172  R2ARedCtbl09                                  no
     21173  R2ARedCtbl10                                  no
     21174  R2ARedCtbl11                                  no
     21175  R2ARedCtbl12                                  no
     21176  R2ARedCtbl13                                  no
     21177  R2ARedCtbl14                                  no
     21178  R2ARedCtbl15                                  no
     21179  R2ARedCtbl16                                  no
     21180  R2ARedCtbl17                                  no
     21181  R2ARedCtbl18                                  no
     21182  R2ARedCtbl19                                  no
     21183  R2ARedCtbl20                                  no
     21184  R2ARedCtbl21                                  no
     21185  R2ARedCtbl22                                  no
     21186  R2ARedCtbl23                                  no
     21187  R2ARedCtbl24                                  no
     21188  R2ARedCtbl25                                  no
     21189  R2ARedCtbl26                                  no
     21190  R2ARedCtbl27                                  no
     21191  R2ARedCtbl28                                  no
     21192  R2ARedCtbl29                                  no
     21193  R2ARedCtbl30                                  no
     21194  R2ARedCtbl31                                  no
     21195  R2ARedStbl00                                  no
     21196  R2ARedStbl01                                  no
     21197  R2ARedStbl02                                  no
     21198  R2ARedStbl03                                  no
     21199  R2ARedStbl04                                  no
     21200  R2ARedStbl05                                  no
     21201  R2ARedStbl06                                  no
     21202  R2ARedStbl07                                  no
     21203  R2ARedStbl08                                  no
     21204  R2ARedStbl09                                  no
     21205  R2ARedStbl10                                  no
     21206  R2ARedStbl11                                  no
     21207  R2ARedStbl12                                  no
     21208  R2ARedStbl13                                  no
     21209  R2ARedStbl14                                  no
     21210  R2ARedStbl15                                  no
     21211  R2ARedStbl16                                  no
     21212  R2ARedStbl17                                  no
     21213  R2ARedStbl18                                  no
     21214  R2ARedStbl19                                  no
     21215  R2ARedStbl20                                  no
     21216  R2ARedStbl21                                  no
     21217  R2ARedStbl22                                  no
     21218  R2ARedStbl23                                  no
     21219  R2ARedStbl24                                  no
     21220  R2ARedStbl25                                  no
     21221  R2ARedStbl26                                  no
     21222  R2ARedStbl27                                  no
     21223  R2ARedStbl28                                  no
     21224  R2ARedStbl29                                  no
     21225  R2ARedStbl30                                  no
     21226  R2ARedStbl31                                  no
     21227  R2ATbl00                                      no
     21228  R2ATbl01                                      no
     21229  R2ATbl02                                      no
     21230  R2ATbl03                                      no
     21231  R2ATbl04                                      no
     21232  R2ATbl05                                      no
     21233  R2ATbl06                                      no
     21234  R2ATbl07                                      no
     21235  R2ATbl08                                      no
     21236  R2ATbl09                                      no
     21237  R2ATbl10                                      no
     21238  R2ATbl11                                      no
     21239  R2ATbl12                                      no
     21240  R2ATbl13                                      no
     21241  R2ATbl14                                      no
     21242  R2ATbl15                                      no
     21243  R2ATbl16                                      no
     21244  R2ATbl17                                      no
     21245  R2ATbl18                                      no
     21246  R2ATbl19                                      no
     21247  R2ATbl20                                      no
     21248  R2ATbl21                                      no
     21249  R2ATbl22                                      no
     21250  R2ATbl23                                      no
     21251  R2ATbl24                                      no
     21252  R2ATbl25                                      no
     21253  R2ATbl26                                      no
     21254  R2ATbl27                                      no
     21255  R2ATbl28                                      no
     21256  R2ATbl29                                      no
     21257  R2ATbl30                                      no
     21258  R2ATbl31                                      no
     21259  R2AWidth                                      no
     21260  R2D65BlueCtbl00                               no
     21261  R2D65BlueCtbl01                               no
     21262  R2D65BlueCtbl02                               no
     21263  R2D65BlueCtbl03                               no
     21264  R2D65BlueCtbl04                               no
     21265  R2D65BlueCtbl05                               no
     21266  R2D65BlueCtbl06                               no
     21267  R2D65BlueCtbl07                               no
     21268  R2D65BlueCtbl08                               no
     21269  R2D65BlueCtbl09                               no
     21270  R2D65BlueCtbl10                               no
     21271  R2D65BlueCtbl11                               no
     21272  R2D65BlueCtbl12                               no
     21273  R2D65BlueCtbl13                               no
     21274  R2D65BlueCtbl14                               no
     21275  R2D65BlueCtbl15                               no
     21276  R2D65BlueCtbl16                               no
     21277  R2D65BlueCtbl17                               no
     21278  R2D65BlueCtbl18                               no
     21279  R2D65BlueCtbl19                               no
     21280  R2D65BlueCtbl20                               no
     21281  R2D65BlueCtbl21                               no
     21282  R2D65BlueCtbl22                               no
     21283  R2D65BlueCtbl23                               no
     21284  R2D65BlueCtbl24                               no
     21285  R2D65BlueCtbl25                               no
     21286  R2D65BlueCtbl26                               no
     21287  R2D65BlueCtbl27                               no
     21288  R2D65BlueCtbl28                               no
     21289  R2D65BlueCtbl29                               no
     21290  R2D65BlueCtbl30                               no
     21291  R2D65BlueCtbl31                               no
     21292  R2D65BlueStbl00                               no
     21293  R2D65BlueStbl01                               no
     21294  R2D65BlueStbl02                               no
     21295  R2D65BlueStbl03                               no
     21296  R2D65BlueStbl04                               no
     21297  R2D65BlueStbl05                               no
     21298  R2D65BlueStbl06                               no
     21299  R2D65BlueStbl07                               no
     21300  R2D65BlueStbl08                               no
     21301  R2D65BlueStbl09                               no
     21302  R2D65BlueStbl10                               no
     21303  R2D65BlueStbl11                               no
     21304  R2D65BlueStbl12                               no
     21305  R2D65BlueStbl13                               no
     21306  R2D65BlueStbl14                               no
     21307  R2D65BlueStbl15                               no
     21308  R2D65BlueStbl16                               no
     21309  R2D65BlueStbl17                               no
     21310  R2D65BlueStbl18                               no
     21311  R2D65BlueStbl19                               no
     21312  R2D65BlueStbl20                               no
     21313  R2D65BlueStbl21                               no
     21314  R2D65BlueStbl22                               no
     21315  R2D65BlueStbl23                               no
     21316  R2D65BlueStbl24                               no
     21317  R2D65BlueStbl25                               no
     21318  R2D65BlueStbl26                               no
     21319  R2D65BlueStbl27                               no
     21320  R2D65BlueStbl28                               no
     21321  R2D65BlueStbl29                               no
     21322  R2D65BlueStbl30                               no
     21323  R2D65BlueStbl31                               no
     21324  R2D65Cx                                       no
     21325  R2D65Cy                                       no
     21326  R2D65GreenCtbl00                              no
     21327  R2D65GreenCtbl01                              no
     21328  R2D65GreenCtbl02                              no
     21329  R2D65GreenCtbl03                              no
     21330  R2D65GreenCtbl04                              no
     21331  R2D65GreenCtbl05                              no
     21332  R2D65GreenCtbl06                              no
     21333  R2D65GreenCtbl07                              no
     21334  R2D65GreenCtbl08                              no
     21335  R2D65GreenCtbl09                              no
     21336  R2D65GreenCtbl10                              no
     21337  R2D65GreenCtbl11                              no
     21338  R2D65GreenCtbl12                              no
     21339  R2D65GreenCtbl13                              no
     21340  R2D65GreenCtbl14                              no
     21341  R2D65GreenCtbl15                              no
     21342  R2D65GreenCtbl16                              no
     21343  R2D65GreenCtbl17                              no
     21344  R2D65GreenCtbl18                              no
     21345  R2D65GreenCtbl19                              no
     21346  R2D65GreenCtbl20                              no
     21347  R2D65GreenCtbl21                              no
     21348  R2D65GreenCtbl22                              no
     21349  R2D65GreenCtbl23                              no
     21350  R2D65GreenCtbl24                              no
     21351  R2D65GreenCtbl25                              no
     21352  R2D65GreenCtbl26                              no
     21353  R2D65GreenCtbl27                              no
     21354  R2D65GreenCtbl28                              no
     21355  R2D65GreenCtbl29                              no
     21356  R2D65GreenCtbl30                              no
     21357  R2D65GreenCtbl31                              no
     21358  R2D65GreenStbl00                              no
     21359  R2D65GreenStbl01                              no
     21360  R2D65GreenStbl02                              no
     21361  R2D65GreenStbl03                              no
     21362  R2D65GreenStbl04                              no
     21363  R2D65GreenStbl05                              no
     21364  R2D65GreenStbl06                              no
     21365  R2D65GreenStbl07                              no
     21366  R2D65GreenStbl08                              no
     21367  R2D65GreenStbl09                              no
     21368  R2D65GreenStbl10                              no
     21369  R2D65GreenStbl11                              no
     21370  R2D65GreenStbl12                              no
     21371  R2D65GreenStbl13                              no
     21372  R2D65GreenStbl14                              no
     21373  R2D65GreenStbl15                              no
     21374  R2D65GreenStbl16                              no
     21375  R2D65GreenStbl17                              no
     21376  R2D65GreenStbl18                              no
     21377  R2D65GreenStbl19                              no
     21378  R2D65GreenStbl20                              no
     21379  R2D65GreenStbl21                              no
     21380  R2D65GreenStbl22                              no
     21381  R2D65GreenStbl23                              no
     21382  R2D65GreenStbl24                              no
     21383  R2D65GreenStbl25                              no
     21384  R2D65GreenStbl26                              no
     21385  R2D65GreenStbl27                              no
     21386  R2D65GreenStbl28                              no
     21387  R2D65GreenStbl29                              no
     21388  R2D65GreenStbl30                              no
     21389  R2D65GreenStbl31                              no
     21390  R2D65Height                                   no
     21391  R2D65Intervals                                no
     21392  R2D65RedCtbl00                                no
     21393  R2D65RedCtbl01                                no
     21394  R2D65RedCtbl02                                no
     21395  R2D65RedCtbl03                                no
     21396  R2D65RedCtbl04                                no
     21397  R2D65RedCtbl05                                no
     21398  R2D65RedCtbl06                                no
     21399  R2D65RedCtbl07                                no
     21400  R2D65RedCtbl08                                no
     21401  R2D65RedCtbl09                                no
     21402  R2D65RedCtbl10                                no
     21403  R2D65RedCtbl11                                no
     21404  R2D65RedCtbl12                                no
     21405  R2D65RedCtbl13                                no
     21406  R2D65RedCtbl14                                no
     21407  R2D65RedCtbl15                                no
     21408  R2D65RedCtbl16                                no
     21409  R2D65RedCtbl17                                no
     21410  R2D65RedCtbl18                                no
     21411  R2D65RedCtbl19                                no
     21412  R2D65RedCtbl20                                no
     21413  R2D65RedCtbl21                                no
     21414  R2D65RedCtbl22                                no
     21415  R2D65RedCtbl23                                no
     21416  R2D65RedCtbl24                                no
     21417  R2D65RedCtbl25                                no
     21418  R2D65RedCtbl26                                no
     21419  R2D65RedCtbl27                                no
     21420  R2D65RedCtbl28                                no
     21421  R2D65RedCtbl29                                no
     21422  R2D65RedCtbl30                                no
     21423  R2D65RedCtbl31                                no
     21424  R2D65RedStbl00                                no
     21425  R2D65RedStbl01                                no
     21426  R2D65RedStbl02                                no
     21427  R2D65RedStbl03                                no
     21428  R2D65RedStbl04                                no
     21429  R2D65RedStbl05                                no
     21430  R2D65RedStbl06                                no
     21431  R2D65RedStbl07                                no
     21432  R2D65RedStbl08                                no
     21433  R2D65RedStbl09                                no
     21434  R2D65RedStbl10                                no
     21435  R2D65RedStbl11                                no
     21436  R2D65RedStbl12                                no
     21437  R2D65RedStbl13                                no
     21438  R2D65RedStbl14                                no
     21439  R2D65RedStbl15                                no
     21440  R2D65RedStbl16                                no
     21441  R2D65RedStbl17                                no
     21442  R2D65RedStbl18                                no
     21443  R2D65RedStbl19                                no
     21444  R2D65RedStbl20                                no
     21445  R2D65RedStbl21                                no
     21446  R2D65RedStbl22                                no
     21447  R2D65RedStbl23                                no
     21448  R2D65RedStbl24                                no
     21449  R2D65RedStbl25                                no
     21450  R2D65RedStbl26                                no
     21451  R2D65RedStbl27                                no
     21452  R2D65RedStbl28                                no
     21453  R2D65RedStbl29                                no
     21454  R2D65RedStbl30                                no
     21455  R2D65RedStbl31                                no
     21456  R2D65Tbl00                                    no
     21457  R2D65Tbl01                                    no
     21458  R2D65Tbl02                                    no
     21459  R2D65Tbl03                                    no
     21460  R2D65Tbl04                                    no
     21461  R2D65Tbl05                                    no
     21462  R2D65Tbl06                                    no
     21463  R2D65Tbl07                                    no
     21464  R2D65Tbl08                                    no
     21465  R2D65Tbl09                                    no
     21466  R2D65Tbl10                                    no
     21467  R2D65Tbl11                                    no
     21468  R2D65Tbl12                                    no
     21469  R2D65Tbl13                                    no
     21470  R2D65Tbl14                                    no
     21471  R2D65Tbl15                                    no
     21472  R2D65Tbl16                                    no
     21473  R2D65Tbl17                                    no
     21474  R2D65Tbl18                                    no
     21475  R2D65Tbl19                                    no
     21476  R2D65Tbl20                                    no
     21477  R2D65Tbl21                                    no
     21478  R2D65Tbl22                                    no
     21479  R2D65Tbl23                                    no
     21480  R2D65Tbl24                                    no
     21481  R2D65Tbl25                                    no
     21482  R2D65Tbl26                                    no
     21483  R2D65Tbl27                                    no
     21484  R2D65Tbl28                                    no
     21485  R2D65Tbl29                                    no
     21486  R2D65Tbl30                                    no
     21487  R2D65Tbl31                                    no
     21488  R2D65Width                                    no
     21489  R2TL84BlueCtbl00                              no
     21490  R2TL84BlueCtbl01                              no
     21491  R2TL84BlueCtbl02                              no
     21492  R2TL84BlueCtbl03                              no
     21493  R2TL84BlueCtbl04                              no
     21494  R2TL84BlueCtbl05                              no
     21495  R2TL84BlueCtbl06                              no
     21496  R2TL84BlueCtbl07                              no
     21497  R2TL84BlueCtbl08                              no
     21498  R2TL84BlueCtbl09                              no
     21499  R2TL84BlueCtbl10                              no
     21500  R2TL84BlueCtbl11                              no
     21501  R2TL84BlueCtbl12                              no
     21502  R2TL84BlueCtbl13                              no
     21503  R2TL84BlueCtbl14                              no
     21504  R2TL84BlueCtbl15                              no
     21505  R2TL84BlueCtbl16                              no
     21506  R2TL84BlueCtbl17                              no
     21507  R2TL84BlueCtbl18                              no
     21508  R2TL84BlueCtbl19                              no
     21509  R2TL84BlueCtbl20                              no
     21510  R2TL84BlueCtbl21                              no
     21511  R2TL84BlueCtbl22                              no
     21512  R2TL84BlueCtbl23                              no
     21513  R2TL84BlueCtbl24                              no
     21514  R2TL84BlueCtbl25                              no
     21515  R2TL84BlueCtbl26                              no
     21516  R2TL84BlueCtbl27                              no
     21517  R2TL84BlueCtbl28                              no
     21518  R2TL84BlueCtbl29                              no
     21519  R2TL84BlueCtbl30                              no
     21520  R2TL84BlueCtbl31                              no
     21521  R2TL84BlueStbl00                              no
     21522  R2TL84BlueStbl01                              no
     21523  R2TL84BlueStbl02                              no
     21524  R2TL84BlueStbl03                              no
     21525  R2TL84BlueStbl04                              no
     21526  R2TL84BlueStbl05                              no
     21527  R2TL84BlueStbl06                              no
     21528  R2TL84BlueStbl07                              no
     21529  R2TL84BlueStbl08                              no
     21530  R2TL84BlueStbl09                              no
     21531  R2TL84BlueStbl10                              no
     21532  R2TL84BlueStbl11                              no
     21533  R2TL84BlueStbl12                              no
     21534  R2TL84BlueStbl13                              no
     21535  R2TL84BlueStbl14                              no
     21536  R2TL84BlueStbl15                              no
     21537  R2TL84BlueStbl16                              no
     21538  R2TL84BlueStbl17                              no
     21539  R2TL84BlueStbl18                              no
     21540  R2TL84BlueStbl19                              no
     21541  R2TL84BlueStbl20                              no
     21542  R2TL84BlueStbl21                              no
     21543  R2TL84BlueStbl22                              no
     21544  R2TL84BlueStbl23                              no
     21545  R2TL84BlueStbl24                              no
     21546  R2TL84BlueStbl25                              no
     21547  R2TL84BlueStbl26                              no
     21548  R2TL84BlueStbl27                              no
     21549  R2TL84BlueStbl28                              no
     21550  R2TL84BlueStbl29                              no
     21551  R2TL84BlueStbl30                              no
     21552  R2TL84BlueStbl31                              no
     21553  R2TL84Cx                                      no
     21554  R2TL84Cy                                      no
     21555  R2TL84GreenCtbl00                             no
     21556  R2TL84GreenCtbl01                             no
     21557  R2TL84GreenCtbl02                             no
     21558  R2TL84GreenCtbl03                             no
     21559  R2TL84GreenCtbl04                             no
     21560  R2TL84GreenCtbl05                             no
     21561  R2TL84GreenCtbl06                             no
     21562  R2TL84GreenCtbl07                             no
     21563  R2TL84GreenCtbl08                             no
     21564  R2TL84GreenCtbl09                             no
     21565  R2TL84GreenCtbl10                             no
     21566  R2TL84GreenCtbl11                             no
     21567  R2TL84GreenCtbl12                             no
     21568  R2TL84GreenCtbl13                             no
     21569  R2TL84GreenCtbl14                             no
     21570  R2TL84GreenCtbl15                             no
     21571  R2TL84GreenCtbl16                             no
     21572  R2TL84GreenCtbl17                             no
     21573  R2TL84GreenCtbl18                             no
     21574  R2TL84GreenCtbl19                             no
     21575  R2TL84GreenCtbl20                             no
     21576  R2TL84GreenCtbl21                             no
     21577  R2TL84GreenCtbl22                             no
     21578  R2TL84GreenCtbl23                             no
     21579  R2TL84GreenCtbl24                             no
     21580  R2TL84GreenCtbl25                             no
     21581  R2TL84GreenCtbl26                             no
     21582  R2TL84GreenCtbl27                             no
     21583  R2TL84GreenCtbl28                             no
     21584  R2TL84GreenCtbl29                             no
     21585  R2TL84GreenCtbl30                             no
     21586  R2TL84GreenCtbl31                             no
     21587  R2TL84GreenStbl00                             no
     21588  R2TL84GreenStbl01                             no
     21589  R2TL84GreenStbl02                             no
     21590  R2TL84GreenStbl03                             no
     21591  R2TL84GreenStbl04                             no
     21592  R2TL84GreenStbl05                             no
     21593  R2TL84GreenStbl06                             no
     21594  R2TL84GreenStbl07                             no
     21595  R2TL84GreenStbl08                             no
     21596  R2TL84GreenStbl09                             no
     21597  R2TL84GreenStbl10                             no
     21598  R2TL84GreenStbl11                             no
     21599  R2TL84GreenStbl12                             no
     21600  R2TL84GreenStbl13                             no
     21601  R2TL84GreenStbl14                             no
     21602  R2TL84GreenStbl15                             no
     21603  R2TL84GreenStbl16                             no
     21604  R2TL84GreenStbl17                             no
     21605  R2TL84GreenStbl18                             no
     21606  R2TL84GreenStbl19                             no
     21607  R2TL84GreenStbl20                             no
     21608  R2TL84GreenStbl21                             no
     21609  R2TL84GreenStbl22                             no
     21610  R2TL84GreenStbl23                             no
     21611  R2TL84GreenStbl24                             no
     21612  R2TL84GreenStbl25                             no
     21613  R2TL84GreenStbl26                             no
     21614  R2TL84GreenStbl27                             no
     21615  R2TL84GreenStbl28                             no
     21616  R2TL84GreenStbl29                             no
     21617  R2TL84GreenStbl30                             no
     21618  R2TL84GreenStbl31                             no
     21619  R2TL84Height                                  no
     21620  R2TL84Intervals                               no
     21621  R2TL84RedCtbl00                               no
     21622  R2TL84RedCtbl01                               no
     21623  R2TL84RedCtbl02                               no
     21624  R2TL84RedCtbl03                               no
     21625  R2TL84RedCtbl04                               no
     21626  R2TL84RedCtbl05                               no
     21627  R2TL84RedCtbl06                               no
     21628  R2TL84RedCtbl07                               no
     21629  R2TL84RedCtbl08                               no
     21630  R2TL84RedCtbl09                               no
     21631  R2TL84RedCtbl10                               no
     21632  R2TL84RedCtbl11                               no
     21633  R2TL84RedCtbl12                               no
     21634  R2TL84RedCtbl13                               no
     21635  R2TL84RedCtbl14                               no
     21636  R2TL84RedCtbl15                               no
     21637  R2TL84RedCtbl16                               no
     21638  R2TL84RedCtbl17                               no
     21639  R2TL84RedCtbl18                               no
     21640  R2TL84RedCtbl19                               no
     21641  R2TL84RedCtbl20                               no
     21642  R2TL84RedCtbl21                               no
     21643  R2TL84RedCtbl22                               no
     21644  R2TL84RedCtbl23                               no
     21645  R2TL84RedCtbl24                               no
     21646  R2TL84RedCtbl25                               no
     21647  R2TL84RedCtbl26                               no
     21648  R2TL84RedCtbl27                               no
     21649  R2TL84RedCtbl28                               no
     21650  R2TL84RedCtbl29                               no
     21651  R2TL84RedCtbl30                               no
     21652  R2TL84RedCtbl31                               no
     21653  R2TL84RedStbl00                               no
     21654  R2TL84RedStbl01                               no
     21655  R2TL84RedStbl02                               no
     21656  R2TL84RedStbl03                               no
     21657  R2TL84RedStbl04                               no
     21658  R2TL84RedStbl05                               no
     21659  R2TL84RedStbl06                               no
     21660  R2TL84RedStbl07                               no
     21661  R2TL84RedStbl08                               no
     21662  R2TL84RedStbl09                               no
     21663  R2TL84RedStbl10                               no
     21664  R2TL84RedStbl11                               no
     21665  R2TL84RedStbl12                               no
     21666  R2TL84RedStbl13                               no
     21667  R2TL84RedStbl14                               no
     21668  R2TL84RedStbl15                               no
     21669  R2TL84RedStbl16                               no
     21670  R2TL84RedStbl17                               no
     21671  R2TL84RedStbl18                               no
     21672  R2TL84RedStbl19                               no
     21673  R2TL84RedStbl20                               no
     21674  R2TL84RedStbl21                               no
     21675  R2TL84RedStbl22                               no
     21676  R2TL84RedStbl23                               no
     21677  R2TL84RedStbl24                               no
     21678  R2TL84RedStbl25                               no
     21679  R2TL84RedStbl26                               no
     21680  R2TL84RedStbl27                               no
     21681  R2TL84RedStbl28                               no
     21682  R2TL84RedStbl29                               no
     21683  R2TL84RedStbl30                               no
     21684  R2TL84RedStbl31                               no
     21685  R2TL84Tbl00                                   no
     21686  R2TL84Tbl01                                   no
     21687  R2TL84Tbl02                                   no
     21688  R2TL84Tbl03                                   no
     21689  R2TL84Tbl04                                   no
     21690  R2TL84Tbl05                                   no
     21691  R2TL84Tbl06                                   no
     21692  R2TL84Tbl07                                   no
     21693  R2TL84Tbl08                                   no
     21694  R2TL84Tbl09                                   no
     21695  R2TL84Tbl10                                   no
     21696  R2TL84Tbl11                                   no
     21697  R2TL84Tbl12                                   no
     21698  R2TL84Tbl13                                   no
     21699  R2TL84Tbl14                                   no
     21700  R2TL84Tbl15                                   no
     21701  R2TL84Tbl16                                   no
     21702  R2TL84Tbl17                                   no
     21703  R2TL84Tbl18                                   no
     21704  R2TL84Tbl19                                   no
     21705  R2TL84Tbl20                                   no
     21706  R2TL84Tbl21                                   no
     21707  R2TL84Tbl22                                   no
     21708  R2TL84Tbl23                                   no
     21709  R2TL84Tbl24                                   no
     21710  R2TL84Tbl25                                   no
     21711  R2TL84Tbl26                                   no
     21712  R2TL84Tbl27                                   no
     21713  R2TL84Tbl28                                   no
     21714  R2TL84Tbl29                                   no
     21715  R2TL84Tbl30                                   no
     21716  R2TL84Tbl31                                   no
     21717  R2TL84Width                                   no
     21718  RolloffEnable                                 no
     21719  SensorFmt                                     no
     21720  SensorType                                    no
     21721  SensrFulHght                                  no
     21722  SensrFulWdth                                  no
     21723  SensrQtrHght                                  no
     21724  SensrQtrWdth                                  no
     21725  SnapshotResol                                 no
     21726  TL84ConvChrmA_M                               no
     21727  TL84ConvChrmA_P                               no
     21728  TL84ConvChrmB_M                               no
     21729  TL84ConvChrmB_P                               no
     21730  TL84ConvChrmC_M                               no
     21731  TL84ConvChrmC_P                               no
     21732  TL84ConvChrmD_M                               no
     21733  TL84ConvChrmD_P                               no
     21734  TL84ConvChrmKCb                               no
     21735  TL84ConvChrmKCr                               no
     21736  TL84ConvLumaK                                 no
     21737  TL84ConvLumaV0                                no
     21738  TL84ConvLumaV1                                no
     21739  TL84ConvLumaV2                                no
     21740  VideoFps                                      no
     21741  YhiYloConvChrmA_M                             no
     21742  YhiYloConvChrmA_P                             no
     21743  YhiYloConvChrmB_M                             no
     21744  YhiYloConvChrmB_P                             no
     21745  YhiYloConvChrmC_M                             no
     21746  YhiYloConvChrmC_P                             no
     21747  YhiYloConvChrmD_M                             no
     21748  YhiYloConvChrmD_P                             no
     21749  YhiYloConvChrmKCb                             no
     21750  YhiYloConvChrmKCr                             no
     21751  YhiYloConvLumaK                               no
     21752  YhiYloConvLumaV0                              no
     21753  YhiYloConvLumaV1                              no
     21754  YhiYloConvLumaV2                              no
     21755  YhiYloCorC0                                   no
     21756  YhiYloCorC1                                   no
     21757  YhiYloCorC2                                   no
     21758  YhiYloCorC3                                   no
     21759  YhiYloCorC4                                   no
     21760  YhiYloCorC5                                   no
     21761  YhiYloCorC6                                   no
     21762  YhiYloCorC7                                   no
     21763  YhiYloCorC8                                   no
     21764  YhiYloCorK0                                   no
     21765  YhiYloCorK1                                   no
     21766  YhiYloCorK2                                   no
    1101521767
    1101621768=head2 APP12 Tags
     
    1102521777  Tag ID               Tag Name                 Writable
    1102621778  ------               --------                 --------
    11027   'Aperture'           Aperture                 N
    11028   'ColorMode'          ColorMode                N
    11029   'ConTake'            ConTake                  N
    11030   'ExpBias'            ExposureCompensation     N
    11031   'FNumber'            FNumber                  N
    11032   'FWare'              FirmwareVersion          N
    11033   'Flash'              Flash                    N
    11034   'FocusMode'          FocusMode                N
    11035   'FocusPos'           FocusPos                 N
    11036   'ID'                 ID                       N
    11037   'ImageSize'          ImageSize                N
    11038   'LightS'             LightS                   N
    11039   'Macro'              Macro                    N
    11040   'Protect'            Protect                  N
    11041   'Quality'            Quality                  N
    11042   'Resolution'         Resolution               N
    11043   'Serial#'            SerialNumber             N
    11044   'Shutter'            ExposureTime             N
    11045   'StrobeTime'         StrobeTime               N
    11046   'TimeDate'           DateTimeOriginal         N
    11047   'Type'               CameraType               N
    11048   'Version'            Version                  N
    11049   'Ytarget'            YTarget                  N
    11050   'Zoom'               Zoom                     N
    11051   'ZoomPos'            ZoomPos                  N
    11052   'shtr'               ExposureTime             N
    11053   'ylevel'             YLevel                   N
     21779  'Aperture'           Aperture                 no
     21780  'ColorMode'          ColorMode                no
     21781  'ConTake'            ConTake                  no
     21782  'ExpBias'            ExposureCompensation     no
     21783  'FNumber'            FNumber                  no
     21784  'FWare'              FirmwareVersion          no
     21785  'Flash'              Flash                    no
     21786  'FocusMode'          FocusMode                no
     21787  'FocusPos'           FocusPos                 no
     21788  'ID'                 ID                       no
     21789  'ImageSize'          ImageSize                no
     21790  'LightS'             LightS                   no
     21791  'Macro'              Macro                    no
     21792  'Protect'            Protect                  no
     21793  'Quality'            Quality                  no
     21794  'Resolution'         Resolution               no
     21795  'Serial#'            SerialNumber             no
     21796  'Shutter'            ExposureTime             no
     21797  'StrobeTime'         StrobeTime               no
     21798  'TimeDate'           DateTimeOriginal         no
     21799  'Type'               CameraType               no
     21800  'Version'            Version                  no
     21801  'Ytarget'            YTarget                  no
     21802  'Zoom'               Zoom                     no
     21803  'ZoomPos'            ZoomPos                  no
     21804  'shtr'               ExposureTime             no
     21805  'ylevel'             YLevel                   no
    1105421806
    1105521807=head3 APP12 Ducky Tags
     
    1107421826and TIFF images.
    1107521827
     21828See
     21829L<http://web.archive.org/web/20080828211305/http://www.tocarte.com/media/axs_afcp_spec.pdf>
     21830for the AFCP specification.
     21831
    1107621832  Tag ID   Tag Name                             Writable
    1107721833  ------   --------                             --------
    1107821834  'IPTC'   IPTC                                 IPTC
    11079   'Nail'   ThumbnailImage                       N
    11080   'PrVw'   PreviewImage                         N
    11081   'TEXT'   Text                                 N
     21835  'Nail'   ThumbnailImage                       no
     21836  'PrVw'   PreviewImage                         no
     21837  'TEXT'   Text                                 no
     21838
     21839=head2 DarwinCore Tags
     21840
     21841Tags defined in the Darwin Core (dwc) XMP namespace.  See
     21842L<http://rs.tdwg.org/dwc/index.htm> for the official specification.
     21843
     21844These tags belong to the ExifTool XMP-dwc family 1 group.
     21845
     21846  Tag Name                                      Writable
     21847  --------                                      --------
     21848  DCTermsLocation                               DarwinCore DCTermsLocation Struct
     21849  DCContinent                                   string_
     21850  DCCoordinatePrecision                         string_
     21851  DCCoordinateUncertaintyInMeters               string_
     21852  DCCountry                                     string_
     21853  DCCountryCode                                 string_
     21854  DCCounty                                      string_
     21855  DCDecimalLatitude                             string_
     21856  DCDecimalLongitude                            string_
     21857  DCFootprintSpatialFit                         string_
     21858  DCFootprintSRS                                string_
     21859  DCFootprintWKT                                string_
     21860  DCGeodeticDatum                               string_
     21861  DCGeoreferencedBy                             string_
     21862  DCGeoreferencedDate                           string_
     21863  DCGeoreferenceProtocol                        string_
     21864  DCGeoreferenceRemarks                         string_
     21865  DCGeoreferenceSources                         string_
     21866  DCGeoreferenceVerificationStatus              string_
     21867  DCHigherGeography                             string_
     21868  DCHigherGeographyID                           string_
     21869  DCIsland                                      string_
     21870  DCIslandGroup                                 string_
     21871  DCLocality                                    string_
     21872  DCLocationAccordingTo                         string_
     21873  DCLocationID                                  string_
     21874  DCLocationRemarks                             string_
     21875  DCMaximumDepthInMeters                        string_
     21876  DCMaximumDistanceAboveSurfaceInMeters         string_
     21877  DCMaximumElevationInMeters                    string_
     21878  DCMinimumDepthInMeters                        string_
     21879  DCMinimumDistanceAboveSurfaceInMeters         string_
     21880  DCMinimumElevationInMeters                    string_
     21881  DCMunicipality                                string_
     21882  DCPointRadiusSpatialFit                       string_
     21883  DCStateProvince                               string_
     21884  DCVerbatimCoordinates                         string_
     21885  DCVerbatimCoordinateSystem                    string_
     21886  DCVerbatimDepth                               string_
     21887  DCVerbatimElevation                           string_
     21888  DCVerbatimLatitude                            string_
     21889  DCVerbatimLocality                            string_
     21890  DCVerbatimLongitude                           string_
     21891  DCVerbatimSRS                                 string_
     21892  DCWaterBody                                   string_
     21893  DCEvent                                       DarwinCore Event Struct
     21894  EventDay                                      integer_
     21895  EventEarliestDate                             date_
     21896  EventEndDayOfYear                             integer_
     21897  EventDate                                     date_
     21898  EventID                                       string_
     21899  EventRemarks                                  lang-alt_
     21900  EventTime                                     string_
     21901  EventFieldNotes                               string_
     21902  EventFieldNumber                              string_
     21903  EventHabitat                                  string_
     21904  EventLatestDate                               date_
     21905  EventMonth                                    integer_
     21906  EventParentEventID                            string_
     21907  EventSampleSizeUnit                           string_
     21908  EventSampleSizeValue                          string_
     21909  EventSamplingEffort                           string_
     21910  EventSamplingProtocol                         string_
     21911  EventStartDayOfYear                           integer_
     21912  EventVerbatimEventDate                        string_
     21913  EventYear                                     integer_
     21914  FossilSpecimen                                DarwinCore MaterialSample Struct
     21915  FossilSpecimenMaterialSampleID                string_
     21916  GeologicalContext                            DarwinCore GeologicalContext Struct
     21917  GeologicalContextBed                          string_
     21918  EarliestAgeOrLowestStage                      string_
     21919  EarliestEonOrLowestEonothem                   string_
     21920  EarliestEpochOrLowestSeries                   string_
     21921  EarliestEraOrLowestErathem                    string_
     21922  EarliestPeriodOrLowestSystem                  string_
     21923  GeologicalContextFormation                    string_
     21924  GeologicalContextID                           string_
     21925  GeologicalContextGroup                        string_
     21926  HighestBiostratigraphicZone                   string_
     21927  LatestAgeOrHighestStage                       string_
     21928  LatestEonOrHighestEonothem                    string_
     21929  LatestEpochOrHighestSeries                    string_
     21930  LatestEraOrHighestErathem                     string_
     21931  LatestPeriodOrHighestSystem                   string_
     21932  LithostratigraphicTerms                       string_
     21933  LowestBiostratigraphicZone                    string_
     21934  GeologicalContextMember                       string_
     21935  HumanObservation                              DarwinCore Event Struct
     21936  HumanObservationDay                           integer_
     21937  HumanObservationEarliestDate                  date_
     21938  HumanObservationEndDayOfYear                  integer_
     21939  HumanObservationEventDate                     date_
     21940  HumanObservationEventID                       string_
     21941  HumanObservationEventRemarks                  lang-alt_
     21942  HumanObservationEventTime                     string_
     21943  HumanObservationFieldNotes                    string_
     21944  HumanObservationFieldNumber                   string_
     21945  HumanObservationHabitat                       string_
     21946  HumanObservationLatestDate                    date_
     21947  HumanObservationMonth                         integer_
     21948  HumanObservationParentEventID                 string_
     21949  HumanObservationSampleSizeUnit                string_
     21950  HumanObservationSampleSizeValue               string_
     21951  HumanObservationSamplingEffort                string_
     21952  HumanObservationSamplingProtocol              string_
     21953  HumanObservationStartDayOfYear                integer_
     21954  HumanObservationVerbatimEventDate             string_
     21955  HumanObservationYear                          integer_
     21956  Identification                                DarwinCore Identification Struct
     21957  DateIdentified                                date_
     21958  IdentificationID                              string_
     21959  IdentificationQualifier                       string_
     21960  IdentificationReferences                      string_
     21961  IdentificationRemarks                         string_
     21962  IdentificationVerificationStatus              string_
     21963  IdentifiedBy                                  string_
     21964  TypeStatus                                    string_
     21965  LivingSpecimen                                DarwinCore MaterialSample Struct
     21966  LivingSpecimenMaterialSampleID                string_
     21967  MachineObservation                            DarwinCore Event Struct
     21968  MachineObservationDay                         integer_
     21969  MachineObservationEarliestDate                date_
     21970  MachineObservationEndDayOfYear                integer_
     21971  MachineObservationEventDate                   date_
     21972  MachineObservationEventID                     string_
     21973  MachineObservationEventRemarks                lang-alt_
     21974  MachineObservationEventTime                   string_
     21975  MachineObservationFieldNotes                  string_
     21976  MachineObservationFieldNumber                 string_
     21977  MachineObservationHabitat                     string_
     21978  MachineObservationLatestDate                  date_
     21979  MachineObservationMonth                       integer_
     21980  MachineObservationParentEventID               string_
     21981  MachineObservationSampleSizeUnit              string_
     21982  MachineObservationSampleSizeValue             string_
     21983  MachineObservationSamplingEffort              string_
     21984  MachineObservationSamplingProtocol            string_
     21985  MachineObservationStartDayOfYear              integer_
     21986  MachineObservationVerbatimEventDate           string_
     21987  MachineObservationYear                        integer_
     21988  MaterialSample                                DarwinCore MaterialSample Struct
     21989  MaterialSampleID                              string_
     21990  MeasurementOrFact                            DarwinCore MeasurementOrFact Struct
     21991  MeasurementAccuracy                           string_
     21992  MeasurementDeterminedBy                       string_
     21993  MeasurementDeterminedDate                     date_
     21994  MeasurementID                                 string_
     21995  MeasurementMethod                             string_
     21996  MeasurementRemarks                            string_
     21997  MeasurementType                               string_
     21998  MeasurementUnit                               string_
     21999  MeasurementValue                              string_
     22000  Occurrence                                    DarwinCore Occurrence Struct
     22001  OccurrenceAssociatedMedia                     string_
     22002  OccurrenceAssociatedOccurrences               string_
     22003  OccurrenceAssociatedReferences                string_
     22004  OccurrenceAssociatedSequences                 string_
     22005  OccurrenceAssociatedTaxa                      string_
     22006  OccurrenceBehavior                            string_
     22007  OccurrenceCatalogNumber                       string_
     22008  OccurrenceDisposition                         string_
     22009  OccurrenceEstablishmentMeans                  string_
     22010  OccurrenceIndividualCount                     string_
     22011  OccurrenceIndividualID                        string_
     22012  OccurrenceLifeStage                           string_
     22013  OccurrenceDetails                             string_
     22014  OccurrenceID                                  string_
     22015  OccurrenceRemarks                             string_
     22016  OccurrenceStatus                              string_
     22017  OccurrenceOrganismQuantity                    string_
     22018  OccurrenceOrganismQuantityType                string_
     22019  OccurrenceOtherCatalogNumbers                 string_
     22020  OccurrencePreparations                        string_
     22021  OccurrencePreviousIdentifications             string_
     22022  OccurrenceRecordedBy                          string_
     22023  OccurrenceRecordNumber                        string_
     22024  OccurrenceReproductiveCondition               string_
     22025  OccurrenceSex                                 string_
     22026  Organism                                      DarwinCore Organism Struct
     22027  OrganismAssociatedOccurrences                 string_
     22028  OrganismAssociatedOrganisms                   string_
     22029  OrganismID                                    string_
     22030  OrganismName                                  string_
     22031  OrganismRemarks                               string_
     22032  OrganismScope                                 string_
     22033  OrganismPreviousIdentifications               string_
     22034  PreservedSpecimen                             DarwinCore MaterialSample Struct
     22035  PreservedSpecimenMaterialSampleID             string_
     22036  Record                                        DarwinCore Record Struct
     22037  RecordBasisOfRecord                           string_
     22038  RecordCollectionCode                          string_
     22039  RecordCollectionID                            string_
     22040  RecordDataGeneralizations                     string_
     22041  RecordDatasetID                               string_
     22042  RecordDatasetName                             string_
     22043  RecordDynamicProperties                       string_
     22044  RecordInformationWithheld                     string_
     22045  RecordInstitutionCode                         string_
     22046  RecordInstitutionID                           string_
     22047  RecordOwnerInstitutionCode                    string_
     22048  ResourceRelationship                      DarwinCore ResourceRelationship Struct
     22049  RelatedResourceID                             string_
     22050  RelationshipAccordingTo                       string_
     22051  RelationshipEstablishedDate                   date_
     22052  RelationshipOfResource                        string_
     22053  RelationshipRemarks                           string_
     22054  ResourceID                                    string_
     22055  ResourceRelationshipID                        string_
     22056  Taxon                                         DarwinCore Taxon Struct
     22057  TaxonAcceptedNameUsage                        string_
     22058  TaxonAcceptedNameUsageID                      string_
     22059  TaxonClass                                    string_
     22060  TaxonFamily                                   string_
     22061  TaxonGenus                                    string_
     22062  TaxonHigherClassification                     string_
     22063  TaxonInfraspecificEpithet                     string_
     22064  TaxonKingdom                                  string_
     22065  TaxonNameAccordingTo                          string_
     22066  TaxonNameAccordingToID                        string_
     22067  TaxonNamePublishedIn                          string_
     22068  TaxonNamePublishedInID                        string_
     22069  TaxonNamePublishedInYear                      string_
     22070  TaxonNomenclaturalCode                        string_
     22071  TaxonNomenclaturalStatus                      string_
     22072  TaxonOrder                                    string_
     22073  TaxonOriginalNameUsage                        string_
     22074  TaxonOriginalNameUsageID                      string_
     22075  TaxonParentNameUsage                          string_
     22076  TaxonParentNameUsageID                        string_
     22077  TaxonPhylum                                   string_
     22078  TaxonScientificName                           string_
     22079  TaxonScientificNameAuthorship                 string_
     22080  TaxonScientificNameID                         string_
     22081  TaxonSpecificEpithet                          string_
     22082  TaxonSubgenus                                 string_
     22083  TaxonConceptID                                string_
     22084  TaxonID                                       string_
     22085  TaxonTaxonomicStatus                          string_
     22086  TaxonRank                                     string_
     22087  TaxonRemarks                                  string_
     22088  TaxonVerbatimTaxonRank                        string_
     22089  TaxonVernacularName                           lang-alt_
     22090
     22091=head3 DarwinCore DCTermsLocation Struct
     22092
     22093  Field Name                                    Writable
     22094  ----------                                    --------
     22095  Continent                                     string
     22096  CoordinatePrecision                           string
     22097  CoordinateUncertaintyInMeters                 string
     22098  Country                                       string
     22099  CountryCode                                   string
     22100  County                                        string
     22101  DecimalLatitude                               string
     22102  DecimalLongitude                              string
     22103  FootprintSRS                                  string
     22104  FootprintSpatialFit                           string
     22105  FootprintWKT                                  string
     22106  GeodeticDatum                                 string
     22107  GeoreferenceProtocol                          string
     22108  GeoreferenceRemarks                           string
     22109  GeoreferenceSources                           string
     22110  GeoreferenceVerificationStatus                string
     22111  GeoreferencedBy                               string
     22112  GeoreferencedDate                             string
     22113  HigherGeography                               string
     22114  HigherGeographyID                             string
     22115  Island                                        string
     22116  IslandGroup                                   string
     22117  Locality                                      string
     22118  LocationAccordingTo                           string
     22119  LocationID                                    string
     22120  LocationRemarks                               string
     22121  MaximumDepthInMeters                          string
     22122  MaximumDistanceAboveSurfaceInMeters           string
     22123  MaximumElevationInMeters                      string
     22124  MinimumDepthInMeters                          string
     22125  MinimumDistanceAboveSurfaceInMeters           string
     22126  MinimumElevationInMeters                      string
     22127  Municipality                                  string
     22128  PointRadiusSpatialFit                         string
     22129  StateProvince                                 string
     22130  VerbatimCoordinateSystem                      string
     22131  VerbatimCoordinates                           string
     22132  VerbatimDepth                                 string
     22133  VerbatimElevation                             string
     22134  VerbatimLatitude                              string
     22135  VerbatimLocality                              string
     22136  VerbatimLongitude                             string
     22137  VerbatimSRS                                   string
     22138  WaterBody                                     string
     22139
     22140=head3 DarwinCore Event Struct
     22141
     22142  Field Name                                    Writable
     22143  ----------                                    --------
     22144  Day                                           integer
     22145  EarliestDate                                  date
     22146  EndDayOfYear                                  integer
     22147  EventDate                                     date
     22148  EventID                                       string
     22149  EventRemarks                                  lang-alt
     22150  EventTime                                     string
     22151  FieldNotes                                    string
     22152  FieldNumber                                   string
     22153  Habitat                                       string
     22154  LatestDate                                    date
     22155  Month                                         integer
     22156  ParentEventID                                 string
     22157  SampleSizeUnit                                string
     22158  SampleSizeValue                               string
     22159  SamplingEffort                                string
     22160  SamplingProtocol                              string
     22161  StartDayOfYear                                integer
     22162  VerbatimEventDate                             string
     22163  Year                                          integer
     22164
     22165=head3 DarwinCore MaterialSample Struct
     22166
     22167  Field Name                                    Writable
     22168  ----------                                    --------
     22169  MaterialSampleID                              string
     22170
     22171=head3 DarwinCore GeologicalContext Struct
     22172
     22173  Field Name                                    Writable
     22174  ----------                                    --------
     22175  Bed                                           string
     22176  EarliestAgeOrLowestStage                      string
     22177  EarliestEonOrLowestEonothem                   string
     22178  EarliestEpochOrLowestSeries                   string
     22179  EarliestEraOrLowestErathem                    string
     22180  EarliestPeriodOrLowestSystem                  string
     22181  Formation                                     string
     22182  GeologicalContextID                           string
     22183  Group                                         string
     22184  HighestBiostratigraphicZone                   string
     22185  LatestAgeOrHighestStage                       string
     22186  LatestEonOrHighestEonothem                    string
     22187  LatestEpochOrHighestSeries                    string
     22188  LatestEraOrHighestErathem                     string
     22189  LatestPeriodOrHighestSystem                   string
     22190  LithostratigraphicTerms                       string
     22191  LowestBiostratigraphicZone                    string
     22192  Member                                        string
     22193
     22194=head3 DarwinCore Identification Struct
     22195
     22196  Field Name                                    Writable
     22197  ----------                                    --------
     22198  DateIdentified                                date
     22199  IdentificationID                              string
     22200  IdentificationQualifier                       string
     22201  IdentificationReferences                      string
     22202  IdentificationRemarks                         string
     22203  IdentificationVerificationStatus              string
     22204  IdentifiedBy                                  string
     22205  TypeStatus                                    string
     22206
     22207=head3 DarwinCore MeasurementOrFact Struct
     22208
     22209  Field Name                                    Writable
     22210  ----------                                    --------
     22211  MeasurementAccuracy                           string
     22212  MeasurementDeterminedBy                       string
     22213  MeasurementDeterminedDate                     date
     22214  MeasurementID                                 string
     22215  MeasurementMethod                             string
     22216  MeasurementRemarks                            string
     22217  MeasurementType                               string
     22218  MeasurementUnit                               string
     22219  MeasurementValue                              string
     22220
     22221=head3 DarwinCore Occurrence Struct
     22222
     22223  Field Name                                    Writable
     22224  ----------                                    --------
     22225  AssociatedMedia                               string
     22226  AssociatedOccurrences                         string
     22227  AssociatedReferences                          string
     22228  AssociatedSequences                           string
     22229  AssociatedTaxa                                string
     22230  Behavior                                      string
     22231  CatalogNumber                                 string
     22232  Disposition                                   string
     22233  EstablishmentMeans                            string
     22234  IndividualCount                               string
     22235  IndividualID                                  string
     22236  LifeStage                                     string
     22237  OccurrenceDetails                             string
     22238  OccurrenceID                                  string
     22239  OccurrenceRemarks                             string
     22240  OccurrenceStatus                              string
     22241  OrganismQuantity                              string
     22242  OrganismQuantityType                          string
     22243  OtherCatalogNumbers                           string
     22244  Preparations                                  string
     22245  PreviousIdentifications                       string
     22246  RecordNumber                                  string
     22247  RecordedBy                                    string
     22248  ReproductiveCondition                         string
     22249  Sex                                           string
     22250
     22251=head3 DarwinCore Organism Struct
     22252
     22253  Field Name                                    Writable
     22254  ----------                                    --------
     22255  AssociatedOccurrences                         string
     22256  AssociatedOrganisms                           string
     22257  OrganismID                                    string
     22258  OrganismName                                  string
     22259  OrganismRemarks                               string
     22260  OrganismScope                                 string
     22261  PreviousIdentifications                       string
     22262
     22263=head3 DarwinCore Record Struct
     22264
     22265  Field Name                                    Writable
     22266  ----------                                    --------
     22267  BasisOfRecord                                 string
     22268  CollectionCode                                string
     22269  CollectionID                                  string
     22270  DataGeneralizations                           string
     22271  DatasetID                                     string
     22272  DatasetName                                   string
     22273  DynamicProperties                             string
     22274  InformationWithheld                           string
     22275  InstitutionCode                               string
     22276  InstitutionID                                 string
     22277  OwnerInstitutionCode                          string
     22278
     22279=head3 DarwinCore ResourceRelationship Struct
     22280
     22281  Field Name                                    Writable
     22282  ----------                                    --------
     22283  RelatedResourceID                             string
     22284  RelationshipAccordingTo                       string
     22285  RelationshipEstablishedDate                   date
     22286  RelationshipOfResource                        string
     22287  RelationshipRemarks                           string
     22288  ResourceID                                    string
     22289  ResourceRelationshipID                        string
     22290
     22291=head3 DarwinCore Taxon Struct
     22292
     22293  Field Name                                    Writable
     22294  ----------                                    --------
     22295  AcceptedNameUsage                             string
     22296  AcceptedNameUsageID                           string
     22297  Class                                         string
     22298  Family                                        string
     22299  Genus                                         string
     22300  HigherClassification                          string
     22301  InfraspecificEpithet                          string
     22302  Kingdom                                       string
     22303  NameAccordingTo                               string
     22304  NameAccordingToID                             string
     22305  NamePublishedIn                               string
     22306  NamePublishedInID                             string
     22307  NamePublishedInYear                           string
     22308  NomenclaturalCode                             string
     22309  NomenclaturalStatus                           string
     22310  Order                                         string
     22311  OriginalNameUsage                             string
     22312  OriginalNameUsageID                           string
     22313  ParentNameUsage                               string
     22314  ParentNameUsageID                             string
     22315  Phylum                                        string
     22316  ScientificName                                string
     22317  ScientificNameAuthorship                      string
     22318  ScientificNameID                              string
     22319  SpecificEpithet                               string
     22320  Subgenus                                      string
     22321  TaxonConceptID                                string
     22322  TaxonID                                       string
     22323  TaxonRank                                     string
     22324  TaxonRemarks                                  string
     22325  TaxonomicStatus                               string
     22326  VerbatimTaxonRank                             string
     22327  VernacularName                                lang-alt
    1108222328
    1108322329=head2 FotoStation Tags
     
    1109022336  0x0001   IPTC                                 IPTC
    1109122337  0x0002   SoftEdit                             FotoStation SoftEdit
    11092   0x0003   ThumbnailImage                       Y
    11093   0x0004   PreviewImage                         Y
     22338  0x0003   ThumbnailImage                       yes
     22339  0x0004   PreviewImage                         yes
    1109422340
    1109522341=head3 FotoStation SoftEdit Tags
    1109622342
    11097    Index   Tag Name                             Writable
    11098    -----   --------                             --------
     22343  Index4   Tag Name                             Writable
     22344  ------   --------                             --------
    1109922345      0    OriginalImageWidth                   int32s
    1110022346      1    OriginalImageHeight                  int32s
     
    1114522391Below is a list of the observed PhotoMechanic XMP tags.  The actual
    1114622392namespace prefix is "photomechanic" but ExifTool shortens this in
    11147 the "XMP-photomech" family 1 group name.
     22393the family 1 group name.
     22394
     22395These tags belong to the ExifTool XMP-photomech family 1 group.
    1114822396
    1114922397  Tag Name                                      Writable
    1115022398  --------                                      --------
     22399  ColorClass                                    integer
    1115122400  CountryCode                                   string/
    1115222401  EditStatus                                    string
     22402  PMVersion                                     string
    1115322403  Prefs                                         string
     22404  Tagged                                        boolean
    1115422405  TimeCreated                                   string/
    1115522406
     
    1116022411Microsoft Photo 1.0 schema XMP tags.  This is likely not a complete list,
    1116122412but represents tags which have been observed in sample images.  The actual
    11162 namespace prefix is "MicrosoftPhoto", but ExifTool shortens this to
    11163 "XMP-microsoft" in the family 1 group name.
     22413namespace prefix is "MicrosoftPhoto", but ExifTool shortens this in the
     22414family 1 group name.
     22415
     22416These tags belong to the ExifTool XMP-microsoft family 1 group.
    1116422417
    1116522418  Tag Name                                      Writable
    1116622419  --------                                      --------
    1116722420  CameraSerialNumber                            string
     22421  CreatorAppID                                  string
     22422  CreatorOpenWithUIOptions                      string
    1116822423  DateAcquired                                  date
    1116922424  FlashManufacturer                             string
    1117022425  FlashModel                                    string
     22426  ItemSubType                                   string
    1117122427  LastKeywordIPTC                               string+
    1117222428  LastKeywordXMP                                string+
    1117322429  LensManufacturer                              string
    11174   LensModel                                     string
     22430  LensModel                                     string/
    1117522431  RatingPercent                                 string
    1117622432
     
    1117822434
    1117922435Microsoft Photo 1.1 schema XMP tags which have been observed.
     22436
     22437These tags belong to the ExifTool XMP-MP1 family 1 group.
    1118022438
    1118122439  Tag Name                                      Writable
    1118222440  --------                                      --------
     22441  Brightness                                    string/
     22442  CameraModelID                                 string/
     22443  Contrast                                      string/
     22444  ExposureCompensation                          string/
    1118322445  PanoramicStitchCameraMotion                   string
    1118422446  PanoramicStitchMapType                        string
     
    1118722449  PanoramicStitchTheta0                         real
    1118822450  PanoramicStitchTheta1                         real
     22451  PipelineVersion                               string
     22452  StreamType                                    string
     22453  WhiteBalance0                                 real
     22454  WhiteBalance1                                 real
     22455  WhiteBalance2                                 real
    1118922456
    1119022457=head3 Microsoft MP Tags
    1119122458
    1119222459Microsoft Photo 1.2 schema XMP tags which have been observed.
     22460
     22461These tags belong to the ExifTool XMP-MP family 1 group.
    1119322462
    1119422463  Tag Name                                      Writable
    1119522464  --------                                      --------
    11196   RegionInfoMP                                  RegionInfoMP Struct
    11197   RegionInfoMPRegions                           Regions Struct_+
     22465  RegionInfoDateRegionsValid                    date_
     22466  RegionInfoMP                                  Microsoft RegionInfo Struct
     22467  RegionInfoRegions                             Microsoft Regions Struct_+
    1119822468  RegionPersonDisplayName                       string_+
     22469  RegionPersonEmailDigest                       string_+
     22470  RegionPersonLiveIdCID                         string_+
     22471  RegionPersonSourceID                          string_+
    1119922472  RegionRectangle                               string_+
     22473
     22474=head3 Microsoft RegionInfo Struct
     22475
     22476  Field Name                                    Writable
     22477  ----------                                    --------
     22478  DateRegionsValid                              date
     22479  Regions                                       Microsoft Regions Struct+
     22480
     22481=head3 Microsoft Regions Struct
     22482
     22483Note that PersonLiveIdCID element is called PersonLiveCID according to the
     22484Microsoft specification, but in practice their software actually writes
     22485PersonLiveIdCID, so ExifTool uses this too.
     22486
     22487  Field Name                                    Writable
     22488  ----------                                    --------
     22489  PersonDisplayName                             string
     22490  PersonEmailDigest                             string
     22491  PersonLiveIdCID                               string
     22492  PersonSourceID                                string
     22493  Rectangle                                     string
    1120022494
    1120122495=head3 Microsoft Stitch Tags
     
    1120422498Windows Live Photo Gallery.
    1120522499
    11206    Index   Tag Name                             Writable
    11207    -----   --------                             --------
     22500  Index4   Tag Name                             Writable
     22501  ------   --------                             --------
    1120822502      0    PanoramicStitchVersion               int32u
    1120922503      1    PanoramicStitchCameraMotion          int32u
     
    1121422508      6    PanoramicStitchPhi1                  float
    1121522509
     22510=head3 Microsoft Xtra Tags
     22511
     22512Tags extracted from the Microsoft "Xtra" atom of QuickTime videos.  Tag ID's
     22513are not shown because some are unruly GUID's.
     22514
     22515  Tag Name                                      Writable
     22516  --------                                      --------
     22517  Abstract                                      no
     22518  AccountName                                   no
     22519  AcquisitionTime                               no
     22520  AcquisitionTimeDay                            no
     22521  AcquisitionTimeMonth                          no
     22522  AcquisitionTimeYear                           no
     22523  AcquisitionTimeYearMonth                      no
     22524  AcquisitionTimeYearMonthDay                   no
     22525  AlbumArtist                                   no
     22526  AlbumArtist                                   no
     22527  AlbumArtistSortOrder                          no
     22528  AlbumCoverURL                                 no
     22529  AlbumID                                       no
     22530  AlbumIDAlbumArtist                            no
     22531  AlbumTitle                                    no
     22532  AlbumTitle                                    no
     22533  AlbumTitleSortOrder                           no
     22534  AlternateSourceURL                            no
     22535  Anniversary                                   no
     22536  Artist                                        no
     22537  AssistantsName                                no
     22538  AssistantsPhone                               no
     22539  Attachments                                   no
     22540  Attributes                                    no
     22541  AudioBitrate                                  no
     22542  AudioFormat                                   no
     22543  AudioSampleRate                               no
     22544  AudioSampleSize                               no
     22545  Author                                        no
     22546  Author                                        no
     22547  AuthorSortOrder                               no
     22548  AutoSummary                                   no
     22549  AverageLevel                                  no
     22550  BccAddresses                                  no
     22551  BccNames                                      no
     22552  Beats-per-minute                              no
     22553  BeatsPerMinute                                no
     22554  BillingInformation                            no
     22555  Birthday                                      no
     22556  BitDepth                                      no
     22557  Bitrate                                       no
     22558  Bitrate                                       no
     22559  BroadcastDate                                 no
     22560  BusinessAddress                               no
     22561  BusinessCity                                  no
     22562  BusinessCountry-Region                        no
     22563  BusinessFax                                   no
     22564  BusinessHomePage                              no
     22565  BusinessPOBox                                 no
     22566  BusinessPhone                                 no
     22567  BusinessPostalCode                            no
     22568  BusinessStateOrProvince                       no
     22569  BusinessStreet                                no
     22570  BuyNow                                        no
     22571  BuyTickets                                    no
     22572  CDTrackEnabled                                no
     22573  CallLetters                                   no
     22574  CallbackNumber                                no
     22575  CameraMaker                                   no
     22576  CameraManufacturer                            no
     22577  CameraModel                                   no
     22578  CameraModel                                   no
     22579  CarPhone                                      no
     22580  Category                                      no
     22581  Category                                      no
     22582  CcAddresses                                   no
     22583  CcNames                                       no
     22584  CellPhone                                     no
     22585  ChannelNumber                                 no
     22586  Channels                                      no
     22587  Channels                                      no
     22588  ChapterNum                                    no
     22589  Children                                      no
     22590  City                                          no
     22591  ClientID                                      no
     22592  ClosedCaptioning                              no
     22593  Color                                         no
     22594  Comment                                       no
     22595  Comments                                      no
     22596  Company                                       no
     22597  CompanyMainPhone                              no
     22598  Complete                                      no
     22599  Composer                                      no
     22600  Composers                                     no
     22601  Computer                                      no
     22602  Conductor                                     no
     22603  Conductors                                    no
     22604  ContactNames                                  no
     22605  ContentDistributor                            no
     22606  ContentDistributorDuration                    no
     22607  ContentDistributorType                        no
     22608  ContentGroupDescription                       no
     22609  ContentType                                   no
     22610  Contributors                                  no
     22611  ConversationID                                no
     22612  Copyright                                     no
     22613  Copyright                                     no
     22614  Count                                         no
     22615  Country-Region                                no
     22616  Creator                                       no
     22617  CurrentBitrate                                no
     22618  DLNAServerUDN                                 no
     22619  DLNASourceURI                                 no
     22620  DRMIndividualizedVersion                      no
     22621  DRMKeyID                                      no
     22622  DTCPIPHost                                    no
     22623  DTCPIPPort                                    no
     22624  DVDID                                         no
     22625  DataRate                                      no
     22626  Date                                          no
     22627  DateAccessed                                  no
     22628  DateAcquired                                  no
     22629  DateArchived                                  no
     22630  DateCompleted                                 no
     22631  DateCreated                                   no
     22632  DateImported                                  no
     22633  DateLastSaved                                 no
     22634  DateModified                                  no
     22635  DatePictureTaken                              no
     22636  DateReceived                                  no
     22637  DateReleased                                  no
     22638  DateSent                                      no
     22639  DateVisited                                   no
     22640  Department                                    no
     22641  Description                                   no
     22642  Description                                   no
     22643  Description                                   no
     22644  Dimensions                                    no
     22645  Director                                      no
     22646  Directors                                     no
     22647  DisplayArtist                                 no
     22648  Division                                      no
     22649  DocumentID                                    no
     22650  DueDate                                       no
     22651  Duration                                      no
     22652  Duration                                      no
     22653  Duration                                      no
     22654  E-mail2                                       no
     22655  E-mail3                                       no
     22656  E-mailAddress                                 no
     22657  E-mailDisplayName                             no
     22658  E-mailList                                    no
     22659  EncodedBy                                     no
     22660  EncodingTime                                  no
     22661  EndDate                                       no
     22662  EntryType                                     no
     22663  EpisodeName                                   no
     22664  Event                                         no
     22665  Event                                         no
     22666  ExifVersion                                   no
     22667  ExposureBias                                  no
     22668  ExposureProgram                               no
     22669  ExposureTime                                  no
     22670  F-stop                                        no
     22671  FileAs                                        no
     22672  FileCount                                     no
     22673  FileSize                                      no
     22674  FileType                                      no
     22675  FileVersion                                   no
     22676  FirstName                                     no
     22677  FlagColor                                     no
     22678  FlagStatus                                    no
     22679  FlashMode                                     no
     22680  FocalLength                                   no
     22681  FocalLength35mm                               no
     22682  Folder                                        no
     22683  FolderName                                    no
     22684  FolderPath                                    no
     22685  FormatTag                                     no
     22686  FourCC                                        no
     22687  FrameHeight                                   no
     22688  FrameRate                                     no
     22689  FrameRate                                     no
     22690  FrameWidth                                    no
     22691  Free-busyStatus                               no
     22692  Frequency                                     no
     22693  FromAddresses                                 no
     22694  FromNames                                     no
     22695  FullName                                      no
     22696  Gender                                        no
     22697  Genre                                         no
     22698  Genre                                         no
     22699  GenreID                                       no
     22700  GivenName                                     no
     22701  HasAttachments                                no
     22702  HasFlag                                       no
     22703  Hobbies                                       no
     22704  HomeAddress                                   no
     22705  HomeCity                                      no
     22706  HomeCountry-Region                            no
     22707  HomeFax                                       no
     22708  HomePOBox                                     no
     22709  HomePhone                                     no
     22710  HomePostalCode                                no
     22711  HomeStateOrProvince                           no
     22712  HomeStreet                                    no
     22713  HorizontalResolution                          no
     22714  IMAddresses                                   no
     22715  ISOSpeed                                      no
     22716  Importance                                    no
     22717  Incomplete                                    no
     22718  InitialKey                                    no
     22719  InitialKey                                    no
     22720  Initials                                      no
     22721  IsAttachment                                  no
     22722  IsCompleted                                   no
     22723  IsDeleted                                     no
     22724  IsNetworkFeed                                 no
     22725  IsOnline                                      no
     22726  IsProtected                                   no
     22727  IsRecurring                                   no
     22728  IsVBR                                         no
     22729  JobTitle                                      no
     22730  Keywords                                      no
     22731  Kinds                                         no
     22732  Label                                         no
     22733  Language                                      no
     22734  Language                                      no
     22735  LastName                                      no
     22736  LastPrinted                                   no
     22737  LeadPerformer                                 no
     22738  LegalTrademarks                               no
     22739  LensMaker                                     no
     22740  LensModel                                     no
     22741  LibraryID                                     no
     22742  LibraryName                                   no
     22743  LightSource                                   no
     22744  LinkStatus                                    no
     22745  LinkTarget                                    no
     22746  Location                                      no
     22747  Location                                      no
     22748  Lyrics                                        no
     22749  MCDI                                          no
     22750  MailingAddress                                no
     22751  MaxAperture                                   no
     22752  MediaClassPrimaryID                           no
     22753  MediaClassSecondaryID                         no
     22754  MediaContentTypes                             no
     22755  MediaCreated                                  no
     22756  MediaOriginalBroadcastDateTime                no
     22757  MediaOriginalChannel                          no
     22758  MediaStationName                              no
     22759  MediaType                                     no
     22760  MeteringMode                                  no
     22761  MiddleName                                    no
     22762  Mileage                                       no
     22763  ModifiedBy                                    no
     22764  Mood                                          no
     22765  Mood                                          no
     22766  MoreInfo                                      no
     22767  Name                                          no
     22768  Nickname                                      no
     22769  OfficeLocation                                no
     22770  OfflineAvailability                           no
     22771  OfflineStatus                                 no
     22772  OptionalAttendeeAddresses                     no
     22773  OptionalAttendees                             no
     22774  OrganizerAddress                              no
     22775  OrganizerName                                 no
     22776  Orientation                                   no
     22777  OriginalAlbumTitle                            no
     22778  OriginalArtist                                no
     22779  OriginalLyricist                              no
     22780  OtherAddress                                  no
     22781  OtherCity                                     no
     22782  OtherCountry-Region                           no
     22783  OtherPOBox                                    no
     22784  OtherPostalCode                               no
     22785  OtherStateOrProvince                          no
     22786  OtherStreet                                   no
     22787  Owner                                         no
     22788  POBox                                         no
     22789  Pager                                         no
     22790  Pages                                         no
     22791  ParentalRating                                no
     22792  ParentalRating                                no
     22793  ParentalRatingReason                          no
     22794  PartOfSet                                     no
     22795  PartOfSet                                     no
     22796  PartOfSet                                     no
     22797  Participants                                  no
     22798  Path                                          no
     22799  PeakValue                                     no
     22800  PerceivedType                                 no
     22801  Period                                        no
     22802  Period                                        no
     22803  PersonalTitle                                 no
     22804  PixelAspectRatioX                             no
     22805  PixelAspectRatioY                             no
     22806  PlaylistIndex                                 no
     22807  PostalCode                                    no
     22808  PrimaryE-mail                                 no
     22809  PrimaryPhone                                  no
     22810  Priority                                      no
     22811  Producer                                      no
     22812  Producers                                     no
     22813  ProductName                                   no
     22814  ProductVersion                                no
     22815  Profession                                    no
     22816  ProgramDescription                            no
     22817  ProgramMode                                   no
     22818  ProgramName                                   no
     22819  Project                                       no
     22820  Protected                                     no
     22821  ProtectionType                                no
     22822  Provider                                      no
     22823  Provider                                      no
     22824  ProviderLogoURL                               no
     22825  ProviderRating                                no
     22826  ProviderStyle                                 no
     22827  ProviderURL                                   no
     22828  Publisher                                     no
     22829  Publisher                                     no
     22830  RadioBand                                     no
     22831  RadioFormat                                   no
     22832  Rating                                        no
     22833  RatingOrg                                     no
     22834  ReadStatus                                    no
     22835  RecordingTime                                 no
     22836  RecordingTime                                 no
     22837  RecordingTimeDay                              no
     22838  RecordingTimeMonth                            no
     22839  RecordingTimeYear                             no
     22840  RecordingTimeYearMonth                        no
     22841  RecordingTimeYearMonthDay                     no
     22842  ReleaseDate                                   no
     22843  ReleaseDateDay                                no
     22844  ReleaseDateMonth                              no
     22845  ReleaseDateYear                               no
     22846  ReleaseDateYearMonth                          no
     22847  ReleaseDateYearMonthDay                       no
     22848  ReminderTime                                  no
     22849  RequestState                                  no
     22850  RequiredAttendeeAddresses                     no
     22851  RequiredAttendees                             no
     22852  Rerun                                         no
     22853  Resources                                     no
     22854  SAP                                           no
     22855  Saturation                                    no
     22856  SearchRanking                                 no
     22857  SenderAddress                                 no
     22858  SenderName                                    no
     22859  Sensitivity                                   no
     22860  ShadowFilePath                                no
     22861  Shared                                        no
     22862  SharedUserRating                              no
     22863  SharedWith                                    no
     22864  Size                                          no
     22865  Slides                                        no
     22866  Source                                        no
     22867  SourceURL                                     no
     22868  SpaceFree                                     no
     22869  SpaceUsed                                     no
     22870  Spouse                                        no
     22871  StartDate                                     no
     22872  StateOrProvince                               no
     22873  StationCallSign                               no
     22874  StationName                                   no
     22875  Status                                        no
     22876  Status                                        no
     22877  Store                                         no
     22878  Street                                        no
     22879  Subject                                       no
     22880  Subject                                       no
     22881  SubjectDistance                               no
     22882  SubscriptionContentID                         no
     22883  Subtitle                                      no
     22884  Subtitle                                      no
     22885  SubtitleDescription                           no
     22886  Suffix                                        no
     22887  Summary                                       no
     22888  Sync01                                        no
     22889  Sync02                                        no
     22890  Sync03                                        no
     22891  Sync04                                        no
     22892  Sync05                                        no
     22893  Sync06                                        no
     22894  Sync07                                        no
     22895  Sync08                                        no
     22896  Sync09                                        no
     22897  Sync10                                        no
     22898  Sync11                                        no
     22899  Sync12                                        no
     22900  Sync13                                        no
     22901  Sync14                                        no
     22902  Sync15                                        no
     22903  Sync16                                        no
     22904  SyncOnly                                      no
     22905  SyncState                                     no
     22906  TTY-TTDPhone                                  no
     22907  TaskOwner                                     no
     22908  Telex                                         no
     22909  Temporary                                     no
     22910  Title                                         no
     22911  Title                                         no
     22912  TitleNum                                      no
     22913  TitleSortOrder                                no
     22914  ToAddresses                                   no
     22915  ToDoTitle                                     no
     22916  ToNames                                       no
     22917  TotalBitrate                                  no
     22918  TotalDuration                                 no
     22919  TotalEditingTime                              no
     22920  TotalFileSize                                 no
     22921  TotalSize                                     no
     22922  TrackNumber                                   no
     22923  TrackNumber                                   no
     22924  TrackingID                                    no
     22925  Type                                          no
     22926  Type                                          no
     22927  URL                                           no
     22928  UniqueFileIdentifier                          no
     22929  Untitled0                                     no
     22930  Untitled1                                     no
     22931  Untitled2                                     no
     22932  UserCustom1                                   no
     22933  UserCustom2                                   no
     22934  UserEffectiveRating                           no
     22935  UserLastPlayedTime                            no
     22936  UserPlayCount                                 no
     22937  UserPlaycountAfternoon                        no
     22938  UserPlaycountEvening                          no
     22939  UserPlaycountMorning                          no
     22940  UserPlaycountNight                            no
     22941  UserPlaycountWeekday                          no
     22942  UserPlaycountWeekend                          no
     22943  UserRating                                    no
     22944  UserServiceRating                             no
     22945  UserWebURL                                    no
     22946  VerticalResolution                            no
     22947  VideoBitrate                                  no
     22948  VideoCompression                              no
     22949  VideoFormat                                   no
     22950  VideoFrameRate                                no
     22951  VideoHeight                                   no
     22952  VideoWidth                                    no
     22953  WMCollectionGroupID                           no
     22954  WMCollectionID                                no
     22955  WMContentID                                   no
     22956  WMShadowFileSourceDRMType                     no
     22957  WMShadowFileSourceFileType                    no
     22958  Webpage                                       no
     22959  WhiteBalance                                  no
     22960  WindowsFileName                               no
     22961  WordCount                                     no
     22962  Writer                                        no
     22963  Writers                                       no
     22964  Year                                          no
     22965  Year                                          no
     22966
    1121622967=head2 GIMP Tags
    1121722968
     
    1122222973  ------   --------                             --------
    1122322974  'header' Header                               GIMP Header
    11224   0x0011   Compression                          N
     22975  0x0011   Compression                          no
    1122522976  0x0013   Resolution                           GIMP Resolution
     22977  0x0014   Tattoo                               no
    1122622978  0x0015   Parasites                            GIMP Parasite
     22979  0x0016   Units                                no
    1122722980
    1122822981=head3 GIMP Header Tags
    1122922982
    11230    Index   Tag Name                             Writable
    11231    -----   --------                             --------
    11232       9    XCFVersion                           N
    11233      14    ImageWidth                           N
    11234      18    ImageHeight                          N
    11235      22    ColorMode                            N
     22983  Index1   Tag Name                             Writable
     22984  ------   --------                             --------
     22985      9    XCFVersion                           no
     22986     14    ImageWidth                           no
     22987     18    ImageHeight                          no
     22988     22    ColorMode                            no
    1123622989
    1123722990=head3 GIMP Resolution Tags
    1123822991
    11239    Index   Tag Name                             Writable
    11240    -----   --------                             --------
    11241       0    XResolution                          N
    11242       1    YResolution                          N
     22992  Index4   Tag Name                             Writable
     22993  ------   --------                             --------
     22994      0    XResolution                          no
     22995      1    YResolution                          no
    1124322996
    1124422997=head3 GIMP Parasite Tags
    1124522998
    11246   Tag ID               Tag Name                 Writable
    11247   ------               --------                 --------
    11248   'exif-data'          ExifData                 EXIF
    11249   'gimp-comment'       Comment                  N
    11250   'gimp-metadata'      XMP                      XMP
    11251   'icc-profile'        ICC_Profile              ICC_Profile
    11252   'icc-profile-name'   ICCProfileName           N
    11253   'iptc-data'          IPTCData                 IPTC
    11254   'jpeg-exif-data'     JPEGExifData             EXIF
     22999  Tag ID                Tag Name                Writable
     23000  ------                --------                --------
     23001  'exif-data'           ExifData                EXIF
     23002  'gimp-comment'        Comment                 no
     23003  'gimp-image-metadata' XML                     XMP XML
     23004  'gimp-metadata'       XMP                     XMP
     23005  'icc-profile'         ICC_Profile             ICC_Profile
     23006  'icc-profile-name'    ICCProfileName          no
     23007  'iptc-data'           IPTCData                IPTC
     23008  'jpeg-exif-data'      JPEGExifData            EXIF
    1125523009
    1125623010=head2 MIE Tags
     
    1127323027C<TAG-xx_YY>, where C<TAG> is the tag name, C<xx> is a 2-character lower
    1127423028case ISO 639-1 language code, and C<YY> is a 2-character upper case ISO
    11275 3166-1 alpha 2 country code (ie. C<Title-en_US>).  But as usual, the user
     230293166-1 alpha 2 country code (eg. C<Title-en_US>).  But as usual, the user
    1127623030interface is case-insensitive, and ExifTool will write the correct case to
    1127723031the file.
     
    11279230333) Some numerical MIE tags allow units of measurement to be specified.  For
    1128023034these tags, units may be added in brackets immediately following the value
    11281 (ie. C<55(mi/h)>).  If no units are specified, the default units are
     23035(eg. C<55(mi/h)>).  If no units are specified, the default units are
    1128223036written.
     23037
     230384) ExifTool writes compressed metadata to MIE files if the Compress (-z)
     23039option is used and Compress::Zlib is available.
     23040
     23041See L<https://exiftool.org/MIE1.1-20070121.pdf> for the official MIE
     23042specification.
    1128323043
    1128423044  Tag ID               Tag Name                 Writable
     
    1143023190  'Copyright'          Copyright                string
    1143123191  'CreateDate'         CreateDate               string
    11432   'EMail'              EMail                    string
     23192  'EMail'              Email                    string
    1143323193  'Keywords'           Keywords                 string+
    1143423194  'ModifyDate'         ModifyDate               string
     
    1156123321  Tag ID   Tag Name                             Writable
    1156223322  ------   --------                             --------
    11563   'asoc'   Association                          N
    11564   'bfil'   BinaryFilter                         N
    11565   'bpcc'   BitsPerComponent                     N
    11566   'cdef'   ComponentDefinition                  N
    11567   'cgrp'   ColorGroup                           N
    11568   'chck'   DigitalSignature                     N
    11569   'cmap'   ComponentMapping                     N
    11570   'colr'   ICC_Profile                          ICC_Profile
    11571            Colorspace                           N
    11572            ColorSpecification                   N
    11573   'comp'   Composition                          N
    11574   'copt'   CompositionOptions                   N
    11575   'cref'   Cross-Reference                      N
    11576   'creg'   CodestreamRegistration               N
    11577   'drep'   DesiredReproductions                 N
    11578   'dtbl'   DataReference                        N
    11579   'flst'   FragmentList                         N
    11580   'free'   Free                                 N
    11581   'ftbl'   FragmentTable                        N
     23323  'asoc'   Association                          Jpeg2000
     23324  'bfil'   BinaryFilter                         no
     23325  'bpcc'   BitsPerComponent                     no
     23326  'cdef'   ComponentDefinition                  no
     23327  'cgrp'   ColorGroup                           no
     23328  'chck'   DigitalSignature                     no
     23329  'cmap'   ComponentMapping                     no
     23330  'colr'   ColorSpecification                   Jpeg2000 ColorSpec
     23331  'comp'   Composition                          no
     23332  'copt'   CompositionOptions                   no
     23333  'cref'   Cross-Reference                      no
     23334  'creg'   CodestreamRegistration               no
     23335  'drep'   DesiredReproductions                 no
     23336  'dtbl'   DataReference                        no
     23337  'flst'   FragmentList                         no
     23338  'free'   Free                                 no
     23339  'ftbl'   FragmentTable                        no
    1158223340  'ftyp'   FileType                             Jpeg2000 FileType
    11583   'gtso'   GraphicsTechnologyStandardOutput     N
     23341  'gtso'   GraphicsTechnologyStandardOutput     no
    1158423342  'ihdr'   ImageHeader                          Jpeg2000 ImageHeader
    11585   'inst'   InstructionSet                       N
    11586   'jP  '   JP2Signature                         N
    11587   'jp2c'   ContiguousCodestream                 N
     23343  'inst'   InstructionSet                       no
     23344  'jP  '   JP2Signature                         no
     23345  'jp2c'   ContiguousCodestream                 no
    1158823346  'jp2h'   JP2Header                            Jpeg2000
    1158923347  'jp2i'   IntellectualProperty                 XMP
    1159023348  'jpch'   CodestreamHeader                     Jpeg2000
    1159123349  'jplh'   CompositingLayerHeader               Jpeg2000
    11592   'lbl '   Label                                N
    11593   'mdat'   MediaData                            N
    11594   'mp7b'   MPEG7Binary                          N
    11595   'nlst'   NumberList                           N
    11596   'opct'   Opacity                              N
    11597   'pclr'   Palette                              N
    11598   'prfl'   Profile                              N
     23350  'lbl '   Label                                no
     23351  'mdat'   MediaData                            no
     23352  'mp7b'   MPEG7Binary                          no
     23353  'nlst'   NumberList                           no
     23354  'opct'   Opacity                              no
     23355  'pclr'   Palette                              no
     23356  'prfl'   Profile                              no
    1159923357  'res '   Resolution                           Jpeg2000
    1160023358  'resc'   CaptureResolution                    Jpeg2000 CaptureResolution
    1160123359  'resd'   DisplayResolution                    Jpeg2000 DisplayResolution
    11602   'roid'   ROIDescription                       N
    11603   'rreq'   ReaderRequirements                   N
     23360  'roid'   ROIDescription                       no
     23361  'rreq'   ReaderRequirements                   no
    1160423362  'uinf'   UUIDInfo                             Jpeg2000
    11605   'ulst'   UUIDList                             N
    11606   'url '   URL                                  N
     23363  'ulst'   UUIDList                             no
     23364  'url '   URL                                  no
    1160723365  'uuid'   UUID-EXIF                            EXIF
     23366           UUID-EXIF2                           EXIF
     23367           UUID-EXIF_bad                        EXIF
    1160823368           UUID-IPTC                            IPTC
     23369           UUID-IPTC2                           IPTC
    1160923370           UUID-XMP                             XMP
    1161023371           UUID-GeoJP2                          EXIF
    11611            UUID-Unknown                         N
    11612   'xml '   XML                                  XMP
     23372           UUID-Photoshop                       Photoshop
     23373           UUID-Unknown                         no
     23374  'xml '   XML                                  XMP XML
     23375
     23376=head3 Jpeg2000 ColorSpec Tags
     23377
     23378  Index1   Tag Name                             Writable
     23379  ------   --------                             --------
     23380      0    ColorSpecMethod                      no
     23381      1    ColorSpecPrecedence                  no
     23382      2    ColorSpecApproximation               no
     23383      3    ICC_Profile                          ICC_Profile
     23384           ColorSpace                           no
     23385           ColorSpecData                        no
    1161323386
    1161423387=head3 Jpeg2000 FileType Tags
    1161523388
    11616    Index   Tag Name                             Writable
    11617    -----   --------                             --------
    11618       0    MajorBrand                           N
    11619       1    MinorVersion                         N
    11620       2    CompatibleBrands                     N
     23389  Index4   Tag Name                             Writable
     23390  ------   --------                             --------
     23391      0    MajorBrand                           no
     23392      1    MinorVersion                         no
     23393      2    CompatibleBrands                     no
    1162123394
    1162223395=head3 Jpeg2000 ImageHeader Tags
    1162323396
    11624    Index   Tag Name                             Writable
    11625    -----   --------                             --------
    11626       0    ImageHeight                          N
    11627       4    ImageWidth                           N
    11628       8    NumberOfComponents                   N
    11629      10    BitsPerComponent                     N
    11630      11    Compression                          N
     23397  Index1   Tag Name                             Writable
     23398  ------   --------                             --------
     23399      0    ImageHeight                          no
     23400      4    ImageWidth                           no
     23401      8    NumberOfComponents                   no
     23402     10    BitsPerComponent                     no
     23403     11    Compression                          no
    1163123404
    1163223405=head3 Jpeg2000 CaptureResolution Tags
    1163323406
    11634    Index   Tag Name                             Writable
    11635    -----   --------                             --------
    11636       0    CaptureYResolution                   N
    11637       4    CaptureXResolution                   N
    11638       8    CaptureYResolutionUnit               N
    11639       9    CaptureXResolutionUnit               N
     23407  Index1   Tag Name                             Writable
     23408  ------   --------                             --------
     23409      0    CaptureYResolution                   no
     23410      4    CaptureXResolution                   no
     23411      8    CaptureYResolutionUnit               no
     23412      9    CaptureXResolutionUnit               no
    1164023413
    1164123414=head3 Jpeg2000 DisplayResolution Tags
    1164223415
    11643    Index   Tag Name                             Writable
    11644    -----   --------                             --------
    11645       0    DisplayYResolution                   N
    11646       4    DisplayXResolution                   N
    11647       8    DisplayYResolutionUnit               N
    11648       9    DisplayXResolutionUnit               N
     23416  Index1   Tag Name                             Writable
     23417  ------   --------                             --------
     23418      0    DisplayYResolution                   no
     23419      4    DisplayXResolution                   no
     23420      8    DisplayYResolutionUnit               no
     23421      9    DisplayXResolutionUnit               no
    1164923422
    1165023423=head2 GIF Tags
     
    1165623429  Tag Name                                      Writable
    1165723430  --------                                      --------
    11658   AnimationExtension                            GIF Animate
    11659   Comment                                       Y
    11660   Duration                                      N
    11661   FrameCount                                    N
    11662   GIFVersion                                    N
     23431  Comment                                       yes
     23432  Duration                                      no
     23433  Extensions                                    GIF Extensions
     23434  FrameCount                                    no
     23435  GIFVersion                                    no
    1166323436  ScreenDescriptor                              GIF Screen
    11664   Text                                          N
    11665   XMPExtension                                  XMP
    11666 
    11667 =head3 GIF Animate Tags
     23437  Text                                          no
     23438
     23439=head3 GIF Extensions Tags
     23440
     23441Tags extracted from GIF89a application extensions.
     23442
     23443  Tag ID               Tag Name                 Writable
     23444  ------               --------                 --------
     23445  'ICCRGBG1/012'       ICC_Profile              ICC_Profile
     23446  'MIDICTRL/Jon'       MIDIControl              GIF MIDIControl
     23447  'MIDISONG/Dm7'       MIDISong                 no
     23448  'NETSCAPE/2.0'       Animation                GIF Animation
     23449  'XMP Data/XMP'       XMP                      XMP
     23450
     23451=head3 GIF MIDIControl Tags
     23452
     23453Information extracted from the MIDI control block extension.
     23454
     23455  Index1   Tag Name                             Writable
     23456  ------   --------                             --------
     23457      0    MIDIControlVersion                   no
     23458      1    SequenceNumber                       no
     23459      2    MelodicPolyphony                     no
     23460      3    PercussivePolyphony                  no
     23461      4    ChannelUsage                         no
     23462      6    DelayTime                            no
     23463
     23464=head3 GIF Animation Tags
    1166823465
    1166923466Information extracted from the "NETSCAPE2.0" animation extension.
    1167023467
    11671    Index   Tag Name                             Writable
    11672    -----   --------                             --------
    11673       2    AnimationIterations                  N
     23468  Index1   Tag Name                             Writable
     23469  ------   --------                             --------
     23470      1    AnimationIterations                  no
    1167423471
    1167523472=head3 GIF Screen Tags
     
    1167723474Information extracted from the GIF logical screen descriptor.
    1167823475
    11679    Index   Tag Name                             Writable
    11680    -----   --------                             --------
    11681       0    ImageWidth                           N
    11682       2    ImageHeight                          N
    11683     4.1    HasColorMap                          N
    11684     4.2    ColorResolutionDepth                 N
    11685     4.3    BitsPerPixel                         N
    11686       5    BackgroundColor                      N
     23476  Index1   Tag Name                             Writable
     23477  ------   --------                             --------
     23478      0    ImageWidth                           no
     23479      2    ImageHeight                          no
     23480    4.1    HasColorMap                          no
     23481    4.2    ColorResolutionDepth                 no
     23482    4.3    BitsPerPixel                         no
     23483      5    BackgroundColor                      no
     23484      6    PixelAspectRatio                     no
    1168723485
    1168823486=head2 BMP Tags
     
    1169123489of image related information.
    1169223490
    11693    Index   Tag Name                             Writable
    11694    -----   --------                             --------
    11695       4    ImageWidth                           N
    11696       8    ImageHeight                          N
    11697      12    Planes                               N
    11698      14    BitDepth                             N
    11699      16    Compression                          N
    11700      20    ImageLength                          N
    11701      24    PixelsPerMeterX                      N
    11702      28    PixelsPerMeterY                      N
    11703      32    NumColors                            N
    11704      36    NumImportantColors                   N
     23491  Index1   Tag Name                             Writable
     23492  ------   --------                             --------
     23493      0    BMPVersion                           no
     23494      4    ImageWidth                           no
     23495      8    ImageHeight                          no
     23496     12    Planes                               no
     23497     14    BitDepth                             no
     23498     16    Compression                          no
     23499     20    ImageLength                          no
     23500     24    PixelsPerMeterX                      no
     23501     28    PixelsPerMeterY                      no
     23502     32    NumColors                            no
     23503     36    NumImportantColors                   no
     23504     40    RedMask                              no
     23505     44    GreenMask                            no
     23506     48    BlueMask                             no
     23507     52    AlphaMask                            no
     23508     56    ColorSpace                           no
     23509     60    RedEndpoint                          no
     23510     72    GreenEndpoint                        no
     23511     84    BlueEndpoint                         no
     23512     96    GammaRed                             no
     23513    100    GammaGreen                           no
     23514    104    GammaBlue                            no
     23515    108    RenderingIntent                      no
     23516    112    ProfileDataOffset                    no
     23517    116    ProfileSize                          no
    1170523518
    1170623519=head3 BMP OS2 Tags
     
    1170823521Information extracted from OS/2-format BMP images.
    1170923522
    11710    Index   Tag Name                             Writable
    11711    -----   --------                             --------
    11712       4    ImageWidth                           N
    11713       6    ImageHeight                          N
    11714       8    Planes                               N
    11715      10    BitDepth                             N
     23523  Index1   Tag Name                             Writable
     23524  ------   --------                             --------
     23525      0    BMPVersion                           no
     23526      4    ImageWidth                           no
     23527      6    ImageHeight                          no
     23528      8    Planes                               no
     23529     10    BitDepth                             no
     23530
     23531=head3 BMP Extra Tags
     23532
     23533Extra information extracted from some BMP images.
     23534
     23535  Tag Name                                      Writable
     23536  --------                                      --------
     23537  EmbeddedJPG                                   no
     23538  EmbeddedPNG                                   no
     23539  ICC_Profile                                   ICC_Profile
     23540  LinkedProfileName                             no
     23541
     23542=head2 BPG Tags
     23543
     23544The information listed below is extracted from BPG (Better Portable
     23545Graphics) images.  See L<http://bellard.org/bpg/> for the specification.
     23546
     23547  Index1   Tag Name                             Writable
     23548  ------   --------                             --------
     23549      4    PixelFormat                          no
     23550    4.1    Alpha                                no
     23551    4.2    BitDepth                             no
     23552    4.3    ColorSpace                           no
     23553    4.4    Flags                                no
     23554      6    ImageWidth                           no
     23555      7    ImageHeight                          no
     23556      8    ImageLength                          no
     23557
     23558=head3 BPG Extensions Tags
     23559
     23560  Tag ID   Tag Name                             Writable
     23561  ------   --------                             --------
     23562  0x0001   EXIF                                 EXIF
     23563  0x0002   ICC_Profile                          ICC_Profile
     23564  0x0003   XMP                                  XMP
     23565  0x0004   ThumbnailBPG                         no
     23566  0x0005   AnimationControl?                    no
    1171623567
    1171723568=head2 PICT Tags
     
    1172523576  Tag ID   Tag Name                             Writable
    1172623577  ------   --------                             --------
    11727   0x0000   Nop                                  N
    11728   0x0001   ClipRgn                              N
    11729   0x0002   BkPat                                N
    11730   0x0003   TxFont                               N
    11731   0x0004   TxFace                               N
    11732   0x0005   TxMode                               N
    11733   0x0006   SpExtra                              N
    11734   0x0007   PnSize                               N
    11735   0x0008   PnMode                               N
    11736   0x0009   PnPat                                N
    11737   0x000a   FillPat                              N
    11738   0x000b   OvSize                               N
    11739   0x000c   Origin                               N
    11740   0x000d   TxSize                               N
    11741   0x000e   FgColor                              N
    11742   0x000f   BkColor                              N
    11743   0x0010   TxRatio                              N
    11744   0x0011   VersionOp                            N
    11745   0x0012   BkPixPat                             N
    11746   0x0013   PnPixPat                             N
    11747   0x0014   FillPixPat                           N
    11748   0x0015   PnLocHFrac                           N
    11749   0x0016   ChExtra                              N
    11750   0x0017   Reserved                             N
    11751   0x001a   RGBFgCol                             N
    11752   0x001b   RGBBkCol                             N
    11753   0x001c   HiliteMode                           N
    11754   0x001d   HiliteColor                          N
    11755   0x001e   DefHilite                            N
    11756   0x001f   OpColor                              N
    11757   0x0020   Line                                 N
    11758   0x0021   LineFrom                             N
    11759   0x0022   ShortLine                            N
    11760   0x0023   ShortLineFrom                        N
    11761   0x0024   Reserved                             N
    11762   0x0028   LongText                             N
    11763   0x0029   DHText                               N
    11764   0x002a   DVText                               N
    11765   0x002b   DHDVText                             N
    11766   0x002c   FontName                             N
    11767   0x002d   LineJustify                          N
    11768   0x002e   GlyphState                           N
    11769   0x002f   Reserved                             N
    11770   0x0030   FrameRect                            N
    11771   0x0031   PaintRect                            N
    11772   0x0032   EraseRect                            N
    11773   0x0033   InvertRect                           N
    11774   0x0034   FillRect                             N
    11775   0x0035   Reserved                             N
    11776   0x0038   FrameSameRect                        N
    11777   0x0039   PaintSameRect                        N
    11778   0x003a   EraseSameRect                        N
    11779   0x003b   InvertSameRect                       N
    11780   0x003c   FillSameRect                         N
    11781   0x003d   Reserved                             N
    11782   0x0040   FrameRRect                           N
    11783   0x0041   PaintRRect                           N
    11784   0x0042   EraseRRect                           N
    11785   0x0043   InvertRRect                          N
    11786   0x0044   FillRRect                            N
    11787   0x0045   Reserved                             N
    11788   0x0048   FrameSameRRect                       N
    11789   0x0049   PaintSameRRect                       N
    11790   0x004a   EraseSameRRect                       N
    11791   0x004b   InvertSameRRect                      N
    11792   0x004c   FillSameRRect                        N
    11793   0x004d   Reserved                             N
    11794   0x0050   FrameOval                            N
    11795   0x0051   PaintOval                            N
    11796   0x0052   EraseOval                            N
    11797   0x0053   InvertOval                           N
    11798   0x0054   FillOval                             N
    11799   0x0055   Reserved                             N
    11800   0x0058   FrameSameOval                        N
    11801   0x0059   PaintSameOval                        N
    11802   0x005a   EraseSameOval                        N
    11803   0x005b   InvertSameOval                       N
    11804   0x005c   FillSameOval                         N
    11805   0x005d   Reserved                             N
    11806   0x0060   FrameArc                             N
    11807   0x0061   PaintArc                             N
    11808   0x0062   EraseArc                             N
    11809   0x0063   InvertArc                            N
    11810   0x0064   FillArc                              N
    11811   0x0065   Reserved                             N
    11812   0x0068   FrameSameArc                         N
    11813   0x0069   PaintSameArc                         N
    11814   0x006a   EraseSameArc                         N
    11815   0x006b   InvertSameArc                        N
    11816   0x006c   FillSameArc                          N
    11817   0x006d   Reserved                             N
    11818   0x0070   FramePoly                            N
    11819   0x0071   PaintPoly                            N
    11820   0x0072   ErasePoly                            N
    11821   0x0073   InvertPoly                           N
    11822   0x0074   FillPoly                             N
    11823   0x0075   Reserved                             N
    11824   0x0078   FrameSamePoly                        N
    11825   0x0079   PaintSamePoly                        N
    11826   0x007a   EraseSamePoly                        N
    11827   0x007b   InvertSamePoly                       N
    11828   0x007c   FillSamePoly                         N
    11829   0x007d   Reserved                             N
    11830   0x0080   FrameRgn                             N
    11831   0x0081   PaintRgn                             N
    11832   0x0082   EraseRgn                             N
    11833   0x0083   InvertRgn                            N
    11834   0x0084   FillRgn                              N
    11835   0x0085   Reserved                             N
    11836   0x0088   FrameSameRgn                         N
    11837   0x0089   PaintSameRgn                         N
    11838   0x008a   EraseSameRgn                         N
    11839   0x008b   InvertSameRgn                        N
    11840   0x008c   FillSameRgn                          N
    11841   0x008d   Reserved                             N
    11842   0x0090   BitsRect                             N
    11843   0x0091   BitsRgn                              N
    11844   0x0092   Reserved                             N
    11845   0x0098   PackBitsRect                         N
    11846   0x0099   PackBitsRgn                          N
    11847   0x009a   DirectBitsRect                       N
    11848   0x009b   DirectBitsRgn                        N
    11849   0x009c   Reserved                             N
    11850   0x009d   Reserved                             N
    11851   0x009e   Reserved                             N
    11852   0x009f   Reserved                             N
    11853   0x00a0   ShortComment                         N
     23578  0x0000   Nop                                  no
     23579  0x0001   ClipRgn                              no
     23580  0x0002   BkPat                                no
     23581  0x0003   TxFont                               no
     23582  0x0004   TxFace                               no
     23583  0x0005   TxMode                               no
     23584  0x0006   SpExtra                              no
     23585  0x0007   PnSize                               no
     23586  0x0008   PnMode                               no
     23587  0x0009   PnPat                                no
     23588  0x000a   FillPat                              no
     23589  0x000b   OvSize                               no
     23590  0x000c   Origin                               no
     23591  0x000d   TxSize                               no
     23592  0x000e   FgColor                              no
     23593  0x000f   BkColor                              no
     23594  0x0010   TxRatio                              no
     23595  0x0011   VersionOp                            no
     23596  0x0012   BkPixPat                             no
     23597  0x0013   PnPixPat                             no
     23598  0x0014   FillPixPat                           no
     23599  0x0015   PnLocHFrac                           no
     23600  0x0016   ChExtra                              no
     23601  0x0017   Reserved                             no
     23602  0x001a   RGBFgCol                             no
     23603  0x001b   RGBBkCol                             no
     23604  0x001c   HiliteMode                           no
     23605  0x001d   HiliteColor                          no
     23606  0x001e   DefHilite                            no
     23607  0x001f   OpColor                              no
     23608  0x0020   Line                                 no
     23609  0x0021   LineFrom                             no
     23610  0x0022   ShortLine                            no
     23611  0x0023   ShortLineFrom                        no
     23612  0x0024   Reserved                             no
     23613  0x0028   LongText                             no
     23614  0x0029   DHText                               no
     23615  0x002a   DVText                               no
     23616  0x002b   DHDVText                             no
     23617  0x002c   FontName                             no
     23618  0x002d   LineJustify                          no
     23619  0x002e   GlyphState                           no
     23620  0x002f   Reserved                             no
     23621  0x0030   FrameRect                            no
     23622  0x0031   PaintRect                            no
     23623  0x0032   EraseRect                            no
     23624  0x0033   InvertRect                           no
     23625  0x0034   FillRect                             no
     23626  0x0035   Reserved                             no
     23627  0x0038   FrameSameRect                        no
     23628  0x0039   PaintSameRect                        no
     23629  0x003a   EraseSameRect                        no
     23630  0x003b   InvertSameRect                       no
     23631  0x003c   FillSameRect                         no
     23632  0x003d   Reserved                             no
     23633  0x0040   FrameRRect                           no
     23634  0x0041   PaintRRect                           no
     23635  0x0042   EraseRRect                           no
     23636  0x0043   InvertRRect                          no
     23637  0x0044   FillRRect                            no
     23638  0x0045   Reserved                             no
     23639  0x0048   FrameSameRRect                       no
     23640  0x0049   PaintSameRRect                       no
     23641  0x004a   EraseSameRRect                       no
     23642  0x004b   InvertSameRRect                      no
     23643  0x004c   FillSameRRect                        no
     23644  0x004d   Reserved                             no
     23645  0x0050   FrameOval                            no
     23646  0x0051   PaintOval                            no
     23647  0x0052   EraseOval                            no
     23648  0x0053   InvertOval                           no
     23649  0x0054   FillOval                             no
     23650  0x0055   Reserved                             no
     23651  0x0058   FrameSameOval                        no
     23652  0x0059   PaintSameOval                        no
     23653  0x005a   EraseSameOval                        no
     23654  0x005b   InvertSameOval                       no
     23655  0x005c   FillSameOval                         no
     23656  0x005d   Reserved                             no
     23657  0x0060   FrameArc                             no
     23658  0x0061   PaintArc                             no
     23659  0x0062   EraseArc                             no
     23660  0x0063   InvertArc                            no
     23661  0x0064   FillArc                              no
     23662  0x0065   Reserved                             no
     23663  0x0068   FrameSameArc                         no
     23664  0x0069   PaintSameArc                         no
     23665  0x006a   EraseSameArc                         no
     23666  0x006b   InvertSameArc                        no
     23667  0x006c   FillSameArc                          no
     23668  0x006d   Reserved                             no
     23669  0x0070   FramePoly                            no
     23670  0x0071   PaintPoly                            no
     23671  0x0072   ErasePoly                            no
     23672  0x0073   InvertPoly                           no
     23673  0x0074   FillPoly                             no
     23674  0x0075   Reserved                             no
     23675  0x0078   FrameSamePoly                        no
     23676  0x0079   PaintSamePoly                        no
     23677  0x007a   EraseSamePoly                        no
     23678  0x007b   InvertSamePoly                       no
     23679  0x007c   FillSamePoly                         no
     23680  0x007d   Reserved                             no
     23681  0x0080   FrameRgn                             no
     23682  0x0081   PaintRgn                             no
     23683  0x0082   EraseRgn                             no
     23684  0x0083   InvertRgn                            no
     23685  0x0084   FillRgn                              no
     23686  0x0085   Reserved                             no
     23687  0x0088   FrameSameRgn                         no
     23688  0x0089   PaintSameRgn                         no
     23689  0x008a   EraseSameRgn                         no
     23690  0x008b   InvertSameRgn                        no
     23691  0x008c   FillSameRgn                          no
     23692  0x008d   Reserved                             no
     23693  0x0090   BitsRect                             no
     23694  0x0091   BitsRgn                              no
     23695  0x0092   Reserved                             no
     23696  0x0098   PackBitsRect                         no
     23697  0x0099   PackBitsRgn                          no
     23698  0x009a   DirectBitsRect                       no
     23699  0x009b   DirectBitsRgn                        no
     23700  0x009c   Reserved                             no
     23701  0x009d   Reserved                             no
     23702  0x009e   Reserved                             no
     23703  0x009f   Reserved                             no
     23704  0x00a0   ShortComment                         no
    1185423705  0x00a1   LongComment                          Photoshop
    1185523706                                                ICC_Profile
    11856   0x00a2   Reserved                             N
    11857   0x00b0   Reserved                             N
    11858   0x00d0   Reserved                             N
    11859   0x00ff   OpEndPic                             N
    11860   0x0100   Reserved                             N
    11861   0x0200   Reserved                             N
    11862   0x02ff   Version                              N
    11863   0x0300   Reserved                             N
    11864   0x0bff   Reserved                             N
    11865   0x0c00   HeaderOp                             N
    11866   0x0c01   Reserved                             N
    11867   0x7f00   Reserved                             N
    11868   0x8000   Reserved                             N
    11869   0x8100   Reserved                             N
    11870   0x8200   CompressedQuickTime                  N
    11871   0x8201   UncompressedQuickTime                N
    11872   0xffff   Reserved                             N
     23707  0x00a2   Reserved                             no
     23708  0x00b0   Reserved                             no
     23709  0x00d0   Reserved                             no
     23710  0x00ff   OpEndPic                             no
     23711  0x0100   Reserved                             no
     23712  0x0200   Reserved                             no
     23713  0x02ff   Version                              no
     23714  0x0300   Reserved                             no
     23715  0x0bff   Reserved                             no
     23716  0x0c00   HeaderOp                             no
     23717  0x0c01   Reserved                             no
     23718  0x7f00   Reserved                             no
     23719  0x8000   Reserved                             no
     23720  0x8100   Reserved                             no
     23721  0x8200   CompressedQuickTime                  no
     23722  0x8201   UncompressedQuickTime                no
     23723  0xffff   Reserved                             no
    1187323724
    1187423725=head2 PNG Tags
     
    1187823729specification.
    1187923730
    11880   Tag ID   Tag Name                             Writable
    11881   ------   --------                             --------
    11882   'IHDR'   ImageHeader                          PNG ImageHeader
    11883   'PLTE'   Palette                              N
    11884   'bKGD'   BackgroundColor                      N
    11885   'cHRM'   PrimaryChromaticities                PNG PrimaryChromaticities
    11886   'dSIG'   DigitalSignature                     N
    11887   'fRAc'   FractalParameters                    N
    11888   'gAMA'   Gamma                                N
    11889   'gIFg'   GIFGraphicControlExtension           N
    11890   'gIFt'   GIFPlainTextExtension                N
    11891   'gIFx'   GIFApplicationExtension              N
    11892   'hIST'   PaletteHistogram                     N
    11893   'iCCP'   ICC_Profile                          ICC_Profile
    11894   'iTXt'   InternationalText                    PNG TextualData
    11895   'oFFs'   ImageOffset                          N
    11896   'pCAL'   PixelCalibration                     N
    11897   'pHYs'   PhysicalPixel                        PNG PhysicalPixel
    11898   'sBIT'   SignificantBits                      N
    11899   'sCAL'   SubjectScale                         PNG SubjectScale
    11900   'sPLT'   SuggestedPalette                     N
    11901   'sRGB'   SRGBRendering                        N
    11902   'sTER'   StereoImage                          PNG StereoImage
    11903   'tEXt'   TextualData                          PNG TextualData
    11904   'tIME'   ModifyDate                           Y
    11905   'tRNS'   Transparency                         N
    11906   'tXMP'   XMP                                  XMP
    11907   'vpAg'   VirtualPage                          PNG VirtualPage
    11908   'zTXt'   CompressedText                       PNG TextualData
     23731According to the specification, a PNG file should end at the IEND chunk,
     23732however ExifTool will preserve any data found after this when writing unless
     23733it is specifically deleted with C<-Trailer:All=>.  When reading, a minor
     23734warning is issued if this trailer exists, and ExifTool will attempt to parse
     23735this data as additional PNG chunks.
     23736
     23737Also according to the PNG specification, there is no restriction on the
     23738location of text-type chunks (tEXt, zTXt and iTXt).  However, certain
     23739utilities (including some Apple and Adobe utilities) won't read the XMP iTXt
     23740chunk if it comes after the IDAT chunk, and at least one utility won't read
     23741other text chunks here.  For this reason, when writing, ExifTool 11.63 and
     23742later create new text chunks (including XMP) before IDAT, and move existing
     23743text chunks to before IDAT.
     23744
     23745The PNG format contains CRC checksums that are validated when reading with
     23746either the Verbose or Validate option.  When writing, these checksums are
     23747validated by default, but the FastScan option may be used to bypass this
     23748check if speed is more of a concern.
     23749
     23750  Tag ID             Tag Name                   Writable
     23751  ------             --------                   --------
     23752  'IHDR'             ImageHeader                PNG ImageHeader
     23753  'PLTE'             Palette                    no
     23754  'acTL'             AnimationControl           PNG AnimationControl
     23755  'bKGD'             BackgroundColor            no
     23756  'cHRM'             PrimaryChromaticities      PNG PrimaryChromaticities
     23757  'dSIG'             DigitalSignature           no
     23758  'eXIf'             eXIf                       EXIF
     23759  'fRAc'             FractalParameters          no
     23760  'gAMA'             Gamma                      no
     23761  'gIFg'             GIFGraphicControlExtension no
     23762  'gIFt'             GIFPlainTextExtension      no
     23763  'gIFx'             GIFApplicationExtension    no
     23764  'hIST'             PaletteHistogram           no
     23765  'iCCP'             ICC_Profile                ICC_Profile
     23766  'iCCP-name'        ProfileName                no
     23767  'iDOT'             AppleDataOffsets           no
     23768  'iTXt'             InternationalText          PNG TextualData
     23769  'oFFs'             ImageOffset                no
     23770  'pCAL'             PixelCalibration           no
     23771  'pHYs'             PhysicalPixel              PNG PhysicalPixel
     23772  'sBIT'             SignificantBits            no
     23773  'sCAL'             SubjectScale               PNG SubjectScale
     23774  'sPLT'             SuggestedPalette           no
     23775  'sRGB'             SRGBRendering              no
     23776  'sTER'             StereoImage                PNG StereoImage
     23777  'tEXt'             TextualData                PNG TextualData
     23778  'tIME'             ModifyDate                 yes
     23779  'tRNS'             Transparency               no
     23780  'tXMP'             XMP                        XMP
     23781  'vpAg'             VirtualPage                PNG VirtualPage
     23782  'zTXt'             CompressedText             PNG TextualData
     23783  'zxIf'             zxIf                       EXIF
    1190923784
    1191023785=head3 PNG ImageHeader Tags
    1191123786
    11912    Index   Tag Name                             Writable
    11913    -----   --------                             --------
    11914       0    ImageWidth                           N
    11915       4    ImageHeight                          N
    11916       8    BitDepth                             N
    11917       9    ColorType                            N
    11918      10    Compression                          N
    11919      11    Filter                               N
    11920      12    Interlace                            N
     23787  Index1   Tag Name                             Writable
     23788  ------   --------                             --------
     23789      0    ImageWidth                           no
     23790      4    ImageHeight                          no
     23791      8    BitDepth                             no
     23792      9    ColorType                            no
     23793     10    Compression                          no
     23794     11    Filter                               no
     23795     12    Interlace                            no
     23796
     23797=head3 PNG AnimationControl Tags
     23798
     23799Tags found in the Animation Control chunk.  See
     23800L<https://wiki.mozilla.org/APNG_Specification> for details.
     23801
     23802  Index4   Tag Name                             Writable
     23803  ------   --------                             --------
     23804      0    AnimationFrames                      no
     23805      1    AnimationPlays                       no
    1192123806
    1192223807=head3 PNG PrimaryChromaticities Tags
    1192323808
    11924    Index   Tag Name                             Writable
    11925    -----   --------                             --------
    11926       0    WhitePointX                          N
    11927       1    WhitePointY                          N
    11928       2    RedX                                 N
    11929       3    RedY                                 N
    11930       4    GreenX                               N
    11931       5    GreenY                               N
    11932       6    BlueX                                N
    11933       7    BlueY                                N
     23809  Index4   Tag Name                             Writable
     23810  ------   --------                             --------
     23811      0    WhitePointX                          no
     23812      1    WhitePointY                          no
     23813      2    RedX                                 no
     23814      3    RedY                                 no
     23815      4    GreenX                               no
     23816      5    GreenY                               no
     23817      6    BlueX                                no
     23818      7    BlueY                                no
    1193423819
    1193523820=head3 PNG TextualData Tags
     
    1193823823listed below are the only ones that can be written (unless new user-defined
    1193923824tags are added via the configuration file), however ExifTool will extract
    11940 any other TextualData tags that are found.
     23825any other TextualData tags that are found.  All TextualData tags (including
     23826tags not listed below) are removed when deleting all PNG tags.
    1194123827
    1194223828These tags may be stored as tEXt, zTXt or iTXt chunks in the PNG image.  By
     
    1195023836
    1195123837Alternate languages are accessed by suffixing the tag name with a '-',
    11952 followed by an RFC 3066 language code (ie. "PNG:Comment-fr", or
     23838followed by an RFC 3066 language code (eg. "PNG:Comment-fr", or
    1195323839"Title-en-US").  See L<http://www.ietf.org/rfc/rfc3066.txt> for the RFC 3066
    1195423840specification.
     
    1196223848  'Artist'                Artist                string
    1196323849  'Author'                Author                string
     23850  'Collection'            Collection            string
    1196423851  'Comment'               Comment               string
    1196523852  'Copyright'             Copyright             string
     
    1197123858  'Make'                  Make                  string
    1197223859  'Model'                 Model                 string
     23860  'Raw profile type 8bim' Photoshop_Profile     Photoshop
    1197323861  'Raw profile type APP1' APP1_Profile          EXIF
    1197423862                                                XMP
     
    1199023878=head3 PNG PhysicalPixel Tags
    1199123879
    11992    Index   Tag Name                             Writable
    11993    -----   --------                             --------
    11994       0    PixelsPerUnitX                       N
    11995       4    PixelsPerUnitY                       N
    11996       8    PixelUnits                           N
     23880These tags are found in the PNG pHYs chunk and belong to the PNG-pHYs family
     238811 group.  They are all created together with default values if necessary
     23882when any of these tags is written, and may only be deleted as a group.
     23883
     23884  Index1   Tag Name                             Writable
     23885  ------   --------                             --------
     23886      0    PixelsPerUnitX                       int32u
     23887      4    PixelsPerUnitY                       int32u
     23888      8    PixelUnits                           int8u
    1199723889
    1199823890=head3 PNG SubjectScale Tags
    1199923891
    12000    Index   Tag Name                             Writable
    12001    -----   --------                             --------
    12002       0    SubjectUnits                         N
    12003       1    SubjectPixelWidth                    N
    12004       2    SubjectPixelHeight                   N
     23892  Index1   Tag Name                             Writable
     23893  ------   --------                             --------
     23894      0    SubjectUnits                         no
     23895      1    SubjectPixelWidth                    no
     23896      2    SubjectPixelHeight                   no
    1200523897
    1200623898=head3 PNG StereoImage Tags
    1200723899
    12008    Index   Tag Name                             Writable
    12009    -----   --------                             --------
    12010       0    StereoMode                           N
     23900  Index1   Tag Name                             Writable
     23901  ------   --------                             --------
     23902      0    StereoMode                           no
    1201123903
    1201223904=head3 PNG VirtualPage Tags
    1201323905
    12014    Index   Tag Name                             Writable
    12015    -----   --------                             --------
    12016       0    VirtualImageWidth                    N
    12017       1    VirtualImageHeight                   N
    12018       2    VirtualPageUnits                     N
     23906  Index4   Tag Name                             Writable
     23907  ------   --------                             --------
     23908      0    VirtualImageWidth                    no
     23909      1    VirtualImageHeight                   no
     23910      2    VirtualPageUnits                     no
    1201923911
    1202023912=head2 MNG Tags
     
    1203123923  'CLIP'   ClipObjects                          MNG ClipObjects
    1203223924  'CLON'   CloneObject                          MNG CloneObject
    12033   'DBYK'   DropByKeyword                        N
     23925  'DBYK'   DropByKeyword                        no
    1203423926  'DEFI'   DefineObject                         MNG DefineObject
    1203523927  'DHDR'   DeltaPNGHeader                       MNG DeltaPNGHeader
    12036   'DISC'   DiscardObjects                       N
    12037   'DROP'   DropChunks                           N
    12038   'FRAM'   Frame                                N
     23928  'DISC'   DiscardObjects                       no
     23929  'DROP'   DropChunks                           no
     23930  'FRAM'   Frame                                no
    1203923931  'JHDR'   JNGHeader                            MNG JNGHeader
    1204023932  'LOOP'   Loop                                 MNG Loop
     
    1204223934  'MHDR'   MNGHeader                            MNG MNGHeader
    1204323935  'MOVE'   MoveObjects                          MNG MoveObjects
    12044   'ORDR'   OrderingRestrictions                 N
     23936  'ORDR'   OrderingRestrictions                 no
    1204523937  'PAST'   PasteImage                           MNG PasteImage
    12046   'PPLT'   PartialPalette                       N
     23938  'PPLT'   PartialPalette                       no
    1204723939  'PROM'   PromoteParent                        MNG PromoteParent
    12048   'SAVE'   SaveObjects                          N
    12049   'SEEK'   SeekPoint                            N
     23940  'SAVE'   SaveObjects                          no
     23941  'SEEK'   SeekPoint                            no
    1205023942  'SHOW'   ShowObjects                          MNG ShowObjects
    1205123943  'TERM'   TerminationAction                    MNG TerminationAction
    1205223944  'eXPi'   ExportImage                          MNG ExportImage
    1205323945  'fPRI'   FramePriority                        MNG FramePriority
    12054   'nEED'   ResourcesNeeded                      N
     23946  'nEED'   ResourcesNeeded                      no
    1205523947  'pHYg'   GlobalPixelSize                      PNG PhysicalPixel
    1205623948
    1205723949=head3 MNG Background Tags
    1205823950
    12059    Index   Tag Name                             Writable
    12060    -----   --------                             --------
    12061       0    BackgroundColor                      N
    12062       6    MandatoryBackground                  N
    12063       7    BackgroundImageID                    N
    12064       9    BackgroundTiling                     N
     23951  Index1   Tag Name                             Writable
     23952  ------   --------                             --------
     23953      0    BackgroundColor                      no
     23954      6    MandatoryBackground                  no
     23955      7    BackgroundImageID                    no
     23956      9    BackgroundTiling                     no
    1206523957
    1206623958=head3 MNG BasisObject Tags
    1206723959
    12068    Index   Tag Name                             Writable
    12069    -----   --------                             --------
    12070       0    ImageWidth                           N
    12071       4    ImageHeight                          N
    12072       8    BitDepth                             N
    12073       9    ColorType                            N
    12074      10    Compression                          N
    12075      11    Filter                               N
    12076      12    Interlace                            N
    12077      13    RedSample                            N
    12078      17    GreenSample                          N
    12079      21    BlueSample                           N
    12080      25    AlphaSample                          N
    12081      26    Viewable                             N
     23960  Index1   Tag Name                             Writable
     23961  ------   --------                             --------
     23962      0    ImageWidth                           no
     23963      4    ImageHeight                          no
     23964      8    BitDepth                             no
     23965      9    ColorType                            no
     23966     10    Compression                          no
     23967     11    Filter                               no
     23968     12    Interlace                            no
     23969     13    RedSample                            no
     23970     17    GreenSample                          no
     23971     21    BlueSample                           no
     23972     25    AlphaSample                          no
     23973     26    Viewable                             no
    1208223974
    1208323975=head3 MNG ClipObjects Tags
    1208423976
    12085    Index   Tag Name                             Writable
    12086    -----   --------                             --------
    12087       0    FirstObject                          N
    12088       2    LastObject                           N
    12089       4    DeltaType                            N
    12090       5    ClipBoundary                         N
     23977  Index1   Tag Name                             Writable
     23978  ------   --------                             --------
     23979      0    FirstObject                          no
     23980      2    LastObject                           no
     23981      4    DeltaType                            no
     23982      5    ClipBoundary                         no
    1209123983
    1209223984=head3 MNG CloneObject Tags
    1209323985
    12094    Index   Tag Name                             Writable
    12095    -----   --------                             --------
    12096       0    SourceID                             N
    12097       2    CloneID                              N
    12098       4    CloneType                            N
    12099       5    DoNotShow                            N
    12100       6    ConcreteFlag                         N
    12101       7    LocalDeltaType                       N
    12102       8    DeltaXY                              N
     23986  Index1   Tag Name                             Writable
     23987  ------   --------                             --------
     23988      0    SourceID                             no
     23989      2    CloneID                              no
     23990      4    CloneType                            no
     23991      5    DoNotShow                            no
     23992      6    ConcreteFlag                         no
     23993      7    LocalDeltaType                       no
     23994      8    DeltaXY                              no
    1210323995
    1210423996=head3 MNG DefineObject Tags
    1210523997
    12106    Index   Tag Name                             Writable
    12107    -----   --------                             --------
    12108       0    ObjectID                             N
    12109       2    DoNotShow                            N
    12110       3    ConcreteFlag                         N
    12111       4    XYLocation                           N
    12112      12    ClippingBoundary                     N
     23998  Index1   Tag Name                             Writable
     23999  ------   --------                             --------
     24000      0    ObjectID                             no
     24001      2    DoNotShow                            no
     24002      3    ConcreteFlag                         no
     24003      4    XYLocation                           no
     24004     12    ClippingBoundary                     no
    1211324005
    1211424006=head3 MNG DeltaPNGHeader Tags
    1211524007
    12116    Index   Tag Name                             Writable
    12117    -----   --------                             --------
    12118       0    ObjectID                             N
    12119       2    ImageType                            N
    12120       3    DeltaType                            N
    12121       4    BlockSize                            N
    12122      12    BlockLocation                        N
     24008  Index1   Tag Name                             Writable
     24009  ------   --------                             --------
     24010      0    ObjectID                             no
     24011      2    ImageType                            no
     24012      3    DeltaType                            no
     24013      4    BlockSize                            no
     24014     12    BlockLocation                        no
    1212324015
    1212424016=head3 MNG JNGHeader Tags
    1212524017
    12126    Index   Tag Name                             Writable
    12127    -----   --------                             --------
    12128       0    ImageWidth                           N
    12129       4    ImageHeight                          N
    12130       8    ColorType                            N
    12131       9    BitDepth                             N
    12132      10    Compression                          N
    12133      11    Interlace                            N
    12134      12    AlphaBitDepth                        N
    12135      13    AlphaCompression                     N
    12136      14    AlphaFilter                          N
    12137      15    AlphaInterlace                       N
     24018  Index1   Tag Name                             Writable
     24019  ------   --------                             --------
     24020      0    ImageWidth                           no
     24021      4    ImageHeight                          no
     24022      8    ColorType                            no
     24023      9    BitDepth                             no
     24024     10    Compression                          no
     24025     11    Interlace                            no
     24026     12    AlphaBitDepth                        no
     24027     13    AlphaCompression                     no
     24028     14    AlphaFilter                          no
     24029     15    AlphaInterlace                       no
    1213824030
    1213924031=head3 MNG Loop Tags
    1214024032
    12141    Index   Tag Name                             Writable
    12142    -----   --------                             --------
    12143       0    NestLevel                            N
    12144       1    IterationCount                       N
    12145       5    TerminationCondition                 N
    12146       6    IterationMinMax                      N
    12147      14    SignalNumber                         N
     24033  Index1   Tag Name                             Writable
     24034  ------   --------                             --------
     24035      0    NestLevel                            no
     24036      1    IterationCount                       no
     24037      5    TerminationCondition                 no
     24038      6    IterationMinMax                      no
     24039     14    SignalNumber                         no
    1214824040
    1214924041=head3 MNG MagnifyObject Tags
    1215024042
    12151    Index   Tag Name                             Writable
    12152    -----   --------                             --------
    12153       0    FirstObjectID                        N
    12154       2    LastObjectID                         N
    12155       4    XMethod                              N
    12156       5    XMag                                 N
    12157       7    YMag                                 N
    12158       9    LeftMag                              N
    12159      11    RightMag                             N
    12160      13    TopMag                               N
    12161      15    BottomMag                            N
    12162      17    YMethod                              N
     24043  Index1   Tag Name                             Writable
     24044  ------   --------                             --------
     24045      0    FirstObjectID                        no
     24046      2    LastObjectID                         no
     24047      4    XMethod                              no
     24048      5    XMag                                 no
     24049      7    YMag                                 no
     24050      9    LeftMag                              no
     24051     11    RightMag                             no
     24052     13    TopMag                               no
     24053     15    BottomMag                            no
     24054     17    YMethod                              no
    1216324055
    1216424056=head3 MNG MNGHeader Tags
    1216524057
    12166    Index   Tag Name                             Writable
    12167    -----   --------                             --------
    12168       0    ImageWidth                           N
    12169       1    ImageHeight                          N
    12170       2    TicksPerSecond                       N
    12171       3    NominalLayerCount                    N
    12172       4    NominalFrameCount                    N
    12173       5    NominalPlayTime                      N
    12174       6    SimplicityProfile                    N
     24058  Index4   Tag Name                             Writable
     24059  ------   --------                             --------
     24060      0    ImageWidth                           no
     24061      1    ImageHeight                          no
     24062      2    TicksPerSecond                       no
     24063      3    NominalLayerCount                    no
     24064      4    NominalFrameCount                    no
     24065      5    NominalPlayTime                      no
     24066      6    SimplicityProfile                    no
    1217524067
    1217624068=head3 MNG MoveObjects Tags
    1217724069
    12178    Index   Tag Name                             Writable
    12179    -----   --------                             --------
    12180       0    FirstObject                          N
    12181       2    LastObject                           N
    12182       4    DeltaType                            N
    12183       5    DeltaXY                              N
     24070  Index1   Tag Name                             Writable
     24071  ------   --------                             --------
     24072      0    FirstObject                          no
     24073      2    LastObject                           no
     24074      4    DeltaType                            no
     24075      5    DeltaXY                              no
    1218424076
    1218524077=head3 MNG PasteImage Tags
    1218624078
    12187    Index   Tag Name                             Writable
    12188    -----   --------                             --------
    12189       0    DestinationID                        N
    12190       2    TargetDeltaType                      N
    12191       3    TargetXY                             N
    12192      11    SourceID                             N
    12193      13    CompositionMode                      N
    12194      14    Orientation                          N
    12195      15    OffsetOrigin                         N
    12196      16    OffsetXY                             N
    12197      24    BoundaryOrigin                       N
    12198      25    PastClippingBoundary                 N
     24079  Index1   Tag Name                             Writable
     24080  ------   --------                             --------
     24081      0    DestinationID                        no
     24082      2    TargetDeltaType                      no
     24083      3    TargetXY                             no
     24084     11    SourceID                             no
     24085     13    CompositionMode                      no
     24086     14    Orientation                          no
     24087     15    OffsetOrigin                         no
     24088     16    OffsetXY                             no
     24089     24    BoundaryOrigin                       no
     24090     25    PastClippingBoundary                 no
    1219924091
    1220024092=head3 MNG PromoteParent Tags
    1220124093
    12202    Index   Tag Name                             Writable
    12203    -----   --------                             --------
    12204       0    NewColorType                         N
    12205       1    NewBitDepth                          N
    12206       2    FillMethod                           N
     24094  Index1   Tag Name                             Writable
     24095  ------   --------                             --------
     24096      0    NewColorType                         no
     24097      1    NewBitDepth                          no
     24098      2    FillMethod                           no
    1220724099
    1220824100=head3 MNG ShowObjects Tags
    1220924101
    12210    Index   Tag Name                             Writable
    12211    -----   --------                             --------
    12212       0    FirstObject                          N
    12213       2    LastObject                           N
    12214       4    ShowMode                             N
     24102  Index1   Tag Name                             Writable
     24103  ------   --------                             --------
     24104      0    FirstObject                          no
     24105      2    LastObject                           no
     24106      4    ShowMode                             no
    1221524107
    1221624108=head3 MNG TerminationAction Tags
    1221724109
    12218    Index   Tag Name                             Writable
    12219    -----   --------                             --------
    12220       0    TerminationAction                    N
    12221       1    IterationEndAction                   N
    12222       2    Delay                                N
    12223       6    IterationMax                         N
     24110  Index1   Tag Name                             Writable
     24111  ------   --------                             --------
     24112      0    TerminationAction                    no
     24113      1    IterationEndAction                   no
     24114      2    Delay                                no
     24115      6    IterationMax                         no
    1222424116
    1222524117=head3 MNG ExportImage Tags
    1222624118
    12227    Index   Tag Name                             Writable
    12228    -----   --------                             --------
    12229       0    SnapshotID                           N
    12230       2    SnapshotName                         N
     24119  Index1   Tag Name                             Writable
     24120  ------   --------                             --------
     24121      0    SnapshotID                           no
     24122      2    SnapshotName                         no
    1223124123
    1223224124=head3 MNG FramePriority Tags
    1223324125
    12234    Index   Tag Name                             Writable
    12235    -----   --------                             --------
    12236       0    DeltaType                            N
    12237       2    Priority                             N
     24126  Index1   Tag Name                             Writable
     24127  ------   --------                             --------
     24128      0    DeltaType                            no
     24129      2    Priority                             no
     24130
     24131=head2 FLIF Tags
     24132
     24133Information extracted from Free Lossless Image Format files.  See
     24134L<http://flif.info/> for more information.
     24135
     24136  Tag ID   Tag Name                             Writable
     24137  ------   --------                             --------
     24138      0    ImageType                            no
     24139      1    BitDepth                             no
     24140      2    ImageWidth                           no
     24141      3    ImageHeight                          no
     24142      4    AnimationFrames                      no
     24143      5    Encoding                             no
     24144  'eXif'   EXIF                                 EXIF
     24145  'eXmp'   XMP                                  XMP
     24146  'iCCP'   ICC_Profile                          ICC_Profile
    1223824147
    1223924148=head2 DjVu Tags
    1224024149
    12241 Information is extracted from the following chunks in DjVu images.
     24150Information is extracted from the following chunks in DjVu images. See
     24151L<http://www.djvu.org/> for the DjVu specification.
    1224224152
    1224324153  Tag ID   Tag Name                             Writable
     
    1224624156  'ANTz'   CompressedAnnotation                 DjVu Ant
    1224724157  'FORM'   FORM                                 DjVu Form
    12248   'INCL'   IncludedFileID                       N
     24158  'INCL'   IncludedFileID                       no
    1224924159  'INFO'   INFO                                 DjVu Info
    1225024160
     
    1226424174documentation endorses tags borrowed from two standards: 1) BibTeX
    1226524175bibliography system tags (all lowercase Tag ID's in the table below), and 2)
    12266 PDF DocInfo tags (uppercase Tag ID's).
     24176PDF DocInfo tags (capitalized Tag ID's).
    1226724177
    1226824178  Tag ID               Tag Name                 Writable
    1226924179  ------               --------                 --------
    12270   'Author'             Author                   N
    12271   'CreationDate'       CreateDate               N
    12272   'Creator'            Creator                  N
    12273   'Keywords'           Keywords                 N
    12274   'ModDate'            ModifyDate               N
    12275   'Producer'           Producer                 N
    12276   'Subject'            Subject                  N
    12277   'Title'              Title                    N
    12278   'Trapped'            Trapped                  N
    12279   'address'            Address                  N
    12280   'annote'             Annotation               N
    12281   'author'             Author                   N
    12282   'booktitle'          BookTitle                N
    12283   'chapter'            Chapter                  N
    12284   'crossref'           CrossRef                 N
    12285   'edition'            Edition                  N
    12286   'eprint'             EPrint                   N
    12287   'howpublished'       HowPublished             N
    12288   'institution'        Institution              N
    12289   'journal'            Journal                  N
    12290   'key'                Key                      N
    12291   'month'              Month                    N
    12292   'note'               Note                     N
    12293   'number'             Number                   N
    12294   'organization'       Organization             N
    12295   'pages'              Pages                    N
    12296   'publisher'          Publisher                N
    12297   'school'             School                   N
    12298   'series'             Series                   N
    12299   'title'              Title                    N
    12300   'type'               Type                     N
    12301   'url'                URL                      N
    12302   'volume'             Volume                   N
    12303   'year'               Year                     N
     24180  'Author'             Author                   no
     24181  'CreationDate'       CreateDate               no
     24182  'Creator'            Creator                  no
     24183  'Keywords'           Keywords                 no
     24184  'ModDate'            ModifyDate               no
     24185  'Producer'           Producer                 no
     24186  'Subject'            Subject                  no
     24187  'Title'              Title                    no
     24188  'Trapped'            Trapped                  no
     24189  'address'            Address                  no
     24190  'annote'             Annotation               no
     24191  'author'             Author                   no
     24192  'booktitle'          BookTitle                no
     24193  'chapter'            Chapter                  no
     24194  'crossref'           CrossRef                 no
     24195  'edition'            Edition                  no
     24196  'eprint'             EPrint                   no
     24197  'howpublished'       HowPublished             no
     24198  'institution'        Institution              no
     24199  'journal'            Journal                  no
     24200  'key'                Key                      no
     24201  'month'              Month                    no
     24202  'note'               Note                     no
     24203  'number'             Number                   no
     24204  'organization'       Organization             no
     24205  'pages'              Pages                    no
     24206  'publisher'          Publisher                no
     24207  'school'             School                   no
     24208  'series'             Series                   no
     24209  'title'              Title                    no
     24210  'type'               Type                     no
     24211  'url'                URL                      no
     24212  'volume'             Volume                   no
     24213  'year'               Year                     no
    1230424214
    1230524215=head3 DjVu Form Tags
    1230624216
    12307    Index   Tag Name                             Writable
    12308    -----   --------                             --------
    12309       0    SubfileType                          N
     24217  Index1   Tag Name                             Writable
     24218  ------   --------                             --------
     24219      0    SubfileType                          no
    1231024220
    1231124221=head3 DjVu Info Tags
    1231224222
    12313    Index   Tag Name                             Writable
    12314    -----   --------                             --------
    12315       0    ImageWidth                           N
    12316       2    ImageHeight                          N
    12317       4    DjVuVersion                          N
    12318       6    SpatialResolution                    N
    12319       8    Gamma                                N
    12320       9    Orientation                          N
    12321 
    12322 =head2 PGF Tags
    12323 
    12324 The following table lists information extracted from the header of
    12325 Progressive Graphics File (PGF) images.  As well, information is extracted
    12326 from the embedded PNG metadata image if it exists.  See
    12327 L<http://www.libpgf.org/> for the PGF specification.
    12328 
    12329    Index   Tag Name                             Writable
    12330    -----   --------                             --------
    12331       3    PGFVersion                           N
    12332       8    ImageWidth                           N
    12333      12    ImageHeight                          N
    12334      16    PyramidLevels                        N
    12335      17    Quality                              N
    12336      18    BitsPerPixel                         N
    12337      19    ColorComponents                      N
    12338      20    ColorMode                            N
    12339      21    BackgroundColor                      N
     24223  Index1   Tag Name                             Writable
     24224  ------   --------                             --------
     24225      0    ImageWidth                           no
     24226      2    ImageHeight                          no
     24227      4    DjVuVersion                          no
     24228      6    SpatialResolution                    no
     24229      8    Gamma                                no
     24230      9    Orientation                          no
     24231
     24232=head2 DPX Tags
     24233
     24234Tags extracted from DPX (Digital Picture Exchange) images.
     24235
     24236  Index1   Tag Name                             Writable
     24237  ------   --------                             --------
     24238      0    ByteOrder                            no
     24239      8    HeaderVersion                        no
     24240     16    DPXFileSize                          no
     24241     20    DittoKey                             no
     24242     36    ImageFileName                        no
     24243    136    CreateDate                           no
     24244    160    Creator                              no
     24245    260    Project                              no
     24246    460    Copyright                            no
     24247    660    EncryptionKey                        no
     24248    768    Orientation                          no
     24249    770    ImageElements                        no
     24250    772    ImageWidth                           no
     24251    776    ImageHeight                          no
     24252    780    DataSign                             no
     24253    800    ComponentsConfiguration              no
     24254    801    TransferCharacteristic               no
     24255    802    ColorimetricSpecification            no
     24256    803    BitDepth                             no
     24257    820    ImageDescription                     no
     24258    892    Image2Description                    no
     24259    964    Image3Description                    no
     24260   1036    Image4Description                    no
     24261   1108    Image5Description                    no
     24262   1180    Image6Description                    no
     24263   1252    Image7Description                    no
     24264   1324    Image8Description                    no
     24265   1432    SourceFileName                       no
     24266   1532    SourceCreateDate                     no
     24267   1556    InputDeviceName                      no
     24268   1588    InputDeviceSerialNumber              no
     24269   1724    OriginalFrameRate                    no
     24270   1728    ShutterAngle                         no
     24271   1732    FrameID                              no
     24272   1764    SlateInformation                     no
     24273   1920    TimeCode                             no
     24274   1940    FrameRate                            no
     24275   1972    Reserved5?                           no
     24276   2048    UserID                               no
     24277
     24278=head2 OpenEXR Tags
     24279
     24280Information extracted from EXR images.  See L<http://www.openexr.com/> for
     24281the official specification.
     24282
     24283  Tag ID               Tag Name                 Writable
     24284  ------               --------                 --------
     24285  '_lay'               Layout                   no
     24286  '_ver'               EXRVersion               no
     24287  'adoptedNeutral'     AdoptedNeutral           no
     24288  'altitude'           GPSAltitude              no
     24289  'aperture'           Aperture                 no
     24290  'capDate'            DateTimeOriginal         no
     24291  'channels'           Channels                 no
     24292  'chromaticities'     Chromaticities           no
     24293  'comments'           Comments                 no
     24294  'compression'        Compression              no
     24295  'dataWindow'         DataWindow               no
     24296  'displayWindow'      DisplayWindow            no
     24297  'envmap'             EnvironmentMap           no
     24298  'expTime'            ExposureTime             no
     24299  'focus'              FocusDistance            no
     24300  'framesPerSecond'    FramesPerSecond          no
     24301  'isoSpeed'           ISO                      no
     24302  'keyCode'            KeyCode                  no
     24303  'latitude'           GPSLatitude              no
     24304  'lineOrder'          LineOrder                no
     24305  'longitude'          GPSLongitude             no
     24306  'lookModTransform'   LookModTransform         no
     24307  'multiView'          MultiView                no
     24308  'owner'              Owner                    no
     24309  'pixelAspectRatio'   PixelAspectRatio         no
     24310  'preview'            Preview                  no
     24311  'renderingTransform' RenderingTransform       no
     24312  'screenWindowCenter' ScreenWindowCenter       no
     24313  'screenWindowWidth'  ScreenWindowWidth        no
     24314  'tiles'              Tiles                    no
     24315  'timeCode'           TimeCode                 no
     24316  'utcOffset'          TimeZone                 no
     24317  'whiteLuminance'     WhiteLuminance           no
     24318  'worldToCamera'      WorldToCamera            no
     24319  'worldToNDC'         WorldToNDC               no
     24320  'wrapmodes'          WrapModes                no
     24321  'xDensity'           XResolution              no
     24322
     24323=head2 ZISRAW Tags
     24324
     24325As well as the header information listed below, ExifTool also extracts the
     24326top-level XML-based metadata from Zeiss Integrated Software RAW (ZISRAW) CZI
     24327files.
     24328
     24329  Index1   Tag Name                             Writable
     24330  ------   --------                             --------
     24331     32    ZISRAWVersion                        no
     24332     48    PrimaryFileGUID                      no
     24333     64    FileGUID                             no
    1234024334
    1234124335=head2 MIFF Tags
     
    1234724341  Tag ID               Tag Name                 Writable
    1234824342  ------               --------                 --------
    12349   'background-color'   BackgroundColor          N
    12350   'blue-primary'       BluePrimary              N
    12351   'border-color'       BorderColor              N
    12352   'class'              Class                    N
    12353   'colors'             Colors                   N
    12354   'colorspace'         Colorspace               N
    12355   'columns'            ImageWidth               N
    12356   'compression'        Compression              N
    12357   'delay'              Delay                    N
    12358   'depth'              Depth                    N
    12359   'dispose'            Dispose                  N
    12360   'gamma'              Gamma                    N
    12361   'green-primary'      GreenPrimary             N
    12362   'id'                 ID                       N
    12363   'iterations'         Iterations               N
    12364   'label'              Label                    N
    12365   'matt-color'         MattColor                N
    12366   'matte'              Matte                    N
    12367   'montage'            Montage                  N
    12368   'packets'            Packets                  N
    12369   'page'               Page                     N
     24343  'background-color'   BackgroundColor          no
     24344  'blue-primary'       BluePrimary              no
     24345  'border-color'       BorderColor              no
     24346  'class'              Class                    no
     24347  'colors'             Colors                   no
     24348  'colorspace'         ColorSpace               no
     24349  'columns'            ImageWidth               no
     24350  'compression'        Compression              no
     24351  'delay'              Delay                    no
     24352  'depth'              Depth                    no
     24353  'dispose'            Dispose                  no
     24354  'gamma'              Gamma                    no
     24355  'green-primary'      GreenPrimary             no
     24356  'id'                 ID                       no
     24357  'iterations'         Iterations               no
     24358  'label'              Label                    no
     24359  'matt-color'         MattColor                no
     24360  'matte'              Matte                    no
     24361  'montage'            Montage                  no
     24362  'packets'            Packets                  no
     24363  'page'               Page                     no
    1237024364  'profile-APP1'       APP1_Profile             EXIF
    1237124365                                                XMP
     
    1237424368  'profile-iptc'       IPTC_Profile             Photoshop
    1237524369  'profile-xmp'        XMP_Profile              XMP
    12376   'red-primary'        RedPrimary               N
    12377   'rendering-intent'   RenderingIntent          N
    12378   'resolution'         Resolution               N
    12379   'rows'               ImageHeight              N
    12380   'scene'              Scene                    N
    12381   'signature'          Signature                N
    12382   'units'              Units                    N
    12383   'white-point'        WhitePoint               N
     24370  'red-primary'        RedPrimary               no
     24371  'rendering-intent'   RenderingIntent          no
     24372  'resolution'         Resolution               no
     24373  'rows'               ImageHeight              no
     24374  'scene'              Scene                    no
     24375  'signature'          Signature                no
     24376  'units'              Units                    no
     24377  'white-point'        WhitePoint               no
     24378
     24379=head2 PCX Tags
     24380
     24381Tags extracted from PC Paintbrush images.
     24382
     24383  Index1   Tag Name                             Writable
     24384  ------   --------                             --------
     24385      0    Manufacturer                         no
     24386      1    Software                             no
     24387      2    Encoding                             no
     24388      3    BitsPerPixel                         no
     24389      4    LeftMargin                           no
     24390      6    TopMargin                            no
     24391      8    ImageWidth                           no
     24392     10    ImageHeight                          no
     24393     12    XResolution                          no
     24394     14    YResolution                          no
     24395     65    ColorPlanes                          no
     24396     66    BytesPerLine                         no
     24397     68    ColorMode                            no
     24398     70    ScreenWidth                          no
     24399     72    ScreenHeight                         no
     24400
     24401=head2 PGF Tags
     24402
     24403The following table lists information extracted from the header of
     24404Progressive Graphics File (PGF) images.  As well, information is extracted
     24405from the embedded PNG metadata image if it exists.  See
     24406L<http://www.libpgf.org/> for the PGF specification.
     24407
     24408  Index1   Tag Name                             Writable
     24409  ------   --------                             --------
     24410      3    PGFVersion                           no
     24411      8    ImageWidth                           no
     24412     12    ImageHeight                          no
     24413     16    PyramidLevels                        no
     24414     17    Quality                              no
     24415     18    BitsPerPixel                         no
     24416     19    ColorComponents                      no
     24417     20    ColorMode                            no
     24418     21    BackgroundColor                      no
    1238424419
    1238524420=head2 PSP Tags
     
    1239024425  Tag ID               Tag Name                 Writable
    1239124426  ------               --------                 --------
    12392   'FileVersion'        FileVersion              N
     24427  'FileVersion'        FileVersion              no
    1239324428  0x0000               ImageInfo                PSP Image
    1239424429                                                PSP Image
     
    1239824433=head3 PSP Image Tags
    1239924434
    12400    Index   Tag Name                             Writable
    12401    -----   --------                             --------
    12402       0    ImageWidth                           N
    12403       4    ImageHeight                          N
    12404       8    ImageResolution                      N
    12405      16    ResolutionUnit                       N
    12406      17    Compression                          N
    12407      19    BitsPerSample                        N
    12408      21    Planes                               N
    12409      23    NumColors                            N
     24435  Index1   Tag Name                             Writable
     24436  ------   --------                             --------
     24437      0    ImageWidth                           no
     24438      4    ImageHeight                          no
     24439      8    ImageResolution                      no
     24440     16    ResolutionUnit                       no
     24441     17    Compression                          no
     24442     19    BitsPerSample                        no
     24443     21    Planes                               no
     24444     23    NumColors                            no
    1241024445
    1241124446=head3 PSP Creator Tags
     
    1241324448  Tag ID   Tag Name                             Writable
    1241424449  ------   --------                             --------
    12415   0x0000   Title                                N
    12416   0x0001   CreateDate                           N
    12417   0x0002   ModifyDate                           N
    12418   0x0003   Artist                               N
    12419   0x0004   Copyright                            N
    12420   0x0005   Description                          N
    12421   0x0006   CreatorAppID                         N
    12422   0x0007   CreatorAppVersion                    N
     24450  0x0000   Title                                no
     24451  0x0001   CreateDate                           no
     24452  0x0002   ModifyDate                           no
     24453  0x0003   Artist                               no
     24454  0x0004   Copyright                            no
     24455  0x0005   Description                          no
     24456  0x0006   CreatorAppID                         no
     24457  0x0007   CreatorAppVersion                    no
    1242324458
    1242424459=head3 PSP Ext Tags
     
    1242724462  ------   --------                             --------
    1242824463  0x0003   EXIFInfo                             EXIF
     24464
     24465=head2 PhotoCD Tags
     24466
     24467Tags extracted from Kodak Photo CD Image Pac (PCD) files.
     24468
     24469  Index1   Tag Name                             Writable
     24470  ------   --------                             --------
     24471      7    SpecificationVersion                 no
     24472      9    AuthoringSoftwareRelease             no
     24473     11    ImageMagnificationDescriptor         no
     24474     13    CreateDate                           no
     24475     17    ModifyDate                           no
     24476     21    ImageMedium                          no
     24477     22    ProductType                          no
     24478     42    ScannerVendorID                      no
     24479     62    ScannerProductID                     no
     24480     78    ScannerFirmwareVersion               no
     24481     82    ScannerFirmwareDate                  no
     24482     90    ScannerSerialNumber                  no
     24483    110    ScannerPixelSize                     no
     24484    112    ImageWorkstationMake                 no
     24485    132    CharacterSet                         no
     24486    133    CharacterEscapeSequence?             no
     24487    165    PhotoFinisherName                    no
     24488    228    SceneBalanceAlgorithmRevision        no
     24489    230    SceneBalanceAlgorithmCommand         no
     24490    325    SceneBalanceAlgorithmFilmID          no
     24491    331    CopyrightStatus                      no
     24492    332    CopyrightFileName                    no
     24493   1538    Orientation                          no
     24494  1538.1   ImageWidth                           no
     24495  1538.2   ImageHeight                          no
     24496  1538.3   CompressionClass                     no
     24497
     24498=head2 Radiance Tags
     24499
     24500Information extracted from Radiance RGBE HDR images.  Tag ID's are all
     24501uppercase as stored in the file, but converted to lowercase by when
     24502extracting to avoid conflicts with internal ExifTool variables.  See
     24503L<http://radsite.lbl.gov/radiance/refer/filefmts.pdf> and
     24504L<http://www.graphics.cornell.edu/online/formats/rgbe/> for the
     24505specification.
     24506
     24507  Tag ID               Tag Name                 Writable
     24508  ------               --------                 --------
     24509  '_command'           Command                  no
     24510  '_comment'           Comment                  no
     24511  '_orient'            Orientation              no
     24512  'colorcorr'          ColorCorrection          no
     24513  'exposure'           Exposure                 no
     24514  'format'             Format                   no
     24515  'gamma'              Gamma                    no
     24516  'pixaspect'          PixelAspectRatio         no
     24517  'primaries'          ColorPrimaries           no
     24518  'software'           Software                 no
     24519  'view'               View                     no
    1242924520
    1243024521=head2 PDF Tags
     
    1244124532password-protected PDF files.
    1244224533
    12443 When writing PDF files, ExifTool uses an incremental update.  This has the
    12444 advantages of being fast and reversible.  The original PDF can be easily
    12445 recovered by deleting the C<PDF-update> pseudo-group (with
    12446 C<-PDF-update:all=> on the command line).  But there are two main
     24534ExifTool may be used to write native PDF and XMP metadata to PDF files. It
     24535uses an incremental update technique that has the advantages of being both
     24536fast and reversible.  If ExifTool was used to modify a PDF file, the
     24537original may be recovered by deleting the C<PDF-update> pseudo-group (with
     24538C<-PDF-update:all=> on the command line).  However, there are two main
    1244724539disadvantages to this technique:
    1244824540
     
    12452245442) All metadata edits are reversible.  While this would normally be
    1245324545considered an advantage, it is a potential security problem because old
    12454 information is never actually deleted from the file.
     24546information is never actually deleted from the file.  (However, after
     24547running ExifTool the old information may be removed permanently using the
     24548"qpdf" utility with this command: "qpdf --linearize in.pdf out.pdf".)
    1245524549
    1245624550  Tag ID               Tag Name                 Writable
     
    1245924553  'Info'               Info                     PDF Info
    1246024554  'Root'               Root                     PDF Root
    12461   '_linearized'        Linearized               N
     24555  '_linearized'        Linearized               no
    1246224556
    1246324557=head3 PDF Encrypt Tags
     
    1246724561  Tag ID   Tag Name                             Writable
    1246824562  ------   --------                             --------
    12469   'Filter' Encryption                           N
    12470   'P'      UserAccess                           N
     24563  'Filter' Encryption                           no
     24564  'P'      UserAccess                           no
    1247124565
    1247224566=head3 PDF Info Tags
     
    1249924593  Tag ID               Tag Name                 Writable
    1250024594  ------               --------                 --------
    12501   'Lang'               Language                 N
     24595  'AcroForm'           AcroForm                 PDF AcroForm
     24596  'Lang'               Language                 no
    1250224597  'MarkInfo'           MarkInfo                 PDF MarkInfo
    1250324598  'Metadata'           Metadata                 PDF Metadata
    12504   'PageLayout'         PageLayout               N
    12505   'PageMode'           PageMode                 N
     24599  'PageLayout'         PageLayout               no
     24600  'PageMode'           PageMode                 no
    1250624601  'Pages'              Pages                    PDF Pages
    1250724602  'Perms'              Perms                    PDF Perms
    12508   'Version'            PDFVersion               N
     24603  'Version'            PDFVersion               no
     24604
     24605=head3 PDF AcroForm Tags
     24606
     24607  Tag ID       Tag Name                         Writable
     24608  ------       --------                         --------
     24609  '_has_xfa'   HasXFA                           no
    1250924610
    1251024611=head3 PDF MarkInfo Tags
     
    1251224613  Tag ID   Tag Name                             Writable
    1251324614  ------   --------                             --------
    12514   'Marked' TaggedPDF                            N
     24615  'Marked' TaggedPDF                            no
    1251524616
    1251624617=head3 PDF Metadata Tags
     
    1252424625  Tag ID   Tag Name                             Writable
    1252524626  ------   --------                             --------
    12526   'Count'  PageCount                            N
     24627  'Count'  PageCount                            no
    1252724628  'Kids'   Kids                                 PDF Kids
    1252824629
     
    1253124632  Tag ID               Tag Name                 Writable
    1253224633  ------               --------                 --------
     24634  'Kids'               Kids                     PDF Kids
    1253324635  'Metadata'           Metadata                 PDF Metadata
    1253424636  'PieceInfo'          PieceInfo                PDF PieceInfo
     
    1257124673  ------               --------                 --------
    1257224674  'AIMetaData'         AIMetaData               PDF AIMetaData
     24675  'AIPDFPrivateData'   AIPDFPrivateData         PostScript
    1257324676  'AIPrivateData'      AIPrivateData            PostScript
    12574   'ContainerVersion'   ContainerVersion         N
    12575   'CreatorVersion'     CreatorVersion           N
    12576   'RoundTripVersion'   RoundTripVersion         N
     24677  'ContainerVersion'   ContainerVersion         no
     24678  'CreatorVersion'     CreatorVersion           no
     24679  'RoundTripVersion'   RoundTripVersion         no
    1257724680
    1257824681=head3 PDF AIMetaData Tags
     
    1258724690  ------               --------                 --------
    1258824691  'ColorSpace'         ColorSpace               PDF ColorSpace
     24692  'Properties'         Properties               PDF Properties
     24693  'XObject'            XObject                  PDF XObject
    1258924694
    1259024695=head3 PDF ColorSpace Tags
     
    1259224697  Tag ID               Tag Name                 Writable
    1259324698  ------               --------                 --------
     24699  'Cs1'                Cs1                      PDF Cs1
     24700  'DefaultCMYK'        DefaultCMYK              PDF DefaultRGB
    1259424701  'DefaultRGB'         DefaultRGB               PDF DefaultRGB
     24702
     24703=head3 PDF Cs1 Tags
     24704
     24705  Tag ID       Tag Name                         Writable
     24706  ------       --------                         --------
     24707  '_stream'    _stream                          ICC_Profile
    1259524708
    1259624709=head3 PDF DefaultRGB Tags
     
    1260524718  ------       --------                         --------
    1260624719  '_stream'    _stream                          ICC_Profile
     24720
     24721=head3 PDF Properties Tags
     24722
     24723  Tag ID   Tag Name                             Writable
     24724  ------   --------                             --------
     24725  'MC'     MC                                   PDF MC
     24726
     24727=head3 PDF MC Tags
     24728
     24729  Tag ID       Tag Name                         Writable
     24730  ------       --------                         --------
     24731  'Metadata'   Metadata                         PDF Metadata
     24732
     24733=head3 PDF XObject Tags
     24734
     24735  Tag ID   Tag Name                             Writable
     24736  ------   --------                             --------
     24737  'Im'     Im                                   PDF Im
     24738
     24739=head3 PDF Im Tags
     24740
     24741Information extracted from embedded images with the ExtractEmbedded option.
     24742The EmbeddedImage and its metadata are extracted only for JPEG and Jpeg2000
     24743image formats.
     24744
     24745  Tag ID               Tag Name                 Writable
     24746  ------               --------                 --------
     24747  'ColorSpace'         EmbeddedImageColorSpace  no+
     24748  'Filter'             EmbeddedImageFilter      no+
     24749  'Height'             EmbeddedImageHeight      no
     24750  'Image_stream'       EmbeddedImage            no
     24751  'Width'              EmbeddedImageWidth       no
    1260724752
    1260824753=head3 PDF Perms Tags
     
    1262024765  Tag ID               Tag Name                 Writable
    1262124766  ------               --------                 --------
    12622   'ContactInfo'        SignerContactInfo        N
    12623   'Location'           SigningLocation          N
    12624   'M'                  SigningDate              N
    12625   'Name'               SigningAuthority         N
    12626   'Prop_AuthTime'      AuthenticationTime       N
    12627   'Prop_AuthType'      AuthenticationType       N
    12628   'Reason'             SigningReason            N
     24767  'ContactInfo'        SignerContactInfo        no
     24768  'Location'           SigningLocation          no
     24769  'M'                  SigningDate              no
     24770  'Name'               SigningAuthority         no
     24771  'Prop_AuthTime'      AuthenticationTime       no
     24772  'Prop_AuthType'      AuthenticationType       no
     24773  'Reason'             SigningReason            no
    1262924774  'Reference'          Reference                PDF Reference
    1263024775
     
    1263924784  Tag ID               Tag Name                 Writable
    1264024785  ------               --------                 --------
    12641   'Action'             FieldPermissions         N
    12642   'Annots'             AnnotationUsageRights    N+
    12643   'Document'           DocumentUsageRights      N+
    12644   'EF'                 EmbeddedFileUsageRights  N+
    12645   'Fields'             FormFields               N+
    12646   'Form'               FormUsageRights          N+
    12647   'Msg'                UsageRightsMessage       N
    12648   'P'                  ModificationPermissions  N
    12649   'Signature'          SignatureUsageRights     N+
     24786  'Action'             FieldPermissions         no
     24787  'Annots'             AnnotationUsageRights    no+
     24788  'Document'           DocumentUsageRights      no+
     24789  'EF'                 EmbeddedFileUsageRights  no+
     24790  'Fields'             FormFields               no+
     24791  'Form'               FormUsageRights          no+
     24792  'FormEX'             FormExtraUsageRights     no+
     24793  'Msg'                UsageRightsMessage       no
     24794  'P'                  ModificationPermissions  no
     24795  'Signature'          SignatureUsageRights     no+
    1265024796
    1265124797=head2 PostScript Tags
    1265224798
    12653   Tag ID               Tag Name                 Writable
    12654   ------               --------                 --------
    12655   'Author'             Author                   string
    12656   'BeginDocument'      EmbeddedFile             PostScript
    12657   'BeginICCProfile'    ICC_Profile              ICC_Profile
    12658   'BeginPhotoshop'     PhotoshopData            Photoshop
    12659   'BoundingBox'        BoundingBox              N
    12660   'Copyright'          Copyright                string
    12661   'CreationDate'       CreateDate               string~
    12662   'Creator'            Creator                  string
    12663   'EmbeddedFileName'   EmbeddedFileName         N
    12664   'For'                For                      string
    12665   'ImageData'          ImageData                N
    12666   'Keywords'           Keywords                 string
    12667   'ModDate'            ModifyDate               string~
    12668   'Pages'              Pages                    N
    12669   'Routing'            Routing                  string
    12670   'Subject'            Subject                  string
    12671   'TIFFPreview'        TIFFPreview              N
    12672   'Title'              Title                    string
    12673   'Version'            Version                  string
    12674   'begin_xml_packet'   XMP                      XMP
     24799  Tag ID                 Tag Name               Writable
     24800  ------                 --------               --------
     24801  'AI12_BuildNumber'     AIBuildNumber          no
     24802  'AI3_ColorUsage'       AIColorUsage           no
     24803  'AI5_FileFormat'       AIFileFormat           no
     24804  'AI5_NumLayers'        AINumLayers            no
     24805  'AI5_RulerUnits'       AIRulerUnits           no
     24806  'AI5_TargetResolution' AITargetResolution     no
     24807  'AI8_CreatorVersion'   AICreatorVersion       no
     24808  'AI9_ColorModel'       AIColorModel           no
     24809  'Author'               Author                 string
     24810  'BeginDocument'        EmbeddedFile           PostScript
     24811  'BeginICCProfile'      ICC_Profile            ICC_Profile
     24812  'BeginPhotoshop'       PhotoshopData          Photoshop
     24813  'BoundingBox'          BoundingBox            no
     24814  'Copyright'            Copyright              string
     24815  'CreationDate'         CreateDate             string
     24816  'Creator'              Creator                string
     24817  'EmbeddedFileName'     EmbeddedFileName       no
     24818  'For'                  For                    string
     24819  'ImageData'            ImageData              no
     24820  'Keywords'             Keywords               string
     24821  'ModDate'              ModifyDate             string
     24822  'Pages'                Pages                  no
     24823  'Routing'              Routing                string
     24824  'Subject'              Subject                string
     24825  'TIFFPreview'          TIFFPreview            no
     24826  'Title'                Title                  string
     24827  'Version'              Version                string
     24828  'begin_xml_packet'     XMP                    XMP
    1267524829
    1267624830=head2 ID3 Tags
    1267724831
    12678 ExifTool extracts ID3 information from MP3, MPEG, AIFF, OGG, FLAC, APE and
    12679 RealAudio files.  ID3v2 tags which support multiple languages (ie. Comment
    12680 and Lyrics) are extracted by specifying the tag name, followed by a dash
    12681 ('-'), then a 3-character
    12682 ISO 639-2
    12683 language code (ie. "Comment-spa"). See L<http://www.id3.org/> for the
    12684 official ID3 specification and
    12685 L<http://www.loc.gov/standards/iso639-2/php/code_list.php> for a list of ISO
    12686 639-2 language codes.
     24832ExifTool extracts ID3 and Lyrics3 information from MP3, MPEG, AIFF, OGG,
     24833FLAC, APE, MPC and RealAudio files.  ID3v2 tags which support multiple
     24834languages (eg. Comment and Lyrics) are extracted by specifying the tag name,
     24835followed by a dash ('-'), then a 3-character ISO 639-2 language code (eg.
     24836"Comment-spa"). See L<http://www.id3.org/> for the official ID3
     24837specification and L<http://www.loc.gov/standards/iso639-2/php/code_list.php>
     24838for a list of ISO 639-2 language codes.
    1268724839
    1268824840  Tag Name                                      Writable
     
    1269624848=head3 ID3 v1 Tags
    1269724849
    12698    Index   Tag Name                             Writable
    12699    -----   --------                             --------
    12700       3    Title                                N
    12701      33    Artist                               N
    12702      63    Album                                N
    12703      93    Year                                 N
    12704      97    Comment                              N
    12705     125    Track                                N
    12706     127    Genre                                N
     24850  Index1   Tag Name                             Writable
     24851  ------   --------                             --------
     24852      3    Title                                no
     24853     33    Artist                               no
     24854     63    Album                                no
     24855     93    Year                                 no
     24856     97    Comment                              no
     24857    125    Track                                no
     24858    127    Genre                                no
    1270724859
    1270824860=head3 ID3 v1_Enh Tags
     
    1271024862ID3 version 1 "Enhanced TAG" information (not part of the official spec).
    1271124863
    12712    Index   Tag Name                             Writable
    12713    -----   --------                             --------
    12714       4    Title2                               N
    12715      64    Artist2                              N
    12716     124    Album2                               N
    12717     184    Speed                                N
    12718     185    Genre                                N
    12719     215    StartTime                            N
    12720     221    EndTime                              N
     24864  Index1   Tag Name                             Writable
     24865  ------   --------                             --------
     24866      4    Title2                               no
     24867     64    Artist2                              no
     24868    124    Album2                               no
     24869    184    Speed                                no
     24870    185    Genre                                no
     24871    215    StartTime                            no
     24872    221    EndTime                              no
    1272124873
    1272224874=head3 ID3 v2_2 Tags
     
    1273024882  Tag ID   Tag Name                             Writable
    1273124883  ------   --------                             --------
    12732   'CNT'    PlayCounter                          N
    12733   'COM'    Comment                              N
    12734   'IPL'    InvolvedPeople                       N
    12735   'PIC'    Picture                              N
    12736   'PIC-1'  PictureFormat                        N
    12737   'PIC-2'  PictureType                          N
    12738   'PIC-3'  PictureDescription                   N
    12739   'SLT'    SynchronizedLyricText                N
    12740   'TAL'    Album                                N
    12741   'TBP'    BeatsPerMinute                       N
    12742   'TCM'    Composer                             N
    12743   'TCO'    Genre                                N
    12744   'TCP'    Compilation                          N
    12745   'TCR'    Copyright                            N
    12746   'TDA'    Date                                 N
    12747   'TDY'    PlaylistDelay                        N
    12748   'TEN'    EncodedBy                            N
    12749   'TFT'    FileType                             N
    12750   'TIM'    Time                                 N
    12751   'TKE'    InitialKey                           N
    12752   'TLA'    Language                             N
    12753   'TLE'    Length                               N
    12754   'TMT'    Media                                N
    12755   'TOA'    OriginalArtist                       N
    12756   'TOF'    OriginalFilename                     N
    12757   'TOL'    OriginalLyricist                     N
    12758   'TOR'    OriginalReleaseYear                  N
    12759   'TOT'    OriginalAlbum                        N
    12760   'TP1'    Artist                               N
    12761   'TP2'    Band                                 N
    12762   'TP3'    Conductor                            N
    12763   'TP4'    InterpretedBy                        N
    12764   'TPA'    PartOfSet                            N
    12765   'TPB'    Publisher                            N
    12766   'TRC'    ISRC                                 N
    12767   'TRD'    RecordingDates                       N
    12768   'TRK'    Track                                N
    12769   'TSI'    Size                                 N
    12770   'TSS'    EncoderSettings                      N
    12771   'TT1'    Grouping                             N
    12772   'TT2'    Title                                N
    12773   'TT3'    Subtitle                             N
    12774   'TXT'    Lyricist                             N
    12775   'TXX'    UserDefinedText                      N
    12776   'TYE'    Year                                 N
    12777   'ULT'    Lyrics                               N
    12778   'WAF'    FileURL                              N
    12779   'WAR'    ArtistURL                            N
    12780   'WAS'    SourceURL                            N
    12781   'WCM'    CommercialURL                        N
    12782   'WCP'    CopyrightURL                         N
    12783   'WPB'    PublisherURL                         N
    12784   'WXX'    UserDefinedURL                       N
     24884  'CNT'    PlayCounter                          no
     24885  'COM'    Comment                              no
     24886  'IPL'    InvolvedPeople                       no
     24887  'ITU'    iTunesU?                             no
     24888  'PCS'    Podcast?                             no
     24889  'PIC'    Picture                              no
     24890  'PIC-1'  PictureFormat                        no
     24891  'PIC-2'  PictureType                          no
     24892  'PIC-3'  PictureDescription                   no
     24893  'POP'    Popularimeter                        no
     24894  'RVA'    RelativeVolumeAdjustment             no
     24895  'SLT'    SynLyrics                            ID3 SynLyrics
     24896  'TAL'    Album                                no
     24897  'TBP'    BeatsPerMinute                       no
     24898  'TCM'    Composer                             no
     24899  'TCO'    Genre                                no
     24900  'TCP'    Compilation                          no
     24901  'TCR'    Copyright                            no
     24902  'TDA'    Date                                 no
     24903  'TDY'    PlaylistDelay                        no
     24904  'TEN'    EncodedBy                            no
     24905  'TFT'    FileType                             no
     24906  'TIM'    Time                                 no
     24907  'TKE'    InitialKey                           no
     24908  'TLA'    Language                             no
     24909  'TLE'    Length                               no
     24910  'TMT'    Media                                no
     24911  'TOA'    OriginalArtist                       no
     24912  'TOF'    OriginalFileName                     no
     24913  'TOL'    OriginalLyricist                     no
     24914  'TOR'    OriginalReleaseYear                  no
     24915  'TOT'    OriginalAlbum                        no
     24916  'TP1'    Artist                               no
     24917  'TP2'    Band                                 no
     24918  'TP3'    Conductor                            no
     24919  'TP4'    InterpretedBy                        no
     24920  'TPA'    PartOfSet                            no
     24921  'TPB'    Publisher                            no
     24922  'TRC'    ISRC                                 no
     24923  'TRD'    RecordingDates                       no
     24924  'TRK'    Track                                no
     24925  'TS2'    AlbumArtistSortOrder                 no
     24926  'TSA'    AlbumSortOrder                       no
     24927  'TSC'    ComposerSortOrder                    no
     24928  'TSI'    Size                                 no
     24929  'TSP'    PerformerSortOrder                   no
     24930  'TSS'    EncoderSettings                      no
     24931  'TST'    TitleSortOrder                       no
     24932  'TT1'    Grouping                             no
     24933  'TT2'    Title                                no
     24934  'TT3'    Subtitle                             no
     24935  'TXT'    Lyricist                             no
     24936  'TXX'    UserDefinedText                      no
     24937  'TYE'    Year                                 no
     24938  'ULT'    Lyrics                               no
     24939  'WAF'    FileURL                              no
     24940  'WAR'    ArtistURL                            no
     24941  'WAS'    SourceURL                            no
     24942  'WCM'    CommercialURL                        no
     24943  'WCP'    CopyrightURL                         no
     24944  'WPB'    PublisherURL                         no
     24945  'WXX'    UserDefinedURL                       no
     24946
     24947=head3 ID3 SynLyrics Tags
     24948
     24949The following tags are extracted from synchronized lyrics/text frames.
     24950
     24951  Tag Name                                      Writable
     24952  --------                                      --------
     24953  SynchronizedLyricsDescription                 no
     24954  SynchronizedLyricsText                        no+
     24955  SynchronizedLyricsType                        no
    1278524956
    1278624957=head3 ID3 v2_3 Tags
    1278724958
    12788 ID3 version 2.3 tags
     24959ID3 version 2.3 tags.  Includes some non-standard tags written by other
     24960software.
    1278924961
    1279024962  Tag ID   Tag Name                             Writable
    1279124963  ------   --------                             --------
    12792   'APIC'   Picture                              N
    12793   'APIC-1' PictureMimeType                      N
    12794   'APIC-2' PictureType                          N
    12795   'APIC-3' PictureDescription                   N
    12796   'COMM'   Comment                              N
    12797   'IPLS'   InvolvedPeople                       N
    12798   'MCDI'   MusicCDIdentifier                    N
    12799   'PCNT'   PlayCounter                          N
     24964  'APIC'   Picture                              no
     24965  'APIC-1' PictureMIMEType                      no
     24966  'APIC-2' PictureType                          no
     24967  'APIC-3' PictureDescription                   no
     24968  'COMM'   Comment                              no
     24969  'GRP1'   Grouping                             no
     24970  'IPLS'   InvolvedPeople                       no
     24971  'ITNU'   iTunesU?                             no
     24972  'MCDI'   MusicCDIdentifier                    no
     24973  'MVIN'   MovementNumber                       no
     24974  'MVNM'   MovementName                         no
     24975  'OWNE'   Ownership                            no
     24976  'PCNT'   PlayCounter                          no
     24977  'PCST'   Podcast?                             no
     24978  'POPM'   Popularimeter                        no
    1280024979  'PRIV'   Private                              ID3 Private
    12801   'SYLT'   SynchronizedLyricText                N
    12802   'TALB'   Album                                N
    12803   'TBPM'   BeatsPerMinute                       N
    12804   'TCMP'   Compilation                          N
    12805   'TCOM'   Composer                             N
    12806   'TCON'   Genre                                N
    12807   'TCOP'   Copyright                            N
    12808   'TDAT'   Date                                 N
    12809   'TDLY'   PlaylistDelay                        N
    12810   'TENC'   EncodedBy                            N
    12811   'TEXT'   Lyricist                             N
    12812   'TFLT'   FileType                             N
    12813   'TIME'   Time                                 N
    12814   'TIT1'   Grouping                             N
    12815   'TIT2'   Title                                N
    12816   'TIT3'   Subtitle                             N
    12817   'TKEY'   InitialKey                           N
    12818   'TLAN'   Language                             N
    12819   'TLEN'   Length                               N
    12820   'TMED'   Media                                N
    12821   'TOAL'   OriginalAlbum                        N
    12822   'TOFN'   OriginalFilename                     N
    12823   'TOLY'   OriginalLyricist                     N
    12824   'TOPE'   OriginalArtist                       N
    12825   'TORY'   OriginalReleaseYear                  N
    12826   'TOWN'   FileOwner                            N
    12827   'TPE1'   Artist                               N
    12828   'TPE2'   Band                                 N
    12829   'TPE3'   Conductor                            N
    12830   'TPE4'   InterpretedBy                        N
    12831   'TPOS'   PartOfSet                            N
    12832   'TPUB'   Publisher                            N
    12833   'TRCK'   Track                                N
    12834   'TRDA'   RecordingDates                       N
    12835   'TRSN'   InternetRadioStationName             N
    12836   'TRSO'   InternetRadioStationOwner            N
    12837   'TSIZ'   Size                                 N
    12838   'TSRC'   ISRC                                 N
    12839   'TSSE'   EncoderSettings                      N
    12840   'TXXX'   UserDefinedText                      N
    12841   'TYER'   Year                                 N
    12842   'USER'   TermsOfUse                           N
    12843   'USLT'   Lyrics                               N
    12844   'WCOM'   CommercialURL                        N
    12845   'WCOP'   CopyrightURL                         N
    12846   'WOAF'   FileURL                              N
    12847   'WOAR'   ArtistURL                            N
    12848   'WOAS'   SourceURL                            N
    12849   'WORS'   InternetRadioStationURL              N
    12850   'WPAY'   PaymentURL                           N
    12851   'WPUB'   PublisherURL                         N
    12852   'WXXX'   UserDefinedURL                       N
     24980  'SYLT'   SynLyrics                            ID3 SynLyrics
     24981  'TALB'   Album                                no
     24982  'TBPM'   BeatsPerMinute                       no
     24983  'TCAT'   PodcastCategory                      no
     24984  'TCMP'   Compilation                          no
     24985  'TCOM'   Composer                             no
     24986  'TCON'   Genre                                no
     24987  'TCOP'   Copyright                            no
     24988  'TDAT'   Date                                 no
     24989  'TDES'   PodcastDescription                   no
     24990  'TDLY'   PlaylistDelay                        no
     24991  'TENC'   EncodedBy                            no
     24992  'TEXT'   Lyricist                             no
     24993  'TFLT'   FileType                             no
     24994  'TGID'   PodcastID                            no
     24995  'TIME'   Time                                 no
     24996  'TIT1'   Grouping                             no
     24997  'TIT2'   Title                                no
     24998  'TIT3'   Subtitle                             no
     24999  'TKEY'   InitialKey                           no
     25000  'TKWD'   PodcastKeywords                      no
     25001  'TLAN'   Language                             no
     25002  'TLEN'   Length                               no
     25003  'TMED'   Media                                no
     25004  'TOAL'   OriginalAlbum                        no
     25005  'TOFN'   OriginalFileName                     no
     25006  'TOLY'   OriginalLyricist                     no
     25007  'TOPE'   OriginalArtist                       no
     25008  'TORY'   OriginalReleaseYear                  no
     25009  'TOWN'   FileOwner                            no
     25010  'TPE1'   Artist                               no
     25011  'TPE2'   Band                                 no
     25012  'TPE3'   Conductor                            no
     25013  'TPE4'   InterpretedBy                        no
     25014  'TPOS'   PartOfSet                            no
     25015  'TPUB'   Publisher                            no
     25016  'TRCK'   Track                                no
     25017  'TRDA'   RecordingDates                       no
     25018  'TRSN'   InternetRadioStationName             no
     25019  'TRSO'   InternetRadioStationOwner            no
     25020  'TSIZ'   Size                                 no
     25021  'TSO2'   AlbumArtistSortOrder                 no
     25022  'TSOC'   ComposerSortOrder                    no
     25023  'TSRC'   ISRC                                 no
     25024  'TSSE'   EncoderSettings                      no
     25025  'TXXX'   UserDefinedText                      no
     25026  'TYER'   Year                                 no
     25027  'USER'   TermsOfUse                           no
     25028  'USLT'   Lyrics                               no
     25029  'WCOM'   CommercialURL                        no
     25030  'WCOP'   CopyrightURL                         no
     25031  'WFED'   PodcastURL                           no
     25032  'WOAF'   FileURL                              no
     25033  'WOAR'   ArtistURL                            no
     25034  'WOAS'   SourceURL                            no
     25035  'WORS'   InternetRadioStationURL              no
     25036  'WPAY'   PaymentURL                           no
     25037  'WPUB'   PublisherURL                         no
     25038  'WXXX'   UserDefinedURL                       no
     25039  'XDOR'   OriginalReleaseTime                  no
     25040  'XOLY'   OlympusDSS                           Olympus DSS
     25041  'XSOA'   AlbumSortOrder                       no
     25042  'XSOP'   PerformerSortOrder                   no
     25043  'XSOT'   TitleSortOrder                       no
    1285325044
    1285425045=head3 ID3 Private Tags
    1285525046
    12856 ID3 private (PRIV) tags.
     25047ID3 private (PRIV) tags.  ExifTool will decode any private tags found, even
     25048if they do not appear in this table.
     25049
     25050  Tag Name                                      Writable
     25051  --------                                      --------
     25052  AverageLevel                                  no
     25053  PeakValue                                     no
     25054  WM_CollectionGroupID                          no
     25055  WM_CollectionID                               no
     25056  WM_ContentID                                  no
     25057  WM_MediaClassPrimaryID                        no
     25058  WM_MediaClassSecondaryID                      no
     25059  WM_Provider                                   no
     25060  XMP                                           XMP
     25061
     25062=head3 ID3 v2_4 Tags
     25063
     25064ID3 version 2.4 tags.  Includes some non-standard tags written by other
     25065software.
     25066
     25067  Tag ID   Tag Name                             Writable
     25068  ------   --------                             --------
     25069  'APIC'   Picture                              no
     25070  'APIC-1' PictureMIMEType                      no
     25071  'APIC-2' PictureType                          no
     25072  'APIC-3' PictureDescription                   no
     25073  'COMM'   Comment                              no
     25074  'GRP1'   Grouping                             no
     25075  'ITNU'   iTunesU?                             no
     25076  'MCDI'   MusicCDIdentifier                    no
     25077  'MVIN'   MovementNumber                       no
     25078  'MVNM'   MovementName                         no
     25079  'OWNE'   Ownership                            no
     25080  'PCNT'   PlayCounter                          no
     25081  'PCST'   Podcast?                             no
     25082  'POPM'   Popularimeter                        no
     25083  'PRIV'   Private                              ID3 Private
     25084  'RVA2'   RelativeVolumeAdjustment             no
     25085  'SYLT'   SynLyrics                            ID3 SynLyrics
     25086  'TALB'   Album                                no
     25087  'TBPM'   BeatsPerMinute                       no
     25088  'TCAT'   PodcastCategory                      no
     25089  'TCMP'   Compilation                          no
     25090  'TCOM'   Composer                             no
     25091  'TCON'   Genre                                no
     25092  'TCOP'   Copyright                            no
     25093  'TDEN'   EncodingTime                         no
     25094  'TDES'   PodcastDescription                   no
     25095  'TDLY'   PlaylistDelay                        no
     25096  'TDOR'   OriginalReleaseTime                  no
     25097  'TDRC'   RecordingTime                        no
     25098  'TDRL'   ReleaseTime                          no
     25099  'TDTG'   TaggingTime                          no
     25100  'TENC'   EncodedBy                            no
     25101  'TEXT'   Lyricist                             no
     25102  'TFLT'   FileType                             no
     25103  'TGID'   PodcastID                            no
     25104  'TIPL'   InvolvedPeople                       no
     25105  'TIT1'   Grouping                             no
     25106  'TIT2'   Title                                no
     25107  'TIT3'   Subtitle                             no
     25108  'TKEY'   InitialKey                           no
     25109  'TKWD'   PodcastKeywords                      no
     25110  'TLAN'   Language                             no
     25111  'TLEN'   Length                               no
     25112  'TMCL'   MusicianCredits                      no
     25113  'TMED'   Media                                no
     25114  'TMOO'   Mood                                 no
     25115  'TOAL'   OriginalAlbum                        no
     25116  'TOFN'   OriginalFileName                     no
     25117  'TOLY'   OriginalLyricist                     no
     25118  'TOPE'   OriginalArtist                       no
     25119  'TOWN'   FileOwner                            no
     25120  'TPE1'   Artist                               no
     25121  'TPE2'   Band                                 no
     25122  'TPE3'   Conductor                            no
     25123  'TPE4'   InterpretedBy                        no
     25124  'TPOS'   PartOfSet                            no
     25125  'TPRO'   ProducedNotice                       no
     25126  'TPUB'   Publisher                            no
     25127  'TRCK'   Track                                no
     25128  'TRSN'   InternetRadioStationName             no
     25129  'TRSO'   InternetRadioStationOwner            no
     25130  'TSO2'   AlbumArtistSortOrder                 no
     25131  'TSOA'   AlbumSortOrder                       no
     25132  'TSOC'   ComposerSortOrder                    no
     25133  'TSOP'   PerformerSortOrder                   no
     25134  'TSOT'   TitleSortOrder                       no
     25135  'TSRC'   ISRC                                 no
     25136  'TSSE'   EncoderSettings                      no
     25137  'TSST'   SetSubtitle                          no
     25138  'TXXX'   UserDefinedText                      no
     25139  'USER'   TermsOfUse                           no
     25140  'USLT'   Lyrics                               no
     25141  'WCOM'   CommercialURL                        no
     25142  'WCOP'   CopyrightURL                         no
     25143  'WFED'   PodcastURL                           no
     25144  'WOAF'   FileURL                              no
     25145  'WOAR'   ArtistURL                            no
     25146  'WOAS'   SourceURL                            no
     25147  'WORS'   InternetRadioStationURL              no
     25148  'WPAY'   PaymentURL                           no
     25149  'WPUB'   PublisherURL                         no
     25150  'WXXX'   UserDefinedURL                       no
     25151  'XDOR'   OriginalReleaseTime                  no
     25152  'XOLY'   OlympusDSS                           Olympus DSS
     25153  'XSOA'   AlbumSortOrder                       no
     25154  'XSOP'   PerformerSortOrder                   no
     25155  'XSOT'   TitleSortOrder                       no
     25156
     25157=head3 ID3 Lyrics3 Tags
     25158
     25159ExifTool extracts Lyrics3 version 1.00 and 2.00 tags from any file that
     25160supports ID3.  See L<https://id3.org/Lyrics3> for the specification.
     25161
     25162  Tag ID   Tag Name                             Writable
     25163  ------   --------                             --------
     25164  'AUT'    Author                               no
     25165  'CRC'    CRC                                  no
     25166  'EAL'    ExtendedAlbumName                    no
     25167  'EAR'    ExtendedArtistName                   no
     25168  'ETT'    ExtendedTrackTitle                   no
     25169  'IMG'    AssociatedImageFile                  no
     25170  'IND'    Indications                          no
     25171  'INF'    AdditionalInfo                       no
     25172  'LYR'    Lyrics                               no
     25173
     25174=head2 ITC Tags
     25175
     25176This information is found in iTunes Cover Flow data files.
     25177
     25178  Tag ID   Tag Name                             Writable
     25179  ------   --------                             --------
     25180  'data'   ImageData                            no
     25181  'itch'   Itch                                 ITC Header
     25182  'item'   Item                                 ITC Item
     25183
     25184=head3 ITC Header Tags
     25185
     25186  Index1   Tag Name                             Writable
     25187  ------   --------                             --------
     25188     16    DataType                             no
     25189
     25190=head3 ITC Item Tags
     25191
     25192  Index4   Tag Name                             Writable
     25193  ------   --------                             --------
     25194      0    LibraryID                            no
     25195      2    TrackID                              no
     25196      4    DataLocation                         no
     25197      5    ImageType                            no
     25198      7    ImageWidth                           no
     25199      8    ImageHeight                          no
     25200
     25201=head2 FLAC Tags
     25202
     25203Free Lossless Audio Codec (FLAC) meta information.  ExifTool also extracts
     25204ID3 information from these files.
     25205
     25206  Tag ID   Tag Name                             Writable
     25207  ------   --------                             --------
     25208  0x0000   StreamInfo                           FLAC StreamInfo
     25209  0x0001   Padding?                             no
     25210  0x0002   Application?                         no
     25211  0x0003   SeekTable?                           no
     25212  0x0004   VorbisComment                        Vorbis Comments
     25213  0x0005   CueSheet?                            no
     25214  0x0006   Picture                              FLAC Picture
     25215
     25216=head3 FLAC StreamInfo Tags
     25217
     25218FLAC is big-endian, so bit 0 is the high-order bit in this table.
    1285725219
    1285825220  Tag ID               Tag Name                 Writable
    1285925221  ------               --------                 --------
    12860   'AverageLevel'       AverageLevel             N
    12861   'PeakValue'          PeakValue                N
    12862   'XMP'                XMP                      XMP
    12863 
    12864 =head3 ID3 v2_4 Tags
    12865 
    12866 ID3 version 2.4 tags
     25222  'Bit000-015'         BlockSizeMin             no
     25223  'Bit016-031'         BlockSizeMax             no
     25224  'Bit032-055'         FrameSizeMin             no
     25225  'Bit056-079'         FrameSizeMax             no
     25226  'Bit080-099'         SampleRate               no
     25227  'Bit100-102'         Channels                 no
     25228  'Bit103-107'         BitsPerSample            no
     25229  'Bit108-143'         TotalSamples             no
     25230  'Bit144-271'         MD5Signature             no
     25231
     25232=head3 FLAC Picture Tags
     25233
     25234  Index4   Tag Name                             Writable
     25235  ------   --------                             --------
     25236      0    PictureType                          no
     25237      1    PictureMIMEType                      no
     25238      2    PictureDescription                   no
     25239      3    PictureWidth                         no
     25240      4    PictureHeight                        no
     25241      5    PictureBitsPerPixel                  no
     25242      6    PictureIndexedColors                 no
     25243      7    PictureLength                        no
     25244      8    Picture                              no
     25245
     25246=head2 Ogg Tags
     25247
     25248ExifTool extracts the following types of information from Ogg files.  See
     25249L<http://www.xiph.org/vorbis/doc/> for the Ogg specification.
    1286725250
    1286825251  Tag ID   Tag Name                             Writable
    1286925252  ------   --------                             --------
    12870   'APIC'   Picture                              N
    12871   'APIC-1' PictureMimeType                      N
    12872   'APIC-2' PictureType                          N
    12873   'APIC-3' PictureDescription                   N
    12874   'COMM'   Comment                              N
    12875   'MCDI'   MusicCDIdentifier                    N
    12876   'PCNT'   PlayCounter                          N
    12877   'PRIV'   Private                              ID3 Private
    12878   'SYLT'   SynchronizedLyricText                N
    12879   'TALB'   Album                                N
    12880   'TBPM'   BeatsPerMinute                       N
    12881   'TCMP'   Compilation                          N
    12882   'TCOM'   Composer                             N
    12883   'TCON'   Genre                                N
    12884   'TCOP'   Copyright                            N
    12885   'TDEN'   EncodingTime                         N
    12886   'TDLY'   PlaylistDelay                        N
    12887   'TDOR'   OriginalReleaseTime                  N
    12888   'TDRC'   RecordingTime                        N
    12889   'TDRL'   ReleaseTime                          N
    12890   'TDTG'   TaggingTime                          N
    12891   'TENC'   EncodedBy                            N
    12892   'TEXT'   Lyricist                             N
    12893   'TFLT'   FileType                             N
    12894   'TIPL'   InvolvedPeople                       N
    12895   'TIT1'   Grouping                             N
    12896   'TIT2'   Title                                N
    12897   'TIT3'   Subtitle                             N
    12898   'TKEY'   InitialKey                           N
    12899   'TLAN'   Language                             N
    12900   'TLEN'   Length                               N
    12901   'TMCL'   MusicianCredits                      N
    12902   'TMED'   Media                                N
    12903   'TMOO'   Mood                                 N
    12904   'TOAL'   OriginalAlbum                        N
    12905   'TOFN'   OriginalFilename                     N
    12906   'TOLY'   OriginalLyricist                     N
    12907   'TOPE'   OriginalArtist                       N
    12908   'TOWN'   FileOwner                            N
    12909   'TPE1'   Artist                               N
    12910   'TPE2'   Band                                 N
    12911   'TPE3'   Conductor                            N
    12912   'TPE4'   InterpretedBy                        N
    12913   'TPOS'   PartOfSet                            N
    12914   'TPRO'   ProducedNotice                       N
    12915   'TPUB'   Publisher                            N
    12916   'TRCK'   Track                                N
    12917   'TRSN'   InternetRadioStationName             N
    12918   'TRSO'   InternetRadioStationOwner            N
    12919   'TSOA'   AlbumSortOrder                       N
    12920   'TSOP'   PerformerSortOrder                   N
    12921   'TSOT'   TitleSortOrder                       N
    12922   'TSRC'   ISRC                                 N
    12923   'TSSE'   EncoderSettings                      N
    12924   'TSST'   SetSubtitle                          N
    12925   'TXXX'   UserDefinedText                      N
    12926   'USER'   TermsOfUse                           N
    12927   'USLT'   Lyrics                               N
    12928   'WCOM'   CommercialURL                        N
    12929   'WCOP'   CopyrightURL                         N
    12930   'WOAF'   FileURL                              N
    12931   'WOAR'   ArtistURL                            N
    12932   'WOAS'   SourceURL                            N
    12933   'WORS'   InternetRadioStationURL              N
    12934   'WPAY'   PaymentURL                           N
    12935   'WPUB'   PublisherURL                         N
    12936   'WXXX'   UserDefinedURL                       N
    12937 
    12938 =head2 ITC Tags
    12939 
    12940 This information is found in iTunes Cover Flow data files.
    12941 
    12942   Tag ID   Tag Name                             Writable
    12943   ------   --------                             --------
    12944   'data'   ImageData                            N
    12945   'itch'   Itch                                 ITC Header
    12946   'item'   Item                                 ITC Item
    12947 
    12948 =head3 ITC Header Tags
    12949 
    12950    Index   Tag Name                             Writable
    12951    -----   --------                             --------
    12952      16    DataType                             N
    12953 
    12954 =head3 ITC Item Tags
    12955 
    12956    Index   Tag Name                             Writable
    12957    -----   --------                             --------
    12958       0    LibraryID                            N
    12959       2    TrackID                              N
    12960       4    DataLocation                         N
    12961       5    ImageType                            N
    12962       7    ImageWidth                           N
    12963       8    ImageHeight                          N
     25253  'FLAC'   FLAC                                 FLAC
     25254  'ID3'    ID3                                  ID3
     25255  'Opus'   Opus                                 Opus
     25256  'theora' Theora                               Theora
     25257  'vorbis' Vorbis                               Vorbis
    1296425258
    1296525259=head2 Vorbis Tags
    1296625260
    12967 ExifTool extracts the following Vorbis information from Ogg files.  As well
    12968 as this, ExifTool also extracts FLAC and ID3 information from Ogg files.
     25261Information extracted from Ogg Vorbis files.  See
     25262L<http://www.xiph.org/vorbis/doc/> for the Vorbis specification.
    1296925263
    1297025264  Tag ID   Tag Name                             Writable
     
    1297225266  0x0001   Identification                       Vorbis Identification
    1297325267  0x0003   Comments                             Vorbis Comments
    12974 
    12975 =head3 Vorbis Identification Tags
    12976 
    12977    Index   Tag Name                             Writable
    12978    -----   --------                             --------
    12979       0    VorbisVersion                        N
    12980       4    AudioChannels                        N
    12981       5    SampleRate                           N
    12982       9    MaximumBitrate                       N
    12983      13    NominalBitrate                       N
    12984      17    MinimumBitrate                       N
    1298525268
    1298625269=head3 Vorbis Comments Tags
     
    1299025273any tag found, even if not listed here.
    1299125274
    12992   Tag ID                  Tag Name              Writable
    12993   ------                  --------              --------
    12994   'ALBUM'                 Album                 N
    12995   'ARTIST'                Artist                N+
    12996   'COMMENT'               Comment               N
    12997   'CONTACT'               Contact               N+
    12998   'COPYRIGHT'             Copyright             N
    12999   'COVERART'              CoverArt              N
    13000   'COVERARTMIME'          CoverArtMIMEType      N
    13001   'DATE'                  Date                  N
    13002   'DESCRIPTION'           Description           N
    13003   'ENCODED_BY'            EncodedBy             N
    13004   'ENCODED_USING'         EncodedUsing          N
    13005   'GENRE'                 Genre                 N
    13006   'ISRC'                  ISRCNumber            N
    13007   'LICENSE'               License               N
    13008   'LOCATION'              Location              N
    13009   'ORGANIZATION'          Organization          N
    13010   'PERFORMER'             Performer             N+
    13011   'REPLAYGAIN_ALBUM_GAIN' ReplayGainAlbumGain   N
    13012   'REPLAYGAIN_ALBUM_PEAK' ReplayGainAlbumPeak   N
    13013   'REPLAYGAIN_TRACK_GAIN' ReplayGainTrackGain   N
    13014   'REPLAYGAIN_TRACK_PEAK' ReplayGainTrackPeak   N
    13015   'TITLE'                 Title                 N
    13016   'TRACKNUMBER'           TrackNumber           N
    13017   'VERSION'               Version               N
    13018   'vendor'                Vendor                N
    13019 
    13020 =head2 FLAC Tags
    13021 
    13022 Free Lossless Audio Codec (FLAC) meta information.  ExifTool also extracts
    13023 ID3 information from these files.
     25275  Tag ID                   Tag Name             Writable
     25276  ------                   --------             --------
     25277  'ACTOR'                  Actor                no
     25278  'ALBUM'                  Album                no
     25279  'ARTIST'                 Artist               no+
     25280  'COMMENT'                Comment              no
     25281  'COMPOSER'               Composer             no
     25282  'CONTACT'                Contact              no+
     25283  'COPYRIGHT'              Copyright            no
     25284  'COVERART'               CoverArt             no
     25285  'COVERARTMIME'           CoverArtMIMEType     no
     25286  'DATE'                   Date                 no
     25287  'DESCRIPTION'            Description          no
     25288  'DIRECTOR'               Director             no
     25289  'ENCODED_BY'             EncodedBy            no
     25290  'ENCODED_USING'          EncodedUsing         no
     25291  'ENCODER'                Encoder              no
     25292  'ENCODER_OPTIONS'        EncoderOptions       no
     25293  'GENRE'                  Genre                no
     25294  'ISRC'                   ISRCNumber           no
     25295  'LICENSE'                License              no
     25296  'LOCATION'               Location             no
     25297  'METADATA_BLOCK_PICTURE' Picture              FLAC Picture
     25298  'ORGANIZATION'           Organization         no
     25299  'PERFORMER'              Performer            no+
     25300  'PRODUCER'               Producer             no
     25301  'REPLAYGAIN_ALBUM_GAIN'  ReplayGainAlbumGain  no
     25302  'REPLAYGAIN_ALBUM_PEAK'  ReplayGainAlbumPeak  no
     25303  'REPLAYGAIN_TRACK_GAIN'  ReplayGainTrackGain  no
     25304  'REPLAYGAIN_TRACK_PEAK'  ReplayGainTrackPeak  no
     25305  'TITLE'                  Title                no
     25306  'TRACKNUMBER'            TrackNumber          no
     25307  'VERSION'                Version              no
     25308  'vendor'                 Vendor               no
     25309
     25310=head3 Vorbis Identification Tags
     25311
     25312  Index1   Tag Name                             Writable
     25313  ------   --------                             --------
     25314      0    VorbisVersion                        no
     25315      4    AudioChannels                        no
     25316      5    SampleRate                           no
     25317      9    MaximumBitrate                       no
     25318     13    NominalBitrate                       no
     25319     17    MinimumBitrate                       no
     25320
     25321=head2 Opus Tags
     25322
     25323Information extracted from Ogg Opus files.  See
     25324L<https://www.opus-codec.org/docs/> for the specification.
     25325
     25326  Tag ID       Tag Name                         Writable
     25327  ------       --------                         --------
     25328  'OpusHead'   Header                           Opus Header
     25329  'OpusTags'   Comments                         Vorbis Comments
     25330
     25331=head3 Opus Header Tags
     25332
     25333  Index1   Tag Name                             Writable
     25334  ------   --------                             --------
     25335      0    OpusVersion                          no
     25336      1    AudioChannels                        no
     25337      4    SampleRate                           no
     25338      8    OutputGain                           no
     25339
     25340=head2 Theora Tags
     25341
     25342Information extracted from Ogg Theora video files.  See
     25343L<http://www.theora.org/doc/Theora.pdf> for the Theora specification.
    1302425344
    1302525345  Tag ID   Tag Name                             Writable
    1302625346  ------   --------                             --------
    13027   0x0000   StreamInfo                           FLAC StreamInfo
    13028   0x0004   VorbisComment                        Vorbis Comments
    13029   0x0006   Picture                              FLAC Picture
    13030 
    13031 =head3 FLAC StreamInfo Tags
    13032 
    13033 FLAC is big-endian, so bit 0 is the high-order bit in this table.
     25347  0x0080   Identification                       Theora Identification
     25348  0x0081   Comments                             Vorbis Comments
     25349
     25350=head3 Theora Identification Tags
     25351
     25352Tags extracted from the Theora identification header.
     25353
     25354  Index1   Tag Name                             Writable
     25355  ------   --------                             --------
     25356      0    TheoraVersion                        no
     25357      7    ImageWidth                           no
     25358     10    ImageHeight                          no
     25359     13    XOffset                              no
     25360     14    YOffset                              no
     25361     15    FrameRate                            no
     25362     23    PixelAspectRatio                     no
     25363     29    ColorSpace                           no
     25364     30    NominalVideoBitrate                  no
     25365     33    Quality                              no
     25366     34    PixelFormat                          no
     25367
     25368=head2 APE Tags
     25369
     25370Tags found in Monkey's Audio (APE) information.  Only a few common tags are
     25371listed below, but ExifTool will extract any tag found.  ExifTool supports
     25372APEv1 and APEv2 tags, as well as ID3 information in APE files, and will also
     25373read APE metadata from MP3 and MPC files.
    1303425374
    1303525375  Tag ID               Tag Name                 Writable
    1303625376  ------               --------                 --------
    13037   'Bit000-015'         BlockSizeMin             N
    13038   'Bit016-031'         BlockSizeMax             N
    13039   'Bit032-055'         FrameSizeMin             N
    13040   'Bit056-079'         FrameSizeMax             N
    13041   'Bit080-099'         SampleRate               N
    13042   'Bit100-102'         Channels                 N
    13043   'Bit103-107'         BitsPerSample            N
    13044   'Bit108-143'         TotalSamples             N
    13045 
    13046 =head3 FLAC Picture Tags
    13047 
    13048    Index   Tag Name                             Writable
    13049    -----   --------                             --------
    13050       0    PictureType                          N
    13051       1    PictureMIMEType                      N
    13052       2    PictureDescription                   N
    13053       3    PictureWidth                         N
    13054       4    PictureHeight                        N
    13055       5    PictureBitsPerPixel                  N
    13056       6    PictureIndexedColors                 N
    13057       7    PictureLength                        N
    13058       8    Picture                              N
    13059 
    13060 =head2 APE Tags
    13061 
    13062 Tags found in Monkey's Audio (APE) information.  Only a few common tags are
    13063 listed below, but ExifTool will extract any tag found.  ExifTool supports
    13064 APEv1 and APEv2 tags, as well as ID3 information in APE files.
     25377  'Album'              Album                    no
     25378  'Artist'             Artist                   no
     25379  'DURATION'           Duration                 no
     25380  'Genre'              Genre                    no
     25381  'Title'              Title                    no
     25382  'Tool Name'          ToolName                 no
     25383  'Tool Version'       ToolVersion              no
     25384  'Track'              Track                    no
     25385  'Year'               Year                     no
     25386
     25387=head3 APE NewHeader Tags
     25388
     25389APE MAC audio header for version 3.98 or later.
     25390
     25391  Index2   Tag Name                             Writable
     25392  ------   --------                             --------
     25393      0    CompressionLevel                     no
     25394      2    BlocksPerFrame                       no
     25395      4    FinalFrameBlocks                     no
     25396      6    TotalFrames                          no
     25397      8    BitsPerSample                        no
     25398      9    Channels                             no
     25399     10    SampleRate                           no
     25400
     25401=head3 APE OldHeader Tags
     25402
     25403APE MAC audio header for version 3.97 or earlier.
     25404
     25405  Index2   Tag Name                             Writable
     25406  ------   --------                             --------
     25407      0    APEVersion                           no
     25408      1    CompressionLevel                     no
     25409      3    Channels                             no
     25410      4    SampleRate                           no
     25411     10    TotalFrames                          no
     25412     12    FinalFrameBlocks                     no
     25413
     25414=head2 Audible Tags
     25415
     25416ExifTool will extract any information found in the metadata dictionary of
     25417Audible .AA files, even if not listed in the table below.
    1306525418
    1306625419  Tag ID               Tag Name                 Writable
    1306725420  ------               --------                 --------
    13068   'Album'              Album                    N
    13069   'Artist'             Artist                   N
    13070   'Genre'              Genre                    N
    13071   'Title'              Title                    N
    13072   'Tool Name'          ToolName                 N
    13073   'Tool Version'       ToolVersion              N
    13074   'Track'              Track                    N
    13075   'Year'               Year                     N
    13076 
    13077 =head3 APE NewHeader Tags
    13078 
    13079 APE MAC audio header for version 3.98 or later.
    13080 
    13081    Index   Tag Name                             Writable
    13082    -----   --------                             --------
    13083       0    CompressionLevel                     N
    13084       2    BlocksPerFrame                       N
    13085       4    FinalFrameBlocks                     N
    13086       6    TotalFrames                          N
    13087       8    BitsPerSample                        N
    13088       9    Channels                             N
    13089      10    SampleRate                           N
    13090 
    13091 =head3 APE OldHeader Tags
    13092 
    13093 APE MAC audio header for version 3.97 or earlier.
    13094 
    13095    Index   Tag Name                             Writable
    13096    -----   --------                             --------
    13097       0    APEVersion                           N
    13098       1    CompressionLevel                     N
    13099       3    Channels                             N
    13100       4    SampleRate                           N
    13101      10    TotalFrames                          N
    13102      12    FinalFrameBlocks                     N
     25421  '_chapter_count'     ChapterCount             no
     25422  '_cover_art'         CoverArt                 no
     25423  'author'             Author                   no
     25424  'copyright'          Copyright                no
     25425  'pub_date_start'     PublishDateStart         no
     25426  'pubdate'            PublishDate              no
     25427
     25428=head3 Audible tags Tags
     25429
     25430Information found in "tags" atom of Audible M4B audio books.
     25431
     25432  Tag ID   Tag Name                             Writable
     25433  ------   --------                             --------
     25434  'cvrx'   Audible_cvrx                         Audible cvrx
     25435  'meta'   Audible_meta                         Audible meta
     25436  'tseg'   Audible_tseg                         Audible tseg
     25437
     25438=head3 Audible cvrx Tags
     25439
     25440Audible cover art information in M4B audio books.
     25441
     25442  Tag Name                                      Writable
     25443  --------                                      --------
     25444  CoverArt                                      no
     25445  CoverArtType                                  no
     25446
     25447=head3 Audible meta Tags
     25448
     25449Information found in Audible M4B "meta" atom.
     25450
     25451  Tag ID               Tag Name                 Writable
     25452  ------               --------                 --------
     25453  'ALBUMARTIST'        AlbumArtist              no
     25454  'Album'              Album                    no
     25455  'Artist'             Artist                   no
     25456  'Comment'            Comment                  no
     25457  'Genre'              Genre                    no
     25458  'SUBTITLE'           Subtitle                 no
     25459  'TOOL'               CreatorTool              no
     25460  'Title'              Title                    no
     25461  'Year'               Year                     no
     25462  'itunesmediatype'    iTunesMediaType          no
     25463  'track'              ChapterName              no
     25464
     25465=head3 Audible tseg Tags
     25466
     25467  Tag ID   Tag Name                             Writable
     25468  ------   --------                             --------
     25469  'meta'   Audible_meta2                        Audible meta
     25470  'tshd'   ChapterNumber                        no
    1310325471
    1310425472=head2 MPC Tags
     
    1310925477  Tag ID               Tag Name                 Writable
    1311025478  ------               --------                 --------
    13111   'Bit032-063'         TotalFrames              N
    13112   'Bit080-081'         SampleRate               N
    13113   'Bit084-087'         Quality                  N
    13114   'Bit088-093'         MaxBand                  N
    13115   'Bit096-111'         ReplayGainTrackPeak      N
    13116   'Bit112-127'         ReplayGainTrackGain      N
    13117   'Bit128-143'         ReplayGainAlbumPeak      N
    13118   'Bit144-159'         ReplayGainAlbumGain      N
    13119   'Bit179'             FastSeek                 N
    13120   'Bit191'             Gapless                  N
    13121   'Bit216-223'         EncoderVersion           N
     25479  'Bit032-063'         TotalFrames              no
     25480  'Bit080-081'         SampleRate               no
     25481  'Bit084-087'         Quality                  no
     25482  'Bit088-093'         MaxBand                  no
     25483  'Bit096-111'         ReplayGainTrackPeak      no
     25484  'Bit112-127'         ReplayGainTrackGain      no
     25485  'Bit128-143'         ReplayGainAlbumPeak      no
     25486  'Bit144-159'         ReplayGainAlbumGain      no
     25487  'Bit179'             FastSeek                 no
     25488  'Bit191'             Gapless                  no
     25489  'Bit216-223'         EncoderVersion           no
    1312225490
    1312325491=head2 MPEG Tags
     
    1313125499  Tag ID       Tag Name                         Writable
    1313225500  ------       --------                         --------
    13133   'Bit11-12'   MPEGAudioVersion                 N
    13134   'Bit13-14'   AudioLayer                       N
    13135   'Bit16-19'   AudioBitrate                     N
    13136   'Bit20-21'   SampleRate                       N
    13137   'Bit24-25'   ChannelMode                      N
    13138   'Bit26'      MSStereo                         N
    13139   'Bit26-27'   ModeExtension                    N
    13140   'Bit27'      IntensityStereo                  N
    13141   'Bit28'      CopyrightFlag                    N
    13142   'Bit29'      OriginalMedia                    N
    13143   'Bit30-31'   Emphasis                         N
     25501  'Bit11-12'   MPEGAudioVersion                 no
     25502  'Bit13-14'   AudioLayer                       no
     25503  'Bit16-19'   AudioBitrate                     no
     25504  'Bit20-21'   SampleRate                       no
     25505  'Bit24-25'   ChannelMode                      no
     25506  'Bit26'      MSStereo                         no
     25507  'Bit26-27'   ModeExtension                    no
     25508  'Bit27'      IntensityStereo                  no
     25509  'Bit28'      CopyrightFlag                    no
     25510  'Bit29'      OriginalMedia                    no
     25511  'Bit30-31'   Emphasis                         no
    1314425512
    1314525513=head3 MPEG Video Tags
     
    1314725515  Tag ID       Tag Name                         Writable
    1314825516  ------       --------                         --------
    13149   'Bit00-11'   ImageWidth                       N
    13150   'Bit12-23'   ImageHeight                      N
    13151   'Bit24-27'   AspectRatio                      N
    13152   'Bit28-31'   FrameRate                        N
    13153   'Bit32-49'   VideoBitrate                     N
     25517  'Bit00-11'   ImageWidth                       no
     25518  'Bit12-23'   ImageHeight                      no
     25519  'Bit24-27'   AspectRatio                      no
     25520  'Bit28-31'   FrameRate                        no
     25521  'Bit32-49'   VideoBitrate                     no
    1315425522
    1315525523=head3 MPEG Xing Tags
     
    1315925527  Tag Name                                      Writable
    1316025528  --------                                      --------
    13161   VBRFrames                                     N
    13162   VBRBytes                                      N
    13163   VBRScale                                      N
    13164   Encoder                                       N
    13165   LameVBRQuality                                N
    13166   LameQuality                                   N
     25529  Encoder                                       no
    1316725530  LameHeader                                    MPEG Lame
     25531  LameQuality                                   no
     25532  LameVBRQuality                                no
     25533  VBRBytes                                      no
     25534  VBRFrames                                     no
     25535  VBRScale                                      no
    1316825536
    1316925537=head3 MPEG Lame Tags
     
    1317125539Tags extracted from Lame 3.90 or later header.
    1317225540
    13173    Index   Tag Name                             Writable
    13174    -----   --------                             --------
    13175       9    LameMethod                           N
    13176      10    LameLowPassFilter                    N
    13177      20    LameBitrate                          N
    13178      24    LameStereoMode                       N
     25541  Index1   Tag Name                             Writable
     25542  ------   --------                             --------
     25543      9    LameMethod                           no
     25544     10    LameLowPassFilter                    no
     25545     20    LameBitrate                          no
     25546     24    LameStereoMode                       no
    1317925547
    1318025548=head2 M2TS Tags
     
    1318625554  Tag Name                                      Writable
    1318725555  --------                                      --------
    13188   AudioStreamType                               N
    13189   Duration                                      N
    13190   VideoStreamType                               N
     25556  AudioStreamType                               no
     25557  Duration                                      no
     25558  VideoStreamType                               no
    1319125559  _AC3                                          M2TS AC3
    1319225560  _H264                                         H264
     
    1319825566  Tag Name                                      Writable
    1319925567  --------                                      --------
    13200   AudioBitrate                                  N
    13201   AudioChannels                                 N
    13202   AudioSampleRate                               N
    13203   SurroundMode                                  N
     25568  AudioBitrate                                  no
     25569  AudioChannels                                 no
     25570  AudioSampleRate                               no
     25571  SurroundMode                                  no
    1320425572
    1320525573=head2 H264 Tags
     
    1321025578  Tag Name                                      Writable
    1321125579  --------                                      --------
    13212   ImageHeight                                   N
    13213   ImageWidth                                    N
     25580  ImageHeight                                   no
     25581  ImageWidth                                    no
    1321425582  MDPM                                          H264 MDPM
    1321525583
     
    1322725595  Tag ID   Tag Name                             Writable
    1322825596  ------   --------                             --------
    13229   0x0018   DateTimeOriginal                     N
     25597  0x0013   TimeCode                             no
     25598  0x0018   DateTimeOriginal                     no
    1323025599  0x0070   Camera1                              H264 Camera1
    1323125600  0x0071   Camera2                              H264 Camera2
    1323225601  0x007f   Shutter                              H264 Shutter
    13233   0x00a0   ExposureTime                         N
    13234   0x00a1   FNumber                              N
    13235   0x00a2   ExposureProgram                      N
    13236   0x00a3   BrightnessValue                      N
    13237   0x00a4   ExposureCompensation                 N
    13238   0x00a5   MaxApertureValue                     N
    13239   0x00a6   Flash                                N
    13240   0x00a7   CustomRendered                       N
    13241   0x00a8   WhiteBalance                         N
    13242   0x00a9   FocalLengthIn35mmFormat              N
    13243   0x00aa   SceneCaptureType                     N
    13244   0x00b0   GPSVersionID                         N
    13245   0x00b1   GPSLatitudeRef                       N
    13246   0x00b2   GPSLatitude                          N
    13247   0x00b5   GPSLongitudeRef                      N
    13248   0x00b6   GPSLongitude                         N
    13249   0x00b9   GPSAltitudeRef                       N
    13250   0x00ba   GPSAltitude                          N
    13251   0x00bb   GPSTimeStamp                         N
    13252   0x00be   GPSStatus                            N
    13253   0x00bf   GPSMeasureMode                       N
    13254   0x00c0   GPSDOP                               N
    13255   0x00c1   GPSSpeedRef                          N
    13256   0x00c2   GPSSpeed                             N
    13257   0x00c3   GPSTrackRef                          N
    13258   0x00c4   GPSTrack                             N
    13259   0x00c5   GPSImgDirectionRef                   N
    13260   0x00c6   GPSImgDirection                      N
    13261   0x00c7   GPSMapDatum                          N
     25602  0x00a0   ExposureTime                         no
     25603  0x00a1   FNumber                              no
     25604  0x00a2   ExposureProgram                      no
     25605  0x00a3   BrightnessValue                      no
     25606  0x00a4   ExposureCompensation                 no
     25607  0x00a5   MaxApertureValue                     no
     25608  0x00a6   Flash                                no
     25609  0x00a7   CustomRendered                       no
     25610  0x00a8   WhiteBalance                         no
     25611  0x00a9   FocalLengthIn35mmFormat              no
     25612  0x00aa   SceneCaptureType                     no
     25613  0x00b0   GPSVersionID                         no
     25614  0x00b1   GPSLatitudeRef                       no
     25615  0x00b2   GPSLatitude                          no
     25616  0x00b5   GPSLongitudeRef                      no
     25617  0x00b6   GPSLongitude                         no
     25618  0x00b9   GPSAltitudeRef                       no
     25619  0x00ba   GPSAltitude                          no
     25620  0x00bb   GPSTimeStamp                         no
     25621  0x00be   GPSStatus                            no
     25622  0x00bf   GPSMeasureMode                       no
     25623  0x00c0   GPSDOP                               no
     25624  0x00c1   GPSSpeedRef                          no
     25625  0x00c2   GPSSpeed                             no
     25626  0x00c3   GPSTrackRef                          no
     25627  0x00c4   GPSTrack                             no
     25628  0x00c5   GPSImgDirectionRef                   no
     25629  0x00c6   GPSImgDirection                      no
     25630  0x00c7   GPSMapDatum                          no
     25631  0x00ca   GPSDateStamp                         no
    1326225632  0x00e0   MakeModel                            H264 MakeModel
    1326325633  0x00e1   RecInfo                              H264 RecInfo
    13264   0x00e4   Model                                N
     25634  0x00e4   Model                                no
    1326525635  0x00ee   FrameInfo                            H264 FrameInfo
    1326625636
    1326725637=head3 H264 Camera1 Tags
    1326825638
    13269    Index   Tag Name                             Writable
    13270    -----   --------                             --------
    13271       0    ApertureSetting                      N
    13272       1    Gain                                 N
    13273     1.1    ExposureProgram                      N
    13274     2.1    WhiteBalance                         N
    13275       3    Focus                                N
     25639  Index1   Tag Name                             Writable
     25640  ------   --------                             --------
     25641      0    ApertureSetting                      no
     25642      1    Gain                                 no
     25643    1.1    ExposureProgram                      no
     25644    2.1    WhiteBalance                         no
     25645      3    Focus                                no
    1327625646
    1327725647=head3 H264 Camera2 Tags
    1327825648
    13279    Index   Tag Name                             Writable
    13280    -----   --------                             --------
    13281       1    ImageStabilization                   N
     25649  Index1   Tag Name                             Writable
     25650  ------   --------                             --------
     25651      1    ImageStabilization                   no
    1328225652
    1328325653=head3 H264 Shutter Tags
    1328425654
    13285    Index   Tag Name                             Writable
    13286    -----   --------                             --------
    13287     1.1    ExposureTime                         N
     25655  Index2   Tag Name                             Writable
     25656  ------   --------                             --------
     25657    1.1    ExposureTime                         no
    1328825658
    1328925659=head3 H264 MakeModel Tags
    1329025660
    13291    Index   Tag Name                             Writable
    13292    -----   --------                             --------
    13293       0    Make                                 N
     25661  Index2   Tag Name                             Writable
     25662  ------   --------                             --------
     25663      0    Make                                 no
    1329425664
    1329525665=head3 H264 RecInfo Tags
     
    1329725667Recording information stored by some Canon video cameras.
    1329825668
    13299    Index   Tag Name                             Writable
    13300    -----   --------                             --------
    13301       0    RecordingMode                        N
     25669  Index1   Tag Name                             Writable
     25670  ------   --------                             --------
     25671      0    RecordingMode                        no
    1330225672
    1330325673=head3 H264 FrameInfo Tags
     
    1330525675Frame rate information stored by some Canon video cameras.
    1330625676
    13307    Index   Tag Name                             Writable
    13308    -----   --------                             --------
    13309       0    CaptureFrameRate                     N
    13310       1    VideoFrameRate                       N
     25677  Index1   Tag Name                             Writable
     25678  ------   --------                             --------
     25679      0    CaptureFrameRate                     no
     25680      1    VideoFrameRate                       no
    1331125681
    1331225682=head2 QuickTime Tags
    1331325683
    1331425684The QuickTime format is used for many different types of audio, video and
    13315 image files.  Exiftool extracts meta information from the UserData atom
    13316 (including some proprietary manufacturer-specific information), as well as
    13317 extracting various audio, video and image parameters.  Tags with a question
    13318 mark after their name are not extracted unless the Unknown option is set.
     25685image files (most notably, MOV/MP4 videos and HEIC/CR3 images).  ExifTool
     25686extracts standard meta information and a variety of audio, video and image
     25687parameters, as well as proprietary information written by many camera
     25688models.  Tags with a question mark after their name are not extracted unless
     25689the Unknown option is set.
     25690
     25691When writing, ExifTool creates both QuickTime and XMP tags by default, but
     25692the group may be specified to write one or the other separately.  If no
     25693location is specified, newly created QuickTime tags are added in the
     25694L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> location if
     25695possible, otherwise in
     25696L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags>, and
     25697finally in L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags>,
     25698but this order may be changed by setting the PREFERRED level of the
     25699appropriate table in the config file (see
     25700example.config in the full distribution for an
     25701example).  Note that some tags with the same name but different ID's may
     25702exist in the same location, but the family 7 group names may be used to
     25703differentiate these.  ExifTool currently writes only top-level metadata in
     25704QuickTime-based files; it extracts other track-specific and timed metadata,
     25705but can not yet edit tags in these locations (with the exception of
     25706track-level date/time tags).
     25707
     25708Alternate language tags may be accessed for
     25709L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
     25710L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags> tags by adding
     25711a 3-character ISO 639-2 language code and an optional ISO 3166-1 alpha 2
     25712country code to the tag name (eg. "ItemList:Artist-deu" or
     25713"ItemList::Artist-deu-DE").  Most
     25714L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags support a
     25715language code, but without a country code.  If no language code is specified
     25716when writing, the default language is written and alternate languages for
     25717the tag are deleted.  Use the "und" language code to write the default
     25718language without deleting alternate languages.  Note that "eng" is treated
     25719as a default language when reading, but not when writing.
     25720
     25721According to the specification, integer-format QuickTime date/time tags
     25722should be stored as UTC.  Unfortunately, digital cameras often store local
     25723time values instead (presumably because they don't know the time zone).  For
     25724this reason, by default ExifTool does not assume a time zone for these
     25725values.  However, if the QuickTimeUTC API option is set, then ExifTool will
     25726assume these values are properly stored as UTC, and will convert them to
     25727local time when extracting.
     25728
     25729When writing string-based date/time tags, the system time zone is added if
     25730the PrintConv option is enabled and no time zone is specified.  This is
     25731because Apple software may display crazy values if the time zone is missing
     25732for some tags.
     25733
     25734See
     25735L<https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/>
     25736for the official specification.
    1331925737
    1332025738  Tag ID               Tag Name                 Writable
    1332125739  ------               --------                 --------
    13322   'PICT'               PreviewPICT              N
    13323   'free'               Free?                    N
     25740  'GPS '               GPSDataList2?            no
     25741  'IDIT'               DateTimeOriginal         string
     25742  'PICT'               PreviewPICT              no
     25743  '_htc'               HTCInfo                  QuickTime HTCInfo
     25744  'ardt'               ARDroneFile              no
     25745  'frea'               Kodak_frea               Kodak frea
     25746  'free'               KodakFree                Kodak Free
     25747                       Pittasoft                QuickTime Pittasoft
     25748                       Free?                    no
    1332425749  'ftyp'               FileType                 QuickTime FileType
    13325   'junk'               Junk?                    N
    13326   'mdat'               MovieData?               N
    13327   'mdat-size'          MovieDataSize            N
     25750  'gps0'               GPSTrack                 QuickTime Stream
     25751  'gsen'               GSensor                  QuickTime Stream
     25752  'junk'               Junk?                    no
     25753  'mdat'               MediaData?               no
     25754  'mdat-offset'        MediaDataOffset          no
     25755  'mdat-size'          MediaDataSize            no
     25756  'meco'               OtherMeta                QuickTime OtherMeta
     25757  'meta'               Meta                     QuickTime Meta
     25758  'moof'               MovieFragment            QuickTime MovieFragment
    1332825759  'moov'               Movie                    QuickTime Movie
    13329   'pict'               PreviewPICT              N
     25760  'pict'               PreviewPICT              no
    1333025761  'pnot'               Preview                  QuickTime Preview
    13331   'skip'               Skip?                    N
    13332   'uuid'               UUID-XMP                 XMP
     25762  'prrt'               ARDroneTelemetry         no
     25763  'skip'               CanonSkip                Canon Skip
     25764                       PreviewImage             no
     25765                       Skip?                    no
     25766  'thm '               ThumbnailImage           no
     25767  'thum'               ThumbnailImage           no
     25768  'udat'               GPSLog                   no
     25769  'udta'               UserData                 FLIR UserData
     25770  'uuid'               XMP                      XMP
    1333325771                       UUID-PROF                QuickTime Profile
    1333425772                       UUID-Flip                QuickTime Flip
    13335                        UUID-Unknown?            N
    13336   'wide'               Wide?                    N
     25773                       UUID-Canon2              Canon uuid2
     25774                       SensorData               QuickTime Tags360Fly
     25775                       SensorData               no
     25776                       PreviewImage             no
     25777                       UUID-Unknown?            no
     25778  'wide'               Wide?                    no
     25779
     25780=head3 QuickTime HTCInfo Tags
     25781
     25782Tags written by some HTC camera phones.
     25783
     25784  Tag ID   Tag Name                             Writable
     25785  ------   --------                             --------
     25786  'slmt'   Unknown_slmt?                        no
     25787
     25788=head3 QuickTime Pittasoft Tags
     25789
     25790Tags found in Pittasoft Blackvue dashcam "free" data.
     25791
     25792  Tag ID   Tag Name                             Writable
     25793  ------   --------                             --------
     25794  '3gf '   AccelData                            QuickTime Stream
     25795  'cprt'   Copyright                            no
     25796  'gps '   GPSLog                               no
     25797  'ptnm'   OriginalFileName                     no
     25798  'ptrh'   Ptrh                                 QuickTime Pittasoft
     25799  'sttm'   StartTime                            no
     25800  'thum'   PreviewImage                         no
     25801
     25802=head3 QuickTime Stream Tags
     25803
     25804Timed metadata extracted from QuickTime media data and some AVI videos when
     25805the ExtractEmbedded option is used.  Although most of these tags are
     25806combined into the single table below, ExifTool currently reads 49 different
     25807formats of timed GPS metadata from video files.
     25808
     25809  Tag Name                                      Writable
     25810  --------                                      --------
     25811  Accelerometer                                 no
     25812  AccelerometerData                             no
     25813  AngularVelocity                               no
     25814  CTMD                                          Canon CTMD
     25815  CameraDateTime                                no
     25816  Car                                           no
     25817  Distance                                      no
     25818  ExposureCompensation                          no
     25819  ExposureTime                                  no
     25820  FNumber                                       no
     25821  FrameNumber                                   no
     25822  GPSAltitude                                   no
     25823  GPSDOP                                        no
     25824  GPSDateTime                                   no
     25825  GPSLatitude                                   no
     25826  GPSLongitude                                  no
     25827  GPSSatellites                                 no
     25828  GPSSpeed                                      no
     25829  GPSSpeedRef                                   no
     25830  GPSTimeStamp                                  no
     25831  GPSTrack                                      no
     25832  GPSTrackRef                                   no
     25833  GSensor                                       no
     25834  INSV                                          QuickTime INSV_MakerNotes
     25835  ISO                                           no
     25836  JpgFromRaw                                    no
     25837  PreviewInfo                                   QuickTime PreviewInfo
     25838  RVMI_gReV                                     QuickTime RVMI_gReV
     25839  RVMI_sReV                                     QuickTime RVMI_sReV
     25840  RawGSensor                                    no
     25841  SampleDateTime                                no
     25842  SampleDuration                                no
     25843  SampleTime                                    no
     25844  Text                                          no
     25845  TimeCode                                      no
     25846  Unknown00?                                    no
     25847  Unknown01?                                    no
     25848  Unknown02?                                    no
     25849  Unknown03?                                    no
     25850  UserLabel                                     no
     25851  VerticalSpeed                                 no
     25852  VideoTimeStamp                                no
     25853  camm0                                         QuickTime camm0
     25854  camm1                                         QuickTime camm1
     25855  camm2                                         QuickTime camm2
     25856  camm3                                         QuickTime camm3
     25857  camm4                                         QuickTime camm4
     25858  camm5                                         QuickTime camm5
     25859  camm6                                         QuickTime camm6
     25860  camm7                                         QuickTime camm7
     25861  fdsc                                          GoPro fdsc
     25862  gpmd_GoPro                                    GoPro GPMF
     25863  gpmd_Rove                                     QuickTime Stream
     25864  marl                                          QuickTime marl
     25865  mebx                                          QuickTime Keys
     25866  mett                                          Parrot mett
     25867  rtmd                                          Sony rtmd
     25868  tx3g                                          QuickTime tx3g
     25869
     25870=head3 QuickTime INSV_MakerNotes Tags
     25871
     25872  Tag ID   Tag Name                             Writable
     25873  ------   --------                             --------
     25874  0x000a   SerialNumber                         no
     25875  0x0012   Model                                no
     25876  0x001a   Firmware                             no
     25877  0x002a   Parameters                           no
     25878
     25879=head3 QuickTime PreviewInfo Tags
     25880
     25881Preview stored by TomTom Bandit ActionCam.
     25882
     25883  Index1   Tag Name                             Writable
     25884  ------   --------                             --------
     25885      8    PreviewImage                         no
     25886
     25887=head3 QuickTime RVMI_gReV Tags
     25888
     25889GPS information extracted from the RVMI box of MOV videos.
     25890
     25891  Index1   Tag Name                             Writable
     25892  ------   --------                             --------
     25893      4    GPSLatitude                          no
     25894      8    GPSLongitude                         no
     25895     16    GPSSpeed                             no
     25896     18    GPSTrack                             no
     25897
     25898=head3 QuickTime RVMI_sReV Tags
     25899
     25900G-sensor information extracted from the RVMI box of MOV videos.
     25901
     25902  Index1   Tag Name                             Writable
     25903  ------   --------                             --------
     25904      4    GSensor                              no
     25905
     25906=head3 QuickTime camm0 Tags
     25907
     25908The camm0 through camm7 tables define tags extracted from the Google Street
     25909View Camera Motion Metadata of MP4 videos.  See
     25910L<https://developers.google.com/streetview/publish/camm-spec> for the
     25911specification.
     25912
     25913  Index1   Tag Name                             Writable
     25914  ------   --------                             --------
     25915      4    AngleAxis                            no
     25916
     25917=head3 QuickTime camm1 Tags
     25918
     25919  Index1   Tag Name                             Writable
     25920  ------   --------                             --------
     25921      4    PixelExposureTime                    no
     25922      8    RollingShutterSkewTime               no
     25923
     25924=head3 QuickTime camm2 Tags
     25925
     25926  Index1   Tag Name                             Writable
     25927  ------   --------                             --------
     25928      4    AngularVelocity                      no
     25929
     25930=head3 QuickTime camm3 Tags
     25931
     25932  Index1   Tag Name                             Writable
     25933  ------   --------                             --------
     25934      4    Acceleration                         no
     25935
     25936=head3 QuickTime camm4 Tags
     25937
     25938  Index1   Tag Name                             Writable
     25939  ------   --------                             --------
     25940      4    Position                             no
     25941
     25942=head3 QuickTime camm5 Tags
     25943
     25944  Index1   Tag Name                             Writable
     25945  ------   --------                             --------
     25946      4    GPSLatitude                          no
     25947     12    GPSLongitude                         no
     25948     20    GPSAltitude                          no
     25949
     25950=head3 QuickTime camm6 Tags
     25951
     25952  Index1   Tag Name                             Writable
     25953  ------   --------                             --------
     25954      4    GPSDateTime                          no
     25955     12    GPSMeasureMode                       no
     25956     16    GPSLatitude                          no
     25957     24    GPSLongitude                         no
     25958     32    GPSAltitude                          no
     25959     36    GPSHorizontalAccuracy                no
     25960     40    GPSVerticalAccuracy                  no
     25961     44    GPSVelocityEast                      no
     25962     48    GPSVelocityNorth                     no
     25963     52    GPSVelocityUp                        no
     25964     56    GPSSpeedAccuracy                     no
     25965
     25966=head3 QuickTime camm7 Tags
     25967
     25968  Index1   Tag Name                             Writable
     25969  ------   --------                             --------
     25970      4    MagneticField                        no
     25971
     25972=head3 QuickTime marl Tags
     25973
     25974Tags extracted from the marl ctbx timed metadata of GM cars.
     25975
     25976  Tag ID   Tag Name                             Writable
     25977  ------   --------                             --------
     25978  [no tags known]
     25979
     25980=head3 QuickTime Keys Tags
     25981
     25982This directory contains a list of key names which are used to decode tags
     25983written by the "mdta" handler.  Also in this table are a few tags found in
     25984timed metadata that are not yet writable by ExifTool.  The prefix of
     25985"com.apple.quicktime." has been removed from the TagID's below.  These tags
     25986support alternate languages in the same way as the
     25987L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> tags.  Note
     25988that by default,
     25989L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
     25990L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags are
     25991preferred when writing, so to create a tag when a same-named tag exists in
     25992either of these tables, either the "Keys" location must be specified (eg.
     25993C<-Keys:Author=Phil> on the command line), or the PREFERRED level must be
     25994changed via the config file.
     25995
     25996  Tag ID                  Tag Name              Writable
     25997  ------                  --------              --------
     25998  'Encoded_With'          EncodedWith           string
     25999  'album'                 Album                 string
     26000  'artist'                Artist                string
     26001  'artwork'               Artwork               string
     26002  'author'                Author                string
     26003  'camera.framereadouttimeinmicroseconds'
     26004                          FrameReadoutTime      string
     26005  'camera.identifier'     CameraIdentifier      string
     26006  'collection.user'       UserCollection        string
     26007  'com.android.version'   AndroidVersion        string
     26008  'com.apple.photos.captureMode' CaptureMode    string
     26009  'comment'               Comment               string
     26010  'copyright'             Copyright             string
     26011  'creationdate'          CreationDate          string
     26012  'description'           Description           string
     26013  'detected-face'         FaceInfo              QuickTime FaceInfo
     26014  'detected-face.bounds'  DetectedFaceBounds    no
     26015  'detected-face.face-id' DetectedFaceID        no
     26016  'detected-face.roll-angle'
     26017                          DetectedFaceRollAngle no
     26018  'detected-face.yaw-angle'
     26019                          DetectedFaceYawAngle  no
     26020  'direction.facing'      CameraDirection       string
     26021  'direction.motion'      CameraMotion          string
     26022  'director'              Director              string
     26023  'displayname'           DisplayName           string
     26024  'genre'                 Genre                 string
     26025  'information'           Information           string
     26026  'keywords'              Keywords              string
     26027  'live-photo-info'       LivePhotoInfo         no
     26028  'location.ISO6709'      GPSCoordinates        string
     26029  'location.body'         LocationBody          string
     26030  'location.date'         LocationDate          string
     26031  'location.name'         LocationName          string
     26032  'location.note'         LocationNote          string
     26033  'location.role'         LocationRole          string
     26034  'make'                  Make                  string
     26035  'model'                 Model                 string
     26036  'player.movie.audio.balance' Balance          string
     26037  'player.movie.audio.bass' Bass                string
     26038  'player.movie.audio.gain' AudioGain           string
     26039  'player.movie.audio.mute' Mute                int8u
     26040  'player.movie.audio.pitchshift' PitchShift    string
     26041  'player.movie.audio.treble' Trebel            string
     26042  'player.movie.visual.brightness' Brightness   string
     26043  'player.movie.visual.color' Color             string
     26044  'player.movie.visual.contrast' Contrast       string
     26045  'player.movie.visual.tint' Tint               string
     26046  'player.version'        PlayerVersion         string
     26047  'producer'              Producer              string
     26048  'publisher'             Publisher             string
     26049  'rating.user'           UserRating            string
     26050  'software'              Software              string
     26051  'still-image-time'      StillImageTime        no
     26052  'title'                 Title                 string
     26053  'version'               Version               string
     26054  'video-orientation'     VideoOrientation      no
     26055  'year'                  Year                  string
     26056
     26057=head3 QuickTime FaceInfo Tags
     26058
     26059  Tag ID   Tag Name                             Writable
     26060  ------   --------                             --------
     26061  'crec'   FaceRec                              QuickTime FaceRec
     26062
     26063=head3 QuickTime FaceRec Tags
     26064
     26065  Tag ID   Tag Name                             Writable
     26066  ------   --------                             --------
     26067  'cits'   FaceItem                             QuickTime Keys
     26068
     26069=head3 QuickTime tx3g Tags
     26070
     26071Tags extracted from the tx3g sbtl timed metadata of Yuneec drones, and
     26072subtitle text in some other videos.
     26073
     26074  Tag ID       Tag Name                         Writable
     26075  ------       --------                         --------
     26076  'Alt'        GPSAltitude                      no
     26077  'DateTime'   DateTime                         no
     26078  'GimPitch'   GimbalPitch                      no
     26079  'GimRoll'    GimbalRoll                       no
     26080  'GimYaw'     GimbalYaw                        no
     26081  'Lat'        GPSLatitude                      no
     26082  'Lon'        GPSLongitude                     no
     26083  'Pitch'      Pitch                            no
     26084  'Roll'       Roll                             no
     26085  'Text'       Text                             no
     26086  'Yaw'        Yaw                              no
    1333726087
    1333826088=head3 QuickTime FileType Tags
    1333926089
    13340    Index   Tag Name                             Writable
    13341    -----   --------                             --------
    13342       0    MajorBrand                           N
    13343       1    MinorVersion                         N
    13344       2    CompatibleBrands                     N
     26090  Index4   Tag Name                             Writable
     26091  ------   --------                             --------
     26092      0    MajorBrand                           no
     26093      1    MinorVersion                         no
     26094      2    CompatibleBrands                     no
     26095
     26096=head3 QuickTime OtherMeta Tags
     26097
     26098  Tag ID   Tag Name                             Writable
     26099  ------   --------                             --------
     26100  'mere'   MetaRelation                         QuickTime MetaRelation
     26101  'meta'   Meta                                 QuickTime Meta
     26102
     26103=head3 QuickTime MetaRelation Tags
     26104
     26105  Index4   Tag Name                             Writable
     26106  ------   --------                             --------
     26107  [no tags known]
     26108
     26109=head3 QuickTime Meta Tags
     26110
     26111  Tag ID   Tag Name                             Writable
     26112  ------   --------                             --------
     26113  'bxml'   BinaryXML?                           no
     26114  'dinf'   DataInfo                             QuickTime DataInfo
     26115  'free'   Free?                                no
     26116  'hdlr'   Handler                              QuickTime Handler
     26117  'idat'   MetaImageSize                        no
     26118  'iinf'   ItemInformation                      QuickTime ItemInfo
     26119                                                QuickTime ItemInfo
     26120  'iloc'   ItemLocation                         no
     26121  'ilst'   ItemList                             QuickTime ItemList
     26122  'ipmc'   IPMPControl?                         no
     26123  'ipro'   ItemProtection?                      no
     26124  'iprp'   ItemProperties                       QuickTime ItemProp
     26125  'iref'   ItemReference                        QuickTime ItemRef
     26126  'keys'   Keys                                 QuickTime Keys
     26127  'pitm'   PrimaryItemReference                 no
     26128  'uuid'   MetaVersion                          no
     26129           UUID-Unknown?                        no
     26130  'xml '   XML                                  XMP XML
     26131
     26132=head3 QuickTime DataInfo Tags
     26133
     26134MP4 data information box.
     26135
     26136  Tag ID   Tag Name                             Writable
     26137  ------   --------                             --------
     26138  'dref'   DataRef                              QuickTime DataRef
     26139
     26140=head3 QuickTime DataRef Tags
     26141
     26142MP4 data reference box.
     26143
     26144  Tag ID   Tag Name                             Writable
     26145  ------   --------                             --------
     26146  "url\0"  URL                                  no
     26147  'url '   URL                                  no
     26148  'urn '   URN                                  no
     26149
     26150=head3 QuickTime Handler Tags
     26151
     26152  Index1   Tag Name                             Writable
     26153  ------   --------                             --------
     26154      4    HandlerClass                         no
     26155      8    HandlerType                          no
     26156     12    HandlerVendorID                      no
     26157     24    HandlerDescription                   no
     26158
     26159=head3 QuickTime ItemInfo Tags
     26160
     26161  Tag ID   Tag Name                             Writable
     26162  ------   --------                             --------
     26163  'infe'   ItemInfoEntry                        no
     26164
     26165=head3 QuickTime ItemList Tags
     26166
     26167This is the preferred location for creating new QuickTime tags.  Tags in
     26168this table support alternate languages which are accessed by adding a
     261693-character ISO 639-2 language code and an optional ISO 3166-1 alpha 2
     26170country code to the tag name (eg. "ItemList:Title-fra" or
     26171"ItemList::Title-fra-FR").  When creating a new Meta box to contain the
     26172ItemList directory, by default ExifTool adds an 'mdir' (Metadata) Handler
     26173box because Apple software may ignore ItemList tags otherwise, but the API
     26174QuickTimeHandler option may be set to 0 to avoid this.
     26175
     26176  Tag ID       Tag Name                         Writable
     26177  ------       --------                         --------
     26178  '----'       iTunesInfo                       QuickTime iTunesInfo
     26179  '@PST'       ParentShortTitle                 string
     26180  '@ppi'       ParentProductID                  string
     26181  '@pti'       ParentTitle                      string
     26182  '@sti'       ShortTitle                       string
     26183  'AACR'       Unknown_AACR?                    string
     26184  'CDEK'       Unknown_CDEK?                    string
     26185  'CDET'       Unknown_CDET?                    string
     26186  'GUID'       GUID                             string
     26187  'VERS'       ProductVersion                   string
     26188  'aART'       AlbumArtist                      string
     26189  'akID'       AppleStoreAccountType            int8s
     26190  'albm'       Album                            string/
     26191  'apID'       AppleStoreAccount                string
     26192  'atID'       AlbumTitleID                     int32s
     26193  'auth'       Author                           string
     26194  'catg'       Category                         string
     26195  'cnID'       AppleStoreCatalogID              int32s
     26196  'covr'       CoverArt                         string
     26197  'cpil'       Compilation                      int8s
     26198  'cprt'       Copyright                        string
     26199  'desc'       Description                      string/
     26200  'disk'       DiskNumber                       undef
     26201  'dscp'       Description                      string/
     26202  'egid'       EpisodeGlobalUniqueID            string
     26203  'geID'       GenreID                          int32s
     26204  'gnre'       Genre                            undef/
     26205  'grup'       Grouping                         string/
     26206  'gshh'       GoogleHostHeader                 string
     26207  'gspm'       GooglePingMessage                string
     26208  'gspu'       GooglePingURL                    string
     26209  'gssd'       GoogleSourceData                 string
     26210  'gsst'       GoogleStartTime                  string
     26211  'gstd'       GoogleTrackDuration              string
     26212  'hdvd'       HDVideo                          int8s
     26213  'itnu'       iTunesU                          int8s
     26214  'keyw'       Keyword                          string
     26215  'ldes'       LongDescription                  string
     26216  'pcst'       Podcast                          int8s
     26217  'perf'       Performer                        string
     26218  'pgap'       PlayGap                          int8s
     26219  'plID'       PlayListID                       int32s[0.25]
     26220  'prID'       ProductID                        string
     26221  'purd'       PurchaseDate                     string
     26222  'purl'       PodcastURL                       string
     26223  'rate'       RatingPercent                    string
     26224  'rldt'       ReleaseDate                      string
     26225  'rtng'       Rating                           int8s
     26226  'sdes'       StoreDescription                 string
     26227  'sfID'       AppleStoreCountry                int32s
     26228  'shwm'       ShowMovement                     int8s
     26229  'soaa'       SortAlbumArtist                  string
     26230  'soal'       SortAlbum                        string
     26231  'soar'       SortArtist                       string
     26232  'soco'       SortComposer                     string
     26233  'sonm'       SortName                         string
     26234  'sosn'       SortShow                         string
     26235  'stik'       MediaType                        int8s
     26236  'titl'       Title                            string/
     26237  'tmpo'       BeatsPerMinute                   int16s
     26238  'trkn'       TrackNumber                      undef
     26239  'tven'       TVEpisodeID                      string
     26240  'tves'       TVEpisode                        int32s
     26241  'tvnn'       TVNetworkName                    string
     26242  'tvsh'       TVShow                           string
     26243  'tvsn'       TVSeason                         int32u
     26244  'yrrc'       Year                             string
     26245  "\xa9ART"    Artist                           string
     26246  "\xa9alb"    Album                            string
     26247  "\xa9ard"    ArtDirector                      string
     26248  "\xa9arg"    Arranger                         string
     26249  "\xa9aut"    Author                           string/
     26250  "\xa9cmt"    Comment                          string
     26251  "\xa9com"    Composer                         string/
     26252  "\xa9con"    Conductor                        string
     26253  "\xa9cpy"    Copyright                        string/
     26254  "\xa9day"    ContentCreateDate                string
     26255  "\xa9des"    Description                      string
     26256  "\xa9dir"    Director                         string
     26257  "\xa9enc"    EncodedBy                        string
     26258  "\xa9gen"    Genre                            string
     26259  "\xa9grp"    Grouping                         string
     26260  "\xa9lyr"    Lyrics                           string
     26261  "\xa9mvc"    MovementCount                    int16s
     26262  "\xa9mvi"    MovementNumber                   int16s
     26263  "\xa9mvn"    MovementName                     string
     26264  "\xa9nam"    Title                            string
     26265  "\xa9nrt"    Narrator                         string
     26266  "\xa9ope"    OriginalArtist                   string
     26267  "\xa9prd"    Producer                         string
     26268  "\xa9pub"    Publisher                        string
     26269  "\xa9sne"    SoundEngineer                    string
     26270  "\xa9sol"    Soloist                          string
     26271  "\xa9st3"    Subtitle                         string
     26272  "\xa9too"    Encoder                          string
     26273  "\xa9trk"    Track                            string
     26274  "\xa9wrk"    Work                             string
     26275  "\xa9wrt"    Composer                         string
     26276  "\xa9xpd"    ExecutiveProducer                string
     26277  "\xa9xyz"    GPSCoordinates                   string
     26278
     26279=head3 QuickTime iTunesInfo Tags
     26280
     26281ExifTool will extract any iTunesInfo tags that exist, even if they are not
     26282defined in this table.
     26283
     26284  Tag ID                    Tag Name            Writable
     26285  ------                    --------            --------
     26286  'DISCNUMBER'              DiscNumber          no
     26287  'Encoding Params'         EncodingParams      QuickTime EncodingParams
     26288  'TRACKNUMBER'             TrackNumber         no
     26289  'iTunEXTC'                ContentRating       no
     26290  'iTunMOVI'                iTunMOVI            PLIST
     26291  'iTunNORM'                VolumeNormalization no
     26292  'iTunSMPB'                iTunSMPB            no
     26293  'iTunes_CDDB_1'           CDDB1Info           no
     26294  'iTunes_CDDB_TrackNumber' CDDBTrackNumber     no
     26295  'popularimeter'           Popularimeter       no
     26296  'tool'                    iTunTool            no
     26297
     26298=head3 QuickTime EncodingParams Tags
     26299
     26300  Tag ID   Tag Name                             Writable
     26301  ------   --------                             --------
     26302  'abrt'   AudioAvailableBitRateRange           no
     26303  'acbf'   AudioBitRateControlMode              no
     26304  'acef'   AudioExtendFrequencies               no
     26305  'brat'   AudioCurrentTargetBitRate            no
     26306  'cdcv'   AudioComponentVersion                no
     26307  'cmnc'   AudioAvailableNumberChannels         no
     26308  'init'   AudioIsInitialized                   no
     26309  'lmrc'   AudioDoesSampleRateConversion        no
     26310  'mdel'   AudioMinimumDelayMode                no
     26311  'mnip'   AudioMinimumNumberInputPackets       no
     26312  'mnop'   AudioMinimumNumberOutputPackets      no
     26313  'oppr'   AudioOutputPrecedence                no
     26314  'pad0'   AudioZeroFramesPadded                no
     26315  'pakb'   AudioMaximumPacketByteSize           no
     26316  'pakd'   AudioRequiresPacketDescription       no
     26317  'pakf'   AudioPacketFrameSize                 no
     26318  'prmm'   AudioCodecPrimeMethod                no
     26319  'srcq'   AudioQualitySetting                  no
     26320  'tbuf'   AudioInputBufferSize                 no
     26321  'ubuf'   AudioUsedInputBufferSize             no
     26322  'ursr'   AudioUseRecommendedSampleRate        no
     26323  'vbrq'   AudioVBRQuality                      no
     26324  'vers'   AudioEncodingParamsVersion           no
     26325  'vpk?'   AudioHasVariablePacketByteSizes      no
     26326
     26327=head3 QuickTime ItemProp Tags
     26328
     26329  Tag ID   Tag Name                             Writable
     26330  ------   --------                             --------
     26331  'ipco'   ItemPropertyContainer                QuickTime ItemPropCont
     26332  'ipma'   ItemPropertyAssociation              no
     26333
     26334=head3 QuickTime ItemPropCont Tags
     26335
     26336  Tag ID   Tag Name                             Writable
     26337  ------   --------                             --------
     26338  'auxC'   AuxiliaryImageType                   no
     26339  'av1C'   AV1Configuration                     QuickTime AV1Config
     26340  'clap'   CleanAperture                        no
     26341  'colr'   ICC_Profile                          ICC_Profile
     26342           ColorRepresentation                  no
     26343  'hvcC'   HEVCConfiguration                    QuickTime HEVCConfig
     26344  'irot'   Rotation                             int8u!
     26345  'ispe'   ImageSpatialExtent                   no
     26346  'pasp'   PixelAspectRatio                     int32u!
     26347  'pixi'   ImagePixelDepth                      no
     26348  'rloc'   RelativeLocation                     no
     26349
     26350=head3 QuickTime AV1Config Tags
     26351
     26352  Index1   Tag Name                             Writable
     26353  ------   --------                             --------
     26354      0    AV1ConfigurationVersion              no
     26355      1    SeqProfile?                          no
     26356    1.1    SeqLevelIdx0?                        no
     26357      2    SeqTier0?                            no
     26358    2.1    HighBitDepth?                        no
     26359    2.2    TwelveBit?                           no
     26360    2.3    ChromaFormat                         no
     26361    2.4    ChromaSamplePosition                 no
     26362      3    InitialDelaySamples?                 no
     26363
     26364=head3 QuickTime HEVCConfig Tags
     26365
     26366  Index1   Tag Name                             Writable
     26367  ------   --------                             --------
     26368      0    HEVCConfigurationVersion             no
     26369      1    GeneralProfileSpace                  no
     26370    1.1    GeneralTierFlag                      no
     26371    1.2    GeneralProfileIDC                    no
     26372      2    GenProfileCompatibilityFlags         no
     26373      6    ConstraintIndicatorFlags             no
     26374     12    GeneralLevelIDC                      no
     26375     13    MinSpatialSegmentationIDC            no
     26376     15    ParallelismType                      no
     26377     16    ChromaFormat                         no
     26378     17    BitDepthLuma                         no
     26379     18    BitDepthChroma                       no
     26380     19    AverageFrameRate                     no
     26381     21    ConstantFrameRate                    no
     26382   21.1    NumTemporalLayers                    no
     26383   21.2    TemporalIDNested                     no
     26384
     26385=head3 QuickTime ItemRef Tags
     26386
     26387The Item reference entries listed in the table below contain information about
     26388the associations between items in the file.  This information is used by
     26389ExifTool, but these entries are not extracted as tags.
     26390
     26391  Tag ID   Tag Name                             Writable
     26392  ------   --------                             --------
     26393  'auxl'   AuxiliaryImageRef                    no
     26394  'cdsc'   ContentDescribes                     no
     26395  'dimg'   DerivedImageRef                      no
     26396  'thmb'   ThumbnailRef                         no
     26397
     26398=head3 QuickTime MovieFragment Tags
     26399
     26400  Tag ID   Tag Name                             Writable
     26401  ------   --------                             --------
     26402  'meta'   Meta                                 QuickTime Meta
     26403  'mfhd'   MovieFragmentHeader                  QuickTime MovieFragHdr
     26404  'traf'   TrackFragment                        QuickTime TrackFragment
     26405
     26406=head3 QuickTime MovieFragHdr Tags
     26407
     26408  Index4   Tag Name                             Writable
     26409  ------   --------                             --------
     26410      1    MovieFragmentSequence                no
     26411
     26412=head3 QuickTime TrackFragment Tags
     26413
     26414  Tag ID   Tag Name                             Writable
     26415  ------   --------                             --------
     26416  'meta'   Meta                                 QuickTime Meta
    1334526417
    1334626418=head3 QuickTime Movie Tags
     
    1334826420  Tag ID   Tag Name                             Writable
    1334926421  ------   --------                             --------
    13350   'iods'   InitialObjectDescriptor?             N
     26422  'cmov'   CompressedMovie                      QuickTime CMovie
     26423  'gps '   GPSDataList?                         no
     26424  'htka'   HTCTrack                             QuickTime Track
     26425  'iods'   InitialObjectDescriptor?             no
     26426  'meco'   OtherMeta                            QuickTime OtherMeta
    1335126427  'meta'   Meta                                 QuickTime Meta
    1335226428  'mvhd'   MovieHeader                          QuickTime MovieHeader
     
    1335426430  'udta'   UserData                             QuickTime UserData
    1335526431  'uuid'   UUID-USMT                            QuickTime UserMedia
    13356            UUID-Unknown?                        N
    13357 
    13358 =head3 QuickTime Meta Tags
     26432           UUID-Canon                           Canon uuid
     26433           UUID-Unknown?                        no
     26434
     26435=head3 QuickTime CMovie Tags
    1335926436
    1336026437  Tag ID   Tag Name                             Writable
    1336126438  ------   --------                             --------
    13362   'bxml'   BinaryXML?                           N
    13363   'dinf'   DataInformation?                     N
    13364   'free'   Free?                                N
    13365   'hdlr'   Handler                              QuickTime Handler
    13366   'iinf'   ItemInformation?                     N
    13367   'iloc'   ItemLocation?                        N
    13368   'ilst'   ItemList                             QuickTime ItemList
    13369   'ipmc'   IPMPControl?                         N
    13370   'ipro'   ItemProtection?                      N
    13371   'keys'   Keys                                 QuickTime Keys
    13372   'pitm'   PrimaryItemReference?                N
    13373   'xml '   XML                                  XMP
    13374 
    13375 =head3 QuickTime Handler Tags
    13376 
    13377    Index   Tag Name                             Writable
    13378    -----   --------                             --------
    13379       4    HandlerClass                         N
    13380       8    HandlerType                          N
    13381      12    HandlerVendorID                      N
    13382      24    HandlerDescription                   N
    13383 
    13384 =head3 QuickTime ItemList Tags
    13385 
    13386 As well as these tags, the 'mdta' handler uses numerical tag ID's which are
    13387 added dynamically to this table after processing the Meta Keys information.
    13388 
    13389   Tag ID       Tag Name                         Writable
    13390   ------       --------                         --------
    13391   '----'       iTunesInfo                       QuickTime iTunesInfo
    13392   'aART'       AlbumArtist                      N
    13393   'akID'       AppleStoreAccountType            N
    13394   'albm'       Album                            N
    13395   'apID'       AppleStoreAccount                N
    13396   'atID'       AlbumTitleID                     N
    13397   'auth'       Author                           N
    13398   'catg'       Category                         N
    13399   'cnID'       AppleStoreCatalogID              N
    13400   'covr'       CoverArt                         N
    13401   'cpil'       Compilation                      N
    13402   'cprt'       Copyright                        N
    13403   'desc'       Description                      N
    13404   'disk'       DiskNumber                       N
    13405   'dscp'       Description                      N
    13406   'egid'       EpisodeGlobalUniqueID            N
    13407   'geID'       GenreID                          N
    13408   'gnre'       Genre                            N
    13409   'grup'       Grouping                         N
    13410   'hdvd'       HDVideo                          N
    13411   'keyw'       Keyword                          N
    13412   'ldes'       LongDescription                  N
    13413   'pcst'       Podcast                          N
    13414   'perf'       Performer                        N
    13415   'pgap'       PlayGap                          N
    13416   'plID'       PlayListID                       N
    13417   'purd'       PurchaseDate                     N
    13418   'purl'       PodcastURL                       N
    13419   'rtng'       Rating                           N
    13420   'sfID'       AppleStoreCountry                N
    13421   'soaa'       SortAlbumArtist                  N
    13422   'soal'       SortAlbum                        N
    13423   'soar'       SortArtist                       N
    13424   'soco'       SortComposer                     N
    13425   'sonm'       SortName                         N
    13426   'sosn'       SortShow                         N
    13427   'stik'       MediaType                        N
    13428   'titl'       Title                            N
    13429   'tmpo'       BeatsPerMinute                   N
    13430   'trkn'       TrackNumber                      N
    13431   'tven'       TVEpisodeID                      N
    13432   'tves'       TVEpisode                        N
    13433   'tvnn'       TVNetworkName                    N
    13434   'tvsh'       TVShow                           N
    13435   'tvsn'       TVSeason                         N
    13436   'yrrc'       Year                             N
    13437   "\xa9ART"    Artist                           N
    13438   "\xa9alb"    Album                            N
    13439   "\xa9cmt"    Comment                          N
    13440   "\xa9com"    Composer                         N
    13441   "\xa9day"    Year                             N
    13442   "\xa9des"    Description                      N
    13443   "\xa9enc"    EncodedBy                        N
    13444   "\xa9gen"    Genre                            N
    13445   "\xa9grp"    Grouping                         N
    13446   "\xa9lyr"    Lyrics                           N
    13447   "\xa9nam"    Title                            N
    13448   "\xa9too"    Encoder                          N
    13449   "\xa9trk"    Track                            N
    13450   "\xa9wrt"    Composer                         N
    13451 
    13452 =head3 QuickTime iTunesInfo Tags
     26439  'dcom'   Compression                          no
     26440
     26441=head3 QuickTime Track Tags
    1345326442
    1345426443  Tag ID   Tag Name                             Writable
    1345526444  ------   --------                             --------
    13456   'data'   Data?                                N
    13457   'mean'   Mean?                                N
    13458   'name'   Name?                                N
    13459 
    13460 =head3 QuickTime Keys Tags
    13461 
    13462 This directory contains a list of key names which are used to decode
    13463 ItemList tags written by the "mdta" handler.  The prefix of
    13464 "com.apple.quicktime." has been removed from all TagID's below.
    13465 
    13466   Tag ID                       Tag Name         Writable
    13467   ------                       --------         --------
    13468   'album'                      Album            N
    13469   'artist'                     Artist           N
    13470   'artwork'                    Artwork          N
    13471   'author'                     Author           N
    13472   'camera.framereadouttimeinmicroseconds'
    13473                                FrameReadoutTime N
    13474   'camera.identifier'          CameraIdentifier N
    13475   'comment'                    Comment          N
    13476   'copyright'                  Copyright        N
    13477   'creationdate'               CreationDate     N
    13478   'description'                Description      N
    13479   'direction.facing'           CameraDirection  N
    13480   'direction.motion'           CameraMotion     N
    13481   'director'                   Director         N
    13482   'genre'                      Genre            N
    13483   'information'                Information      N
    13484   'keywords'                   Keywords         N
    13485   'location.ISO6709'           GPSCoordinates   N
    13486   'location.body'              LocationBody     N
    13487   'location.date'              LocationDate     N
    13488   'location.name'              LocationName     N
    13489   'location.note'              LocationNote     N
    13490   'location.role'              LocationRole     N
    13491   'make'                       Make             N
    13492   'model'                      Model            N
    13493   'player.movie.audio.balance' Balance          N
    13494   'player.movie.audio.bass'    Bass             N
    13495   'player.movie.audio.gain'    AudioGain        N
    13496   'player.movie.audio.mute'    Mute             N
    13497   'player.movie.audio.pitchshift' PitchShift    N
    13498   'player.movie.audio.treble'  Trebel           N
    13499   'player.movie.visual.brightness' Brightness   N
    13500   'player.movie.visual.color'  Color            N
    13501   'player.movie.visual.contrast' Contrast       N
    13502   'player.movie.visual.tint'   Tint             N
    13503   'player.version'             PlayerVersion    N
    13504   'publisher'                  Publisher        N
    13505   'software'                   Software         N
    13506   'version'                    Version          N
    13507   'year'                       Year             N
    13508 
    13509 =head3 QuickTime MovieHeader Tags
    13510 
    13511    Index   Tag Name                             Writable
    13512    -----   --------                             --------
    13513       0    MovieHeaderVersion                   N
    13514       1    CreateDate                           N
    13515       2    ModifyDate                           N
    13516       3    TimeScale                            N
    13517       4    Duration                             N
    13518       5    PreferredRate                        N
    13519       6    PreferredVolume                      N
    13520       9    MatrixStructure                      N
    13521      18    PreviewTime                          N
    13522      19    PreviewDuration                      N
    13523      20    PosterTime                           N
    13524      21    SelectionTime                        N
    13525      22    SelectionDuration                    N
    13526      23    CurrentTime                          N
    13527      24    NextTrackID                          N
    13528 
    13529 =head3 QuickTime Track Tags
    13530 
    13531   Tag ID   Tag Name                             Writable
    13532   ------   --------                             --------
    1353326445  'mdia'   Media                                QuickTime Media
     26446  'meco'   OtherMeta                            QuickTime OtherMeta
    1353426447  'meta'   Meta                                 QuickTime Meta
     26448  'tapt'   TrackAperture                        QuickTime TrackAperture
    1353526449  'tkhd'   TrackHeader                          QuickTime TrackHeader
    1353626450  'tref'   TrackRef                             QuickTime TrackRef
    1353726451  'udta'   UserData                             QuickTime UserData
    1353826452  'uuid'   UUID-USMT                            QuickTime UserMedia
    13539            UUID-Unknown?                        N
     26453           SphericalVideoXML                    XMP
     26454           UUID-Unknown?                        no
    1354026455
    1354126456=head3 QuickTime Media Tags
     
    1355126466=head3 QuickTime MediaHeader Tags
    1355226467
    13553    Index   Tag Name                             Writable
    13554    -----   --------                             --------
    13555       0    MediaHeaderVersion                   N
    13556       1    MediaCreateDate                      N
    13557       2    MediaModifyDate                      N
    13558       3    MediaTimeScale                       N
    13559       4    MediaDuration                        N
    13560       5    MediaLanguageCode                    N
     26468  Index4   Tag Name                             Writable
     26469  ------   --------                             --------
     26470      0    MediaHeaderVersion                   no
     26471      1    MediaCreateDate                      int32u
     26472      2    MediaModifyDate                      int32u
     26473      3    MediaTimeScale                       no
     26474      4    MediaDuration                        no
     26475      5    MediaLanguageCode                    no
    1356126476
    1356226477=head3 QuickTime MediaInfo Tags
     
    1357026485  'hdlr'   Handler                              QuickTime Handler
    1357126486  'hmhd'   HintHeader                           QuickTime HintHeader
    13572   'nmhd'   NullMediaHeader?                     N
     26487  'nmhd'   NullMediaHeader?                     no
    1357326488  'smhd'   AudioHeader                          QuickTime AudioHeader
    1357426489  'stbl'   SampleTable                          QuickTime SampleTable
    1357526490  'vmhd'   VideoHeader                          QuickTime VideoHeader
    1357626491
    13577 =head3 QuickTime DataInfo Tags
    13578 
    13579 MP4 data information box.
     26492=head3 QuickTime GenMediaHeader Tags
    1358026493
    1358126494  Tag ID   Tag Name                             Writable
    1358226495  ------   --------                             --------
    13583   'dref'   DataRef                              QuickTime DataRef
    13584 
    13585 =head3 QuickTime DataRef Tags
    13586 
    13587 MP4 data reference box.
     26496  'gmin'   GenMediaInfo                         QuickTime GenMediaInfo
     26497  'text'   Text?                                no
     26498  'tmcd'   TimeCode                             QuickTime TimeCode
     26499
     26500=head3 QuickTime GenMediaInfo Tags
     26501
     26502  Index1   Tag Name                             Writable
     26503  ------   --------                             --------
     26504      0    GenMediaVersion                      no
     26505      1    GenFlags                             no
     26506      4    GenGraphicsMode                      no
     26507      6    GenOpColor                           no
     26508     12    GenBalance                           no
     26509
     26510=head3 QuickTime TimeCode Tags
    1358826511
    1358926512  Tag ID   Tag Name                             Writable
    1359026513  ------   --------                             --------
    13591   'url '   URL                                  N
    13592   'urn '   URN                                  N
    13593 
    13594 =head3 QuickTime GenMediaHeader Tags
     26514  'tcmi'   TCMediaInfo                          QuickTime TCMediaInfo
     26515
     26516=head3 QuickTime TCMediaInfo Tags
     26517
     26518  Index1   Tag Name                             Writable
     26519  ------   --------                             --------
     26520      4    TextFont                             no
     26521      6    TextFace                             no
     26522      8    TextSize                             no
     26523     12    TextColor                            no
     26524     18    BackgroundColor                      no
     26525     24    FontName                             no
     26526
     26527=head3 QuickTime HintHeader Tags
     26528
     26529MP4 hint media header.
     26530
     26531  Index2   Tag Name                             Writable
     26532  ------   --------                             --------
     26533      2    MaxPDUSize                           no
     26534      3    AvgPDUSize                           no
     26535      4    MaxBitrate                           no
     26536      6    AvgBitrate                           no
     26537
     26538=head3 QuickTime AudioHeader Tags
     26539
     26540MP4 audio media header.
     26541
     26542  Index2   Tag Name                             Writable
     26543  ------   --------                             --------
     26544      2    Balance                              no
     26545
     26546=head3 QuickTime SampleTable Tags
     26547
     26548MP4 sample table box.
    1359526549
    1359626550  Tag ID   Tag Name                             Writable
    1359726551  ------   --------                             --------
    13598   'gmin'   GenMediaInfo                         QuickTime GenMediaInfo
    13599   'text'   Text?                                N
    13600 
    13601 =head3 QuickTime GenMediaInfo Tags
    13602 
    13603    Index   Tag Name                             Writable
    13604    -----   --------                             --------
    13605       0    GenMediaVersion                      N
    13606       1    GenFlags                             N
    13607       4    GenGraphicsMode                      N
    13608       6    GenOpColor                           N
    13609      12    GenBalance                           N
    13610 
    13611 =head3 QuickTime HintHeader Tags
    13612 
    13613 MP4 hint media header.
    13614 
    13615    Index   Tag Name                             Writable
    13616    -----   --------                             --------
    13617       2    MaxPDUSize                           N
    13618       3    AvgPDUSize                           N
    13619       4    MaxBitrate                           N
    13620       6    AvgBitrate                           N
    13621 
    13622 =head3 QuickTime AudioHeader Tags
    13623 
    13624 MP4 audio media header.
    13625 
    13626    Index   Tag Name                             Writable
    13627    -----   --------                             --------
    13628       2    Balance                              N
    13629 
    13630 =head3 QuickTime SampleTable Tags
    13631 
    13632 MP4 sample table box.
    13633 
    13634   Tag ID   Tag Name                             Writable
    13635   ------   --------                             --------
    13636   'co64'   ChunkOffset64?                       N
    13637   'cslg'   CompositionToDecodeTimelineMapping?  N
    13638   'ctts'   CompositionTimeToSample?             N
    13639   'padb'   SamplePaddingBits?                   N
    13640   'sbgp'   SampleToGroup?                       N
    13641   'sdtp'   IdependentAndDisposableSamples?      N
    13642   'sgpd'   SampleGroupDescription?              N
    13643   'stco'   ChunkOffset?                         N
    13644   'stdp'   SampleDegradationPriority?           N
    13645   'stsc'   SampleToChunk?                       N
     26552  'co64'   ChunkOffset64?                       no
     26553  'cslg'   CompositionToDecodeTimelineMapping?  no
     26554  'ctts'   CompositionTimeToSample?             no
     26555  'padb'   SamplePaddingBits?                   no
     26556  'sbgp'   SampleToGroup?                       no
     26557  'sdtp'   IdependentAndDisposableSamples?      no
     26558  'sgpd'   SampleGroupDescription?              no
     26559  'stco'   ChunkOffset?                         no
     26560  'stdp'   SampleDegradationPriority?           no
     26561  'stps'   PartialSyncSamples                   no
     26562  'stsc'   SampleToChunk?                       no
    1364626563  'stsd'   AudioSampleDesc                      QuickTime AudioSampleDesc
    1364726564           VideoSampleDesc                      QuickTime ImageDesc
    1364826565           HintSampleDesc                       QuickTime HintSampleDesc
     26566           MetaSampleDesc                       QuickTime MetaSampleDesc
    1364926567           OtherSampleDesc                      QuickTime OtherSampleDesc
    13650   'stsh'   ShadowSyncSampleTable?               N
    13651   'stss'   SyncSampleTable?                     N
    13652   'stsz'   SampleSizes?                         N
    13653   'stts'   VideoFrameRate                       N
    13654            TimeToSampleTable?                   N
    13655   'stz2'   CompactSampleSizes?                  N
    13656   'subs'   Sub-sampleInformation?               N
     26568  'stsh'   ShadowSyncSampleTable?               no
     26569  'stss'   SyncSampleTable?                     no
     26570  'stsz'   SampleSizes?                         no
     26571  'stts'   VideoFrameRate                       no
     26572           TimeToSampleTable?                   no
     26573  'stz2'   CompactSampleSizes?                  no
     26574  'subs'   Sub-sampleInformation?               no
    1365726575
    1365826576=head3 QuickTime AudioSampleDesc Tags
    1365926577
    13660 MP4 audio sample description.
    13661 
    13662    Index   Tag Name                             Writable
    13663    -----   --------                             --------
    13664       2    AudioFormat                          N
    13665      10    AudioVendorID                        N
    13666      12    AudioChannels                        N
    13667      13    AudioBitsPerSample                   N
    13668      16    AudioSampleRate                      N
    13669      28    AudioFormat                          N
     26578MP4 audio sample description.  This hybrid atom contains both data and child
     26579atoms.
     26580
     26581  ID/Index Tag Name                             Writable
     26582  -------- --------                             --------
     26583      4    AudioFormat                          no
     26584     20    AudioVendorID                        no
     26585     24    AudioChannels                        no
     26586     26    AudioBitsPerSample                   no
     26587     32    AudioSampleRate                      no
     26588  'chan'   AudioChannelLayout                   QuickTime ChannelLayout
     26589  'damr'   DecodeConfig                         QuickTime DecodeConfig
     26590  'pinf'   PurchaseInfo                         QuickTime ProtectionInfo
     26591  'sinf'   ProtectionInfo                       QuickTime ProtectionInfo
     26592  'wave'   Wave                                 QuickTime Wave
     26593
     26594=head3 QuickTime ChannelLayout Tags
     26595
     26596Audio channel layout.
     26597
     26598  Index1   Tag Name                             Writable
     26599  ------   --------                             --------
     26600      4    LayoutFlags                          no
     26601      6    AudioChannels                        no
     26602      8    AudioChannelTypes                    no
     26603     12    NumChannelDescriptions               no
     26604     16    Channel1Label                        no
     26605     20    Channel1Flags                        no
     26606     24    Channel1Coordinates                  no
     26607     36    Channel2Label                        no
     26608     40    Channel2Flags                        no
     26609     44    Channel2Coordinates                  no
     26610     56    Channel3Label                        no
     26611     60    Channel3Flags                        no
     26612     64    Channel3Coordinates                  no
     26613     76    Channel4Label                        no
     26614     80    Channel4Flags                        no
     26615     84    Channel4Coordinates                  no
     26616     96    Channel5Label                        no
     26617    100    Channel5Flags                        no
     26618    104    Channel5Coordinates                  no
     26619    116    Channel6Label                        no
     26620    120    Channel6Flags                        no
     26621    124    Channel6Coordinates                  no
     26622    136    Channel7Label                        no
     26623    140    Channel7Flags                        no
     26624    144    Channel7Coordinates                  no
     26625    156    Channel8Label                        no
     26626    160    Channel8Flags                        no
     26627    164    Channel8Coordinates                  no
     26628
     26629=head3 QuickTime DecodeConfig Tags
     26630
     26631  Index1   Tag Name                             Writable
     26632  ------   --------                             --------
     26633      0    EncoderVendor                        no
     26634      4    EncoderVersion                       no
     26635
     26636=head3 QuickTime ProtectionInfo Tags
     26637
     26638Child atoms found in "sinf" and/or "pinf" atoms.
     26639
     26640  Tag ID   Tag Name                             Writable
     26641  ------   --------                             --------
     26642  'enda'   Endianness                           no
     26643  'frma'   OriginalFormat                       no
     26644  'schi'   SchemeInfo                           QuickTime SchemeInfo
     26645  'schm'   SchemeType                           QuickTime SchemeType
     26646
     26647=head3 QuickTime SchemeInfo Tags
     26648
     26649  Tag ID   Tag Name                             Writable
     26650  ------   --------                             --------
     26651  'cert'   Certificate                          no
     26652  'iviv'   InitializationVector                 no
     26653  'key '   KeyID                                no
     26654  'name'   UserName                             no
     26655  'righ'   Rights                               QuickTime Rights
     26656  'user'   UserID                               no
     26657
     26658=head3 QuickTime Rights Tags
     26659
     26660  Tag ID   Tag Name                             Writable
     26661  ------   --------                             --------
     26662  'aver'   VersionRestrictions                  no
     26663  'medi'   MediaFlags                           no
     26664  'mode'   ModeFlags                            no
     26665  'plat'   Platform                             no
     26666  'song'   ItemID                               no
     26667  'tool'   ItemTool                             no
     26668  'tran'   TransactionID                        no
     26669  'veID'   ItemVendorID                         no
     26670
     26671=head3 QuickTime SchemeType Tags
     26672
     26673  Index1   Tag Name                             Writable
     26674  ------   --------                             --------
     26675      4    SchemeType                           no
     26676      8    SchemeVersion                        no
     26677     10    SchemeURL                            no
     26678
     26679=head3 QuickTime Wave Tags
     26680
     26681  Tag ID   Tag Name                             Writable
     26682  ------   --------                             --------
     26683  'enda'   Endianness                           no
     26684  'frma'   PurchaseFileFormat                   no
    1367026685
    1367126686=head3 QuickTime ImageDesc Tags
    1367226687
    13673    Index   Tag Name                             Writable
    13674    -----   --------                             --------
    13675       2    CompressorID                         N
    13676      10    VendorID                             N
    13677      16    SourceImageWidth                     N
    13678      17    SourceImageHeight                    N
    13679      18    XResolution                          N
    13680      20    YResolution                          N
    13681      25    CompressorName                       N
    13682      41    BitDepth                             N
     26688  ID/Index Tag Name                             Writable
     26689  -------- --------                             --------
     26690      2    CompressorID                         no
     26691     10    VendorID                             no
     26692     16    SourceImageWidth                     no
     26693     17    SourceImageHeight                    no
     26694     18    XResolution                          no
     26695     20    YResolution                          no
     26696     25    CompressorName                       no
     26697     41    BitDepth                             no
     26698  'CDI1'   CDI1                                 Canon CDI1
     26699  'CMP1'   CMP1                                 Canon CMP1
     26700  'JPEG'   JPEGInfo?                            no
     26701  'avcC'   AVCConfiguration?                    no
     26702  'btrt'   BitrateInfo                          QuickTime Bitrate
     26703  'clap'   CleanAperture                        QuickTime CleanAperture
     26704  'colr'   ColorRepresentation                  no
     26705  'fiel'   VideoFieldOrder                      no
     26706  'gama'   Gamma                                no
     26707  'pasp'   PixelAspectRatio                     no
     26708  'st3d'   Stereoscopic3D                       no
     26709  'sv3d'   SphericalVideo                       QuickTime sv3d
     26710
     26711=head3 QuickTime Bitrate Tags
     26712
     26713  Index4   Tag Name                             Writable
     26714  ------   --------                             --------
     26715      0    BufferSize                           no
     26716      1    MaxBitrate                           no
     26717      2    AverageBitrate                       no
     26718
     26719=head3 QuickTime CleanAperture Tags
     26720
     26721  Index8   Tag Name                             Writable
     26722  ------   --------                             --------
     26723      0    CleanApertureWidth                   no
     26724      1    CleanApertureHeight                  no
     26725      2    CleanApertureOffsetX                 no
     26726      3    CleanApertureOffsetY                 no
     26727
     26728=head3 QuickTime sv3d Tags
     26729
     26730Tags defined by the Spherical Video V2 specification.  See
     26731L<https://github.com/google/spatial-media/blob/master/docs/spherical-video-v2-rfc.md>
     26732for the specification.
     26733
     26734  Tag ID   Tag Name                             Writable
     26735  ------   --------                             --------
     26736  'proj'   Projection                           QuickTime proj
     26737  'svhd'   MetadataSource                       no
     26738
     26739=head3 QuickTime proj Tags
     26740
     26741  Tag ID   Tag Name                             Writable
     26742  ------   --------                             --------
     26743  'cbmp'   CubemapProj                          QuickTime cbmp
     26744  'equi'   EquirectangularProj                  QuickTime equi
     26745  'prhd'   ProjectionHeader                     QuickTime prhd
     26746
     26747=head3 QuickTime cbmp Tags
     26748
     26749  Index4   Tag Name                             Writable
     26750  ------   --------                             --------
     26751      1    Layout                               no
     26752      2    Padding                              no
     26753
     26754=head3 QuickTime equi Tags
     26755
     26756  Index4   Tag Name                             Writable
     26757  ------   --------                             --------
     26758      1    ProjectionBoundsTop                  no
     26759      2    ProjectionBoundsBottom               no
     26760      3    ProjectionBoundsLeft                 no
     26761      4    ProjectionBoundsRight                no
     26762
     26763=head3 QuickTime prhd Tags
     26764
     26765  Index4   Tag Name                             Writable
     26766  ------   --------                             --------
     26767      1    PoseYawDegrees                       no
     26768      2    PosePitchDegrees                     no
     26769      3    PoseRollDegrees                      no
    1368326770
    1368426771=head3 QuickTime HintSampleDesc Tags
     
    1368626773MP4 hint sample description.
    1368726774
    13688    Index   Tag Name                             Writable
    13689    -----   --------                             --------
    13690       2    HintFormat                           N
     26775  ID/Index Tag Name                             Writable
     26776  -------- --------                             --------
     26777      4    HintFormat                           no
     26778     16    HintTrackVersion                     no
     26779     20    MaxPacketSize                        no
     26780  'snro'   SequenceNumberRandomOffset           no
     26781  'tims'   RTPTimeScale                         no
     26782  'tsro'   TimestampRandomOffset                no
     26783
     26784=head3 QuickTime MetaSampleDesc Tags
     26785
     26786MP4 metadata sample description.
     26787
     26788  Tag ID   Tag Name                             Writable
     26789  ------   --------                             --------
     26790  0x0004   MetaFormat                           no
     26791  'btrt'   BitrateInfo                          QuickTime Bitrate
     26792  'keys'   Keys                                 QuickTime Keys
    1369126793
    1369226794=head3 QuickTime OtherSampleDesc Tags
    1369326795
    13694    Index   Tag Name                             Writable
    13695    -----   --------                             --------
    13696       2    OtherFormat                          N
     26796  Tag ID   Tag Name                             Writable
     26797  ------   --------                             --------
     26798  0x0004   OtherFormat                          no
     26799  'ftab'   FontTable                            no
     26800  'name'   OtherName                            no
    1369726801
    1369826802=head3 QuickTime VideoHeader Tags
     
    1370026804MP4 video media header.
    1370126805
    13702    Index   Tag Name                             Writable
    13703    -----   --------                             --------
    13704       2    GraphicsMode                         N
    13705       3    OpColor                              N
     26806  Index2   Tag Name                             Writable
     26807  ------   --------                             --------
     26808      2    GraphicsMode                         no
     26809      3    OpColor                              no
     26810
     26811=head3 QuickTime TrackAperture Tags
     26812
     26813  Tag ID   Tag Name                             Writable
     26814  ------   --------                             --------
     26815  'clef'   CleanApertureDimensions              no
     26816  'enof'   EncodedPixelsDimensions              no
     26817  'prof'   ProductionApertureDimensions         no
    1370626818
    1370726819=head3 QuickTime TrackHeader Tags
    1370826820
    13709    Index   Tag Name                             Writable
    13710    -----   --------                             --------
    13711       0    TrackHeaderVersion                   N
    13712       1    TrackCreateDate                      N
    13713       2    TrackModifyDate                      N
    13714       3    TrackID                              N
    13715       5    TrackDuration                        N
    13716       8    TrackLayer                           N
    13717       9    TrackVolume                          N
    13718      10    MatrixStructure                      N
    13719      19    ImageWidth                           N
    13720      20    ImageHeight                          N
     26821  Index4   Tag Name                             Writable
     26822  ------   --------                             --------
     26823      0    TrackHeaderVersion                   no
     26824      1    TrackCreateDate                      int32u
     26825      2    TrackModifyDate                      int32u
     26826      3    TrackID                              no
     26827      5    TrackDuration                        no
     26828      8    TrackLayer                           no
     26829      9    TrackVolume                          no
     26830     10    MatrixStructure                      fixed32s[9]!
     26831     19    ImageWidth                           no
     26832     20    ImageHeight                          no
    1372126833
    1372226834=head3 QuickTime TrackRef Tags
     
    1372426836  Tag ID   Tag Name                             Writable
    1372526837  ------   --------                             --------
    13726   'chap'   ChapterList                          N
     26838  'cdsc'   ContentDescribes                     no
     26839  'chap'   ChapterListTrackID                   no
     26840  'mpod'   ElementaryStreamTrack                no
     26841  'tmcd'   TimeCode                             no
    1372726842
    1372826843=head3 QuickTime UserData Tags
    1372926844
    1373026845Tag ID's beginning with the copyright symbol (hex 0xa9) are multi-language
    13731 text.  Alternate language tags are accessed by adding a dash followed by the
    13732 language/country code to the tag name.  ExifTool will extract any
    13733 multi-language user data tags found, even if they don't exist in this table.
     26846text.  Alternate language tags are accessed by adding a dash followed by a
     268473-character ISO 639-2 language code to the tag name.  ExifTool will extract
     26848any multi-language user data tags found, even if they aren't in this table.
     26849Note when creating new tags,
     26850L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> tags are
     26851preferred over these, so to create the tag when a same-named ItemList tag
     26852exists, either "UserData" must be specified (eg. C<-UserData:Artist=Monet>
     26853on the command line), or the PREFERRED level must be changed via
     26854the config file.
    1373426855
    1373526856  Tag ID       Tag Name                         Writable
    1373626857  ------       --------                         --------
    13737   'AllF'       PlayAllFrames                    N
    13738   'CNCV'       CompressorVersion                N
    13739   'CNFV'       FirmwareVersion                  N
    13740   'CNMN'       Model                            N
     26858  '@day'       ContentCreateDate                string/
     26859  '@mak'       Make                             string/
     26860  '@mod'       Model                            string/
     26861  '@sec'       SamsungSec                       Samsung sec
     26862  '@swr'       SoftwareVersion                  string/
     26863  '@xyz'       GPSCoordinates                   string/
     26864  'AllF'       PlayAllFrames                    int8u
     26865  'CAME'       SerialNumberHash                 string
     26866  'CNCV'       CompressorVersion                string
     26867  'CNFV'       FirmwareVersion                  string
     26868  'CNMN'       Model                            string/
     26869  'CNOP'       CanonCNOP                        Canon CNOP
    1374126870  'CNTH'       CanonCNTH                        Canon CNTH
    13742   'DcMD'       DcMD                             QuickTime DcMD
     26871  'DcMD'       KodakDcMD                        Kodak DcMD
    1374326872  'FFMV'       FujiFilmFFMV                     FujiFilm FFMV
     26873  'FIRM'       FirmwareVersion                  string/
     26874  "FOV\0"      FieldOfView                      string
     26875  'GPMF'       GoProGPMF                        GoPro GPMF
     26876  'GoPr'       GoProType                        string
    1374426877  'INFO'       SamsungINFO                      Samsung INFO
    13745   'LOOP'       LoopStyle                        N
     26878  'LEIC'       LeicaLEIC                        Panasonic PANA
     26879  'LENS'       LensSerialNumber                 string
     26880  'LOOP'       LoopStyle                        int32u
     26881  'Lvlm'       LevelMeter?                      rational64s
    1374626882  'MMA0'       MinoltaMMA0                      Minolta MMA
    1374726883  'MMA1'       MinoltaMMA1                      Minolta MMA
    1374826884  'MVTG'       FujiFilmMVTG                     EXIF
    1374926885  'NCDT'       NikonNCDT                        Nikon NCDT
     26886  'PANA'       PanasonicPANA                    Panasonic PANA
     26887  'PENT'       PentaxPENT                       Pentax PENT
     26888  'PXMN'       MakerNotePentax5b                Pentax
     26889               MakerNotePentax5c                Pentax
     26890               MakerNotePentaxUnknown           string
     26891  'PXTH'       PentaxPreview                    Pentax PXTH
    1375026892  'QVMI'       CasioQVMI                        EXIF
    13751   'SDLN'       PlayMode                         N
    13752   'SelO'       PlaySelection                    N
    13753   'TAGS'       KodakTags                        Kodak MOV
     26893  'RMKN'       RicohRMKN                        EXIF
     26894  'RTHU'       PreviewImage                     no
     26895  'SDLN'       PlayMode                         string
     26896  'SNum'       SerialNumber                     string/
     26897  'SelO'       PlaySelection                    int8u
     26898  'TAGS'       FujiFilmTags                     FujiFilm MOV
     26899               KodakTags                        Kodak MOV
    1375426900               KonicaMinoltaTags                Minolta MOV1
    1375526901               MinoltaTags                      Minolta MOV2
     
    1375826904               OlympusTags2                     Olympus MOV2
    1375926905               OlympusTags3                     Olympus MP4
     26906               OlympusTags4                     Olympus MOV3
    1376026907               PentaxTags                       Pentax MOV
    1376126908               SamsungTags                      Samsung MP4
    1376226909               SanyoMOV                         Sanyo MOV
    1376326910               SanyoMP4                         Sanyo MP4
    13764                UnknownTags?                     N
    13765   'WLOC'       WindowLocation                   N
     26911               UnknownTags?                     string
     26912  'TTMD'       TomTomMetaData                   QuickTime TomTom
     26913  'WLOC'       WindowLocation                   int16u
    1376626914  'XMP_'       XMP                              XMP
     26915  'Xtra'       MicrosoftXtra                    Microsoft Xtra
     26916  '_cx_'       CX?                              rational64s
     26917  '_cy_'       CY?                              rational64s
     26918  '_yaw'       Yaw                              rational64s/
     26919  'albm'       Album                            string/
     26920  'albr'       AlbumArtist                      string
     26921  'angl'       CameraAngle                      string
     26922  'apmd'       ApertureMode                     undef
     26923  'auth'       Author                           string/
     26924  'ccid'       ContentID                        string
     26925  'cdis'       ContentDistributorID             string
     26926  'chpl'       ChapterList                      no
     26927  'clfn'       ClipFileName                     string
     26928  'clid'       ClipID                           string
     26929  'clsf'       Classification                   no
     26930  'cmid'       CameraID                         string
     26931  'cmnm'       Model                            string/
     26932  'coll'       CollectionName                   string/
     26933  'cprt'       Copyright                        string/
     26934  'cver'       CodeVersion                      string
     26935  'cvru'       CoverURI                         string
     26936  'date'       DateTimeOriginal                 string
     26937  'dscp'       Description                      string/
     26938  'gnre'       Genre                            string/
    1376726939  'hinf'       HintTrackInfo                    QuickTime HintTrackInfo
     26940  'hinv'       HintVersion                      string
    1376826941  'hnti'       HintInfo                         QuickTime HintInfo
     26942  'htcb'       HTCBinary                        QuickTime HTCBinary
     26943  'icnu'       IconURI                          string
     26944  'infu'       InfoURL                          string
     26945  'kgtt'       TrackType                        string
     26946  'kywd'       Keywords                         no
     26947  'loci'       LocationInformation              no
     26948  'lrcu'       LyricsURI                        string
     26949  'lvlm'       LevelMeter?                      rational64s
     26950  'manu'       Make                             no
    1376926951  'meta'       Meta                             QuickTime Meta
    13770   'name'       Name                             N
     26952  'modl'       Model                            no
     26953  'name'       Name                             string
     26954  'perf'       Performer                        string/
     26955  'pmcc'       GarminSettings                   string
     26956  'pose'       pose                             Kodak pose
     26957  'ptch'       Pitch                            rational64s/
    1377126958  'ptv '       PrintToVideo                     QuickTime Video
    13772   'vndr'       Vendor                           N
    13773   "\xa9ART"    Artist                           N
    13774   "\xa9alb"    Album                            N
    13775   "\xa9arg"    Arranger                         N
    13776   "\xa9ark"    ArrangerKeywords                 N
    13777   "\xa9cmt"    Comment                          N
    13778   "\xa9cok"    ComposerKeywords                 N
    13779   "\xa9com"    Composer                         N
    13780   "\xa9cpy"    Copyright                        N
    13781   "\xa9day"    CreateDate                       N
    13782   "\xa9dir"    Director                         N
    13783   "\xa9ed1"    Edit1                            N
    13784   "\xa9ed2"    Edit2                            N
    13785   "\xa9ed3"    Edit3                            N
    13786   "\xa9ed4"    Edit4                            N
    13787   "\xa9ed5"    Edit5                            N
    13788   "\xa9ed6"    Edit6                            N
    13789   "\xa9ed7"    Edit7                            N
    13790   "\xa9ed8"    Edit8                            N
    13791   "\xa9ed9"    Edit9                            N
    13792   "\xa9fmt"    Format                           N
    13793   "\xa9gen"    Genre                            N
    13794   "\xa9grp"    Grouping                         N
    13795   "\xa9inf"    Information                      N
    13796   "\xa9isr"    ISRCCode                         N
    13797   "\xa9lab"    RecordLabelName                  N
    13798   "\xa9lal"    RecordLabelURL                   N
    13799   "\xa9lyr"    Lyrics                           N
    13800   "\xa9mak"    Make                             N
    13801   "\xa9mal"    MakerURL                         N
    13802   "\xa9mod"    Model                            N
    13803   "\xa9nam"    Title                            N
    13804   "\xa9pdk"    ProducerKeywords                 N
    13805   "\xa9phg"    RecordingCopyright               N
    13806   "\xa9prd"    Producer                         N
    13807   "\xa9prf"    Performers                       N
    13808   "\xa9prk"    PerformerKeywords                N
    13809   "\xa9prl"    PerformerURL                     N
    13810   "\xa9req"    Requirements                     N
    13811   "\xa9snk"    SubtitleKeywords                 N
    13812   "\xa9snm"    Subtitle                         N
    13813   "\xa9src"    SourceCredits                    N
    13814   "\xa9swf"    SongWriter                       N
    13815   "\xa9swk"    SongWriterKeywords               N
    13816   "\xa9swr"    SoftwareVersion                  N
    13817   "\xa9too"    Encoder                          N
    13818   "\xa9trk"    Track                            N
    13819   "\xa9wrt"    Composer                         N
    13820   "\xa9xyz"    GPSCoordinates                   N
    13821 
    13822 =head3 QuickTime DcMD Tags
    13823 
    13824 Metadata directory found in MOV videos from some Kodak cameras.
     26959  'rads'       Rads?                            rational64s
     26960  'reel'       ReelName                         string
     26961  'roll'       Roll                             rational64s/
     26962  'rtng'       Rating                           no
     26963  'scen'       Scene                            string
     26964  'scrn'       OlympusPreview                   Olympus scrn
     26965  'shot'       ShotName                         string
     26966  'slno'       SerialNumber                     string
     26967  'smta'       SamsungSmta                      Samsung smta
     26968  'tags'       Audible_tags                     Audible tags
     26969  'thmb'       MakerNotePentax5a                Pentax
     26970               OlympusThumbnail                 Olympus thmb
     26971               ThumbnailImage                   string
     26972               ThumbnailPNG                     string
     26973               UnknownThumbnail                 string
     26974  'titl'       Title                            string/
     26975  'urat'       UserRating                       no
     26976  'uuid'       GarminSoftware                   string
     26977               UUID-Unknown?                    no
     26978  'vndr'       Vendor                           string
     26979  'vrot'       AccelerometerData                no
     26980  'yrrc'       Year                             no
     26981  "\xa9ART"    Artist                           string
     26982  "\xa9TIM"    StartTimecode                    string
     26983  "\xa9TSC"    StartTimeScale                   string
     26984  "\xa9TSZ"    StartTimeSampleSize              string
     26985  "\xa9alb"    Album                            string
     26986  "\xa9arg"    Arranger                         string
     26987  "\xa9ark"    ArrangerKeywords                 string
     26988  "\xa9cmt"    Comment                          string
     26989  "\xa9cok"    ComposerKeywords                 string
     26990  "\xa9com"    Composer                         string
     26991  "\xa9cpy"    Copyright                        string
     26992  "\xa9day"    ContentCreateDate                string
     26993  "\xa9dir"    Director                         string
     26994  "\xa9ed1"    Edit1                            string
     26995  "\xa9ed2"    Edit2                            string
     26996  "\xa9ed3"    Edit3                            string
     26997  "\xa9ed4"    Edit4                            string
     26998  "\xa9ed5"    Edit5                            string
     26999  "\xa9ed6"    Edit6                            string
     27000  "\xa9ed7"    Edit7                            string
     27001  "\xa9ed8"    Edit8                            string
     27002  "\xa9ed9"    Edit9                            string
     27003  "\xa9enc"    EncoderID                        string
     27004  "\xa9fmt"    Format                           string
     27005  "\xa9fpt"    Pitch                            string
     27006  "\xa9frl"    Roll                             string
     27007  "\xa9fyw"    Yaw                              string
     27008  "\xa9gen"    Genre                            string
     27009  "\xa9gpt"    CameraPitch                      string
     27010  "\xa9grl"    CameraRoll                       string
     27011  "\xa9grp"    Grouping                         string
     27012  "\xa9gyw"    CameraYaw                        string
     27013  "\xa9inf"    Information                      string
     27014  "\xa9isr"    ISRCCode                         string
     27015  "\xa9lab"    RecordLabelName                  string
     27016  "\xa9lal"    RecordLabelURL                   string
     27017  "\xa9lyr"    Lyrics                           string
     27018  "\xa9mak"    Make                             string
     27019  "\xa9mal"    MakerURL                         string
     27020  "\xa9mdl"    Model                            string/
     27021  "\xa9mod"    Model                            string
     27022  "\xa9nam"    Title                            string
     27023  "\xa9pdk"    ProducerKeywords                 string
     27024  "\xa9phg"    RecordingCopyright               string
     27025  "\xa9prd"    Producer                         string
     27026  "\xa9prf"    Performers                       string
     27027  "\xa9prk"    PerformerKeywords                string
     27028  "\xa9prl"    PerformerURL                     string
     27029  "\xa9req"    Requirements                     string
     27030  "\xa9snk"    SubtitleKeywords                 string
     27031  "\xa9snm"    Subtitle                         string
     27032  "\xa9src"    SourceCredits                    string
     27033  "\xa9swf"    SongWriter                       string
     27034  "\xa9swk"    SongWriterKeywords               string
     27035  "\xa9swr"    SoftwareVersion                  string
     27036  "\xa9too"    Encoder                          string
     27037  "\xa9trk"    Track                            string
     27038  "\xa9wrt"    Composer                         string/
     27039  "\xa9xsp"    SpeedX                           string
     27040  "\xa9xyz"    GPSCoordinates                   string
     27041  "\xa9ysp"    SpeedY                           string
     27042  "\xa9zsp"    SpeedZ                           string
     27043
     27044=head3 QuickTime TomTom Tags
     27045
     27046Tags found in TomTom Bandit Action Cam MP4 videos.
    1382527047
    1382627048  Tag ID   Tag Name                             Writable
    1382727049  ------   --------                             --------
    13828   'Cmbo'   CameraByteOrder                      N
    13829   'DcME'   DcME                                 QuickTime DcME
    13830 
    13831 =head3 QuickTime DcME Tags
     27050  'TTAD'   TomTomAD                             QuickTime Stream
     27051  'TTHL'   TomTomHL?                            no
     27052  'TTID'   TomTomID                             no
     27053  'TTVD'   TomTomVD                             no
     27054  'TTVI'   TomTomVI?                            no
     27055
     27056=head3 QuickTime HintTrackInfo Tags
    1383227057
    1383327058  Tag ID   Tag Name                             Writable
    1383427059  ------   --------                             --------
     27060  'dimm'   ImmediateDataBytes                   no
     27061  'dmax'   LargestPacketDuration                no
     27062  'dmed'   MediaTrackBytes                      no
     27063  'drep'   RepeatedDataBytes                    no
     27064  'maxr'   MaxDataRate                          no
     27065  'npck'   NumPackets                           no
     27066  'nump'   NumPackets                           no
     27067  'payt'   PayloadType                          no
     27068  'pmax'   LargestPacketSize                    no
     27069  'tmax'   MaxTransmissionTime                  no
     27070  'tmin'   MinTransmissionTime                  no
     27071  'totl'   TotalBytes                           no
     27072  'tpaY'   TotalBytesNoRTPHeaders               no
     27073  'tpay'   TotalBytesNoRTPHeaders               no
     27074  'tpyl'   TotalBytesNoRTPHeaders               no
     27075  'trpY'   TotalBytes                           no
     27076  'trpy'   TotalBytes                           no
     27077
     27078=head3 QuickTime HintInfo Tags
     27079
     27080  Tag ID   Tag Name                             Writable
     27081  ------   --------                             --------
     27082  'rtp '   RealtimeStreamingProtocol            no
     27083  'sdp '   StreamingDataProtocol                no
     27084
     27085=head3 QuickTime HTCBinary Tags
     27086
     27087  Index4   Tag Name                             Writable
     27088  ------   --------                             --------
    1383527089  [no tags known]
    1383627090
    13837 =head3 QuickTime HintTrackInfo Tags
     27091=head3 QuickTime Video Tags
     27092
     27093  Index1   Tag Name                             Writable
     27094  ------   --------                             --------
     27095      0    DisplaySize                          no
     27096      6    SlideShow                            no
     27097
     27098=head3 QuickTime UserMedia Tags
    1383827099
    1383927100  Tag ID   Tag Name                             Writable
    1384027101  ------   --------                             --------
    13841   'dimm'   ImmediateDataBytes                   N
    13842   'dmax'   LargestPacketDuration                N
    13843   'dmed'   MediaTrackBytes                      N
    13844   'drep'   RepeatedDataBytes                    N
    13845   'maxr'   MaxDataRate                          N
    13846   'npck'   NumPackets                           N
    13847   'nump'   NumPackets                           N
    13848   'payt'   PayloadType                          N
    13849   'pmax'   LargestPacketSize                    N
    13850   'tmax'   MaxTransmissionTime                  N
    13851   'tmin'   MinTransmissionTime                  N
    13852   'totl'   TotalBytes                           N
    13853   'tpaY'   TotalBytesNoRTPHeaders               N
    13854   'tpay'   TotalBytesNoRTPHeaders               N
    13855   'tpyl'   TotalBytesNoRTPHeaders               N
    13856   'trpY'   TotalBytes                           N
    13857   'trpy'   TotalBytes                           N
    13858 
    13859 =head3 QuickTime HintInfo Tags
     27102  'MTDT'   MetaData                             QuickTime MetaData
     27103
     27104=head3 QuickTime MetaData Tags
    1386027105
    1386127106  Tag ID   Tag Name                             Writable
    1386227107  ------   --------                             --------
    13863   'rtp '   RealtimeStreamingProtocol            N
    13864   'sdp '   StreamingDataProtocol                N
    13865 
    13866 =head3 QuickTime Video Tags
    13867 
    13868    Index   Tag Name                             Writable
    13869    -----   --------                             --------
    13870       0    DisplaySize                          N
    13871       6    SlideShow                            N
    13872 
    13873 =head3 QuickTime UserMedia Tags
    13874 
    13875   Tag ID   Tag Name                             Writable
    13876   ------   --------                             --------
    13877   'MTDT'   MetaData                             QuickTime MetaData
    13878 
    13879 =head3 QuickTime MetaData Tags
    13880 
    13881   Tag ID   Tag Name                             Writable
    13882   ------   --------                             --------
    13883   0x0001   Title                                N
    13884   0x0003   ProductionDate                       N
    13885   0x0004   Software                             N
    13886   0x0005   Product                              N
    13887   0x000a   TrackProperty                        N
    13888   0x000b   TimeZone                             N
    13889   0x000c   ModifyDate                           N
     27108  0x0001   Title                                no
     27109  0x0003   ProductionDate                       no
     27110  0x0004   Software                             no
     27111  0x0005   Product                              no
     27112  0x000a   TrackProperty                        no
     27113  0x000b   TimeZone                             no
     27114  0x000c   ModifyDate                           no
     27115
     27116=head3 QuickTime MovieHeader Tags
     27117
     27118  Index4   Tag Name                             Writable
     27119  ------   --------                             --------
     27120      0    MovieHeaderVersion                   no
     27121      1    CreateDate                           int32u
     27122      2    ModifyDate                           int32u
     27123      3    TimeScale                            no
     27124      4    Duration                             no
     27125      5    PreferredRate                        no
     27126      6    PreferredVolume                      no
     27127      9    MatrixStructure                      no
     27128     18    PreviewTime                          no
     27129     19    PreviewDuration                      no
     27130     20    PosterTime                           no
     27131     21    SelectionTime                        no
     27132     22    SelectionDuration                    no
     27133     23    CurrentTime                          no
     27134     24    NextTrackID                          no
    1389027135
    1389127136=head3 QuickTime Preview Tags
    1389227137
    13893    Index   Tag Name                             Writable
    13894    -----   --------                             --------
    13895       0    PreviewDate                          N
    13896       2    PreviewVersion                       N
    13897       3    PreviewAtomType                      N
    13898       5    PreviewAtomIndex                     N
     27138  Index2   Tag Name                             Writable
     27139  ------   --------                             --------
     27140      0    PreviewDate                          int32u
     27141      2    PreviewVersion                       no
     27142      3    PreviewAtomType                      no
     27143      5    PreviewAtomIndex                     no
    1389927144
    1390027145=head3 QuickTime Profile Tags
     
    1390427149  'APRF'   AudioProfile                         QuickTime AudioProf
    1390527150  'FPRF'   FileGlobalProfile                    QuickTime FileProf
     27151  'OLYM'   OlympusOLYM                          Olympus OLYM
    1390627152  'VPRF'   VideoProfile                         QuickTime VideoProf
    1390727153
    1390827154=head3 QuickTime AudioProf Tags
    1390927155
    13910    Index   Tag Name                             Writable
    13911    -----   --------                             --------
    13912       0    AudioProfileVersion?                 N
    13913       1    AudioTrackID                         N
    13914       2    AudioCodec                           N
    13915       3    AudioCodecInfo?                      N
    13916       4    AudioAttributes                      N
    13917       5    AudioAvgBitrate                      N
    13918       6    AudioMaxBitrate                      N
    13919       7    AudioSampleRate                      N
    13920       8    AudioChannels                        N
     27156  Index4   Tag Name                             Writable
     27157  ------   --------                             --------
     27158      0    AudioProfileVersion?                 no
     27159      1    AudioTrackID                         no
     27160      2    AudioCodec                           no
     27161      3    AudioCodecInfo?                      no
     27162      4    AudioAttributes                      no
     27163      5    AudioAvgBitrate                      no
     27164      6    AudioMaxBitrate                      no
     27165      7    AudioSampleRate                      no
     27166      8    AudioChannels                        no
    1392127167
    1392227168=head3 QuickTime FileProf Tags
    1392327169
    13924    Index   Tag Name                             Writable
    13925    -----   --------                             --------
    13926       0    FileProfileVersion?                  N
    13927       1    FileFunctionFlags                    N
     27170  Index4   Tag Name                             Writable
     27171  ------   --------                             --------
     27172      0    FileProfileVersion?                  no
     27173      1    FileFunctionFlags                    no
    1392827174
    1392927175=head3 QuickTime VideoProf Tags
    1393027176
    13931    Index   Tag Name                             Writable
    13932    -----   --------                             --------
    13933       0    VideoProfileVersion?                 N
    13934       1    VideoTrackID                         N
    13935       2    VideoCodec                           N
    13936       3    VideoCodecInfo?                      N
    13937       4    VideoAttributes                      N
    13938       5    VideoAvgBitrate                      N
    13939       6    VideoMaxBitrate                      N
    13940       7    VideoAvgFrameRate                    N
    13941       8    VideoMaxFrameRate                    N
    13942       9    VideoSize                            N
    13943      10    PixelAspectRatio                     N
     27177  Index4   Tag Name                             Writable
     27178  ------   --------                             --------
     27179      0    VideoProfileVersion?                 no
     27180      1    VideoTrackID                         no
     27181      2    VideoCodec                           no
     27182      3    VideoCodecInfo?                      no
     27183      4    VideoAttributes                      no
     27184      5    VideoAvgBitrate                      no
     27185      6    VideoMaxBitrate                      no
     27186      7    VideoAvgFrameRate                    no
     27187      8    VideoMaxFrameRate                    no
     27188      9    VideoSize                            no
     27189     10    PixelAspectRatio                     no
    1394427190
    1394527191=head3 QuickTime Flip Tags
     
    1394727193Found in MP4 files from Flip Video cameras.
    1394827194
    13949    Index   Tag Name                             Writable
    13950    -----   --------                             --------
    13951       1    PreviewImageWidth                    N
    13952       2    PreviewImageHeight                   N
    13953      13    PreviewImageLength                   N
    13954      14    SerialNumber                         N
    13955      28    PreviewImage                         N
     27195  Index4   Tag Name                             Writable
     27196  ------   --------                             --------
     27197      1    PreviewImageWidth                    no
     27198      2    PreviewImageHeight                   no
     27199     13    PreviewImageLength                   no
     27200     14    SerialNumber                         no
     27201     28    PreviewImage                         no
     27202
     27203=head3 QuickTime Tags360Fly Tags
     27204
     27205Timed metadata found in MP4 videos from the 360Fly.
     27206
     27207  Tag ID   Tag Name                             Writable
     27208  ------   --------                             --------
     27209  0x0001   Accel360Fly                          QuickTime Accel360Fly
     27210  0x0002   Gyro360Fly                           QuickTime Gyro360Fly
     27211  0x0003   Mag360Fly                            QuickTime Mag360Fly
     27212  0x0005   GPS360Fly                            QuickTime GPS360Fly
     27213  0x0006   Rot360Fly                            QuickTime Rot360Fly
     27214  0x00fa   Fusion360Fly                         QuickTime Fusion360Fly
     27215
     27216=head3 QuickTime Accel360Fly Tags
     27217
     27218  Index1   Tag Name                             Writable
     27219  ------   --------                             --------
     27220      1    AccelMode?                           no
     27221      2    SampleTime                           no
     27222     10    AccelYPR                             no
     27223
     27224=head3 QuickTime Gyro360Fly Tags
     27225
     27226  Index1   Tag Name                             Writable
     27227  ------   --------                             --------
     27228      1    GyroMode?                            no
     27229      2    SampleTime                           no
     27230     10    GyroYPR                              no
     27231
     27232=head3 QuickTime Mag360Fly Tags
     27233
     27234  Index1   Tag Name                             Writable
     27235  ------   --------                             --------
     27236      1    MagMode?                             no
     27237      2    SampleTime                           no
     27238     10    MagnetometerXYZ                      no
     27239
     27240=head3 QuickTime GPS360Fly Tags
     27241
     27242  Index1   Tag Name                             Writable
     27243  ------   --------                             --------
     27244      1    GPSMode?                             no
     27245      2    SampleTime                           no
     27246     10    GPSLatitude                          no
     27247     14    GPSLongitude                         no
     27248     18    GPSAltitude                          no
     27249     22    GPSSpeed                             no
     27250     24    GPSTrack                             no
     27251     26    Acceleration                         no
     27252
     27253=head3 QuickTime Rot360Fly Tags
     27254
     27255  Index1   Tag Name                             Writable
     27256  ------   --------                             --------
     27257      1    RotMode?                             no
     27258      2    SampleTime                           no
     27259     10    RotationXYZ                          no
     27260
     27261=head3 QuickTime Fusion360Fly Tags
     27262
     27263  Index1   Tag Name                             Writable
     27264  ------   --------                             --------
     27265      1    FusionMode?                          no
     27266      2    SampleTime                           no
     27267     10    FusionYPR                            no
    1395627268
    1395727269=head3 QuickTime ImageFile Tags
     
    1396127273  Tag ID   Tag Name                             Writable
    1396227274  ------   --------                             --------
    13963   'idat'   ImageData                            N
     27275  'idat'   ImageData                            no
    1396427276  'idsc'   ImageDescription                     QuickTime ImageDesc
    1396527277  'iicc'   ICC_Profile                          ICC_Profile
     27278
     27279=head2 Parrot Tags
     27280
     27281=head3 Parrot mett Tags
     27282
     27283Streaming metadata found in Parrot drone videos. See
     27284L<https://developer.parrot.com/docs/pdraw/metadata.html> for the
     27285specification.
     27286
     27287  Tag ID   Tag Name                             Writable
     27288  ------   --------                             --------
     27289  'P1'     ParrotV1                             Parrot V1
     27290  'P2'     ParrotV2                             Parrot V2
     27291  'P3'     ParrotV3                             Parrot V3
     27292  'E1'     ParrotTimeStamp                      Parrot TimeStamp
     27293  'E2'     ParrotFollowMe                       Parrot FollowMe
     27294  'E3'     ParrotAutomation                     Parrot Automation
     27295
     27296=head3 Parrot V1 Tags
     27297
     27298Parrot version 1 streaming metadata.
     27299
     27300  Index1   Tag Name                             Writable
     27301  ------   --------                             --------
     27302      4    DroneYaw                             no
     27303      6    DronePitch                           no
     27304      8    DroneRoll                            no
     27305     10    CameraPan                            no
     27306     12    CameraTilt                           no
     27307     14    FrameView                            no
     27308     22    ExposureTime                         no
     27309     24    ISO                                  no
     27310     26    WifiRSSI                             no
     27311     27    Battery                              no
     27312     28    GPSLatitude                          no
     27313     32    GPSLongitude                         no
     27314     36    GPSAltitude                          no
     27315   36.1    GPSSatellites                        no
     27316     40    AltitudeFromTakeOff                  no
     27317     44    DistanceFromHome                     no
     27318     48    SpeedX                               no
     27319     50    SpeedY                               no
     27320     52    SpeedZ                               no
     27321     54    Binning                              no
     27322   54.1    FlyingState                          no
     27323     55    Animation                            no
     27324   55.1    PilotingMode                         no
     27325
     27326=head3 Parrot V2 Tags
     27327
     27328Parrot version 2 basic streaming metadata.
     27329
     27330  Index1   Tag Name                             Writable
     27331  ------   --------                             --------
     27332      4    Elevation                            no
     27333      8    GPSLatitude                          no
     27334     12    GPSLongitude                         no
     27335     16    GPSAltitude                          no
     27336   16.1    GPSSatellites                        no
     27337     20    GPSVelocityNorth                     no
     27338     22    GPSVelocityEast                      no
     27339     24    GPSVelocityDown                      no
     27340     26    AirSpeed                             no
     27341     28    DroneQuaternion                      no
     27342     36    FrameView                            no
     27343     44    CameraPan                            no
     27344     46    CameraTilt                           no
     27345     48    ExposureTime                         no
     27346     50    ISO                                  no
     27347     52    Binning                              no
     27348   52.1    FlyingState                          no
     27349     53    Animation                            no
     27350   53.1    PilotingMode                         no
     27351     54    WifiRSSI                             no
     27352     55    Battery                              no
     27353  'Groups' Groups                               no
     27354
     27355=head3 Parrot V3 Tags
     27356
     27357Parrot version 3 basic streaming metadata.
     27358
     27359  Index1   Tag Name                             Writable
     27360  ------   --------                             --------
     27361      4    Elevation                            no
     27362      8    GPSLatitude                          no
     27363     12    GPSLongitude                         no
     27364     16    GPSAltitude                          no
     27365   16.1    GPSSatellites                        no
     27366     20    GPSVelocityNorth                     no
     27367     22    GPSVelocityEast                      no
     27368     24    GPSVelocityDown                      no
     27369     26    AirSpeed                             no
     27370     28    DroneQuaternion                      no
     27371     36    FrameBaseView                        no
     27372     44    FrameView                            no
     27373     52    ExposureTime                         no
     27374     54    ISO                                  no
     27375     56    RedBalance                           no
     27376     58    BlueBalance                          no
     27377     60    FOV                                  no
     27378     64    LinkGoodput                          no
     27379   64.1    LinkQuality                          no
     27380     68    WifiRSSI                             no
     27381     69    Battery                              no
     27382     70    Binning                              no
     27383   70.1    FlyingState                          no
     27384     71    Animation                            no
     27385   71.1    PilotingMode                         no
     27386
     27387=head3 Parrot TimeStamp Tags
     27388
     27389Parrot streaming metadata timestamp extension.
     27390
     27391  Index1   Tag Name                             Writable
     27392  ------   --------                             --------
     27393      4    TimeStamp                            no
     27394
     27395=head3 Parrot FollowMe Tags
     27396
     27397Parrot streaming metadata follow-me extension.
     27398
     27399  Index1   Tag Name                             Writable
     27400  ------   --------                             --------
     27401      4    GPSTargetLatitude                    no
     27402      8    GPSTargetLongitude                   no
     27403     12    GPSTargetAltitude                    no
     27404     16    Follow-meMode                        no
     27405     17    Follow-meAnimation                   no
     27406
     27407=head3 Parrot Automation Tags
     27408
     27409Parrot streaming metadata automation extension.
     27410
     27411  Index1   Tag Name                             Writable
     27412  ------   --------                             --------
     27413      4    GPSFramingLatitude                   no
     27414      8    GPSFramingLongitude                  no
     27415     12    GPSFramingAltitude                   no
     27416     16    GPSDestLatitude                      no
     27417     20    GPSDestLongitude                     no
     27418     24    GPSDestAltitude                      no
     27419     28    AutomationAnimation                  no
     27420     29    AutomationFlags                      no
     27421
     27422=head2 PLIST Tags
     27423
     27424Apple Property List tags.  ExifTool reads both XML and binary-format PLIST
     27425files, and will extract any existing tags even if they aren't listed below.
     27426These tags belong to the family 0 "PLIST" group, but family 1 group may be
     27427either "XML" or "PLIST" depending on whether the format is XML or binary.
     27428
     27429  Tag ID                       Tag Name         Writable
     27430  ------                       --------         --------
     27431  'MetaDataList//DateTimeOriginal'
     27432                               DateTimeOriginal no
     27433  'MetaDataList//Duration'     Duration         no
     27434  'MetaDataList//Geolocation/Latitude'
     27435                               GPSLatitude      no
     27436  'MetaDataList//Geolocation/Longitude'
     27437                               GPSLongitude     no
     27438  'MetaDataList//Geolocation/MapDatum'
     27439                               GPSMapDatum      no
     27440  'XMLFileType'                XMLFileType      no
     27441  'cast//name'                 Cast             no+
     27442  'codirectors//name'          Codirectors      no+
     27443  'directors//name'            Directors        no+
     27444  'producers//name'            Producers        no+
     27445  'screenwriters//name'        Screenwriters    no+
     27446  'studio//name'               Studio           no+
    1396627447
    1396727448=head2 Matroska Tags
     
    1397727458  ------       --------                         --------
    1397827459  0x0000       ChapterDisplay                   Matroska
    13979   0x0003       TrackType                        N
    13980   0x0005       ChapterString                    N
    13981   0x0006       VideoCodecID                     N
    13982                AudioCodecID                     N
    13983                CodecID                          N
    13984   0x0008       TrackDefault                     N
    13985   0x0009       ChapterTrackNumber?              N
     27460  0x0003       TrackType                        no
     27461  0x0005       ChapterString                    no
     27462  0x0006       VideoCodecID                     no
     27463               AudioCodecID                     no
     27464               CodecID                          no
     27465  0x0008       TrackDefault                     no
     27466  0x0009       ChapterTrackNumber?              no
    1398627467  0x000e       Slices                           Matroska
    1398727468  0x000f       ChapterTrack                     Matroska
    13988   0x0011       ChapterTimeStart                 N
    13989   0x0012       ChapterTimeEnd                   N
    13990   0x0016       CueRefTime?                      N
    13991   0x0017       CueRefCluster?                   N
    13992   0x0018       ChapterFlagHidden?               N
    13993   0x001a       VideoScanType                    N
    13994   0x001b       BlockDuration?                   N
    13995   0x001c       TrackLacing?                     N
    13996   0x001f       AudioChannels                    N
     27469  0x0011       ChapterTimeStart                 no
     27470  0x0012       ChapterTimeEnd                   no
     27471  0x0016       CueRefTime?                      no
     27472  0x0017       CueRefCluster?                   no
     27473  0x0018       ChapterFlagHidden?               no
     27474  0x001a       VideoScanType                    no
     27475  0x001b       BlockDuration?                   no
     27476  0x001c       TrackLacing?                     no
     27477  0x001f       AudioChannels                    no
    1399727478  0x0020       BlockGroup                       Matroska
    13998   0x0021       Block?                           N
    13999   0x0022       BlockVirtual?                    N
    14000   0x0023       SimpleBlock?                     N
    14001   0x0024       CodecState?                      N
    14002   0x0025       BlockAdditional?                 N
     27479  0x0021       Block?                           no
     27480  0x0022       BlockVirtual?                    no
     27481  0x0023       SimpleBlock?                     no
     27482  0x0024       CodecState?                      no
     27483  0x0025       BlockAdditional?                 no
    1400327484  0x0026       BlockMore                        Matroska
    14004   0x0027       Position                         N
    14005   0x002a       CodecDecodeAll                   N
    14006   0x002b       PrevSize                         N
     27485  0x0027       Position                         no
     27486  0x002a       CodecDecodeAll                   no
     27487  0x002b       PrevSize                         no
    1400727488  0x002e       TrackEntry                       Matroska
    14008   0x002f       EncryptedBlock?                  N
    14009   0x0030       ImageWidth                       N
    14010   0x0033       CueTime?                         N
    14011   0x0035       AudioSampleRate                  N
     27489  0x002f       EncryptedBlock?                  no
     27490  0x0030       ImageWidth                       no
     27491  0x0033       CueTime?                         no
     27492  0x0035       AudioSampleRate                  no
    1401227493  0x0036       ChapterAtom                      Matroska
    1401327494  0x0037       CueTrackPositions                Matroska
    14014   0x0039       TrackUsed                        N
    14015   0x003a       ImageHeight                      N
     27495  0x0039       TrackUsed                        no
     27496  0x003a       ImageHeight                      no
    1401627497  0x003b       CuePoint                         Matroska
    14017   0x003f       CRC-32?                          N
    14018   0x004b       BlockAdditionalID?               N
    14019   0x004c       LaceNumber?                      N
    14020   0x004d       FrameNumber?                     N
    14021   0x004e       Delay?                           N
    14022   0x004f       ClusterDuration?                 N
    14023   0x0057       TrackNumber                      N
     27498  0x003f       CRC-32?                          no
     27499  0x004b       BlockAdditionalID?               no
     27500  0x004c       LaceNumber?                      no
     27501  0x004d       FrameNumber?                     no
     27502  0x004e       Delay?                           no
     27503  0x004f       ClusterDuration?                 no
     27504  0x0057       TrackNumber                      no
    1402427505  0x005b       CueReference                     Matroska
    1402527506  0x0060       Video                            Matroska
    1402627507  0x0061       Audio                            Matroska
    14027   0x0067       Timecode?                        N
     27508  0x0067       TimeCode?                        no
    1402827509  0x0068       TimeSlice                        Matroska
    14029   0x006a       CueCodecState?                   N
    14030   0x006b       CueRefCodecState?                N
    14031   0x006c       Void?                            N
    14032   0x006e       BlockAddID?                      N
    14033   0x0071       CueClusterPosition?              N
    14034   0x0077       CueTrack?                        N
    14035   0x007a       ReferencePriority?               N
    14036   0x007b       ReferenceBlock?                  N
    14037   0x007d       ReferenceVirtual?                N
    14038   0x0254       ContentCompressionAlgorithm      N
    14039   0x0255       ContentCompressionSettings?      N
    14040   0x0282       DocType                          N
    14041   0x0285       DocTypeReadVersion               N
    14042   0x0286       EBMLVersion                      N
    14043   0x0287       DocTypeVersion                   N
    14044   0x02f2       EBMLMaxIDLength?                 N
    14045   0x02f3       EBMLMaxSizeLength?               N
    14046   0x02f7       EBMLReadVersion                  N
    14047   0x037c       ChapterLanguage                  N
    14048   0x037e       ChapterCountry                   N
    14049   0x0444       SegmentFamily?                   N
    14050   0x0461       DateTimeOriginal                 N
    14051   0x047a       TagLanguage                      N
    14052   0x0484       TagDefault                       N
    14053   0x0485       TagBinary                        N
    14054   0x0487       TagString                        N
    14055   0x0489       Duration                         N
    14056   0x050d       ChapterProcessPrivate?           N
    14057   0x0598       ChapterFlagEnabled?              N
    14058   0x05a3       TagName                          N
     27510  0x006a       CueCodecState?                   no
     27511  0x006b       CueRefCodecState?                no
     27512  0x006c       Void?                            no
     27513  0x006e       BlockAddID?                      no
     27514  0x0071       CueClusterPosition?              no
     27515  0x0077       CueTrack?                        no
     27516  0x007a       ReferencePriority?               no
     27517  0x007b       ReferenceBlock?                  no
     27518  0x007d       ReferenceVirtual?                no
     27519  0x0254       ContentCompressionAlgorithm      no
     27520  0x0255       ContentCompressionSettings?      no
     27521  0x0282       DocType                          no
     27522  0x0285       DocTypeReadVersion               no
     27523  0x0286       EBMLVersion                      no
     27524  0x0287       DocTypeVersion                   no
     27525  0x02f2       EBMLMaxIDLength?                 no
     27526  0x02f3       EBMLMaxSizeLength?               no
     27527  0x02f7       EBMLReadVersion                  no
     27528  0x037c       ChapterLanguage                  no
     27529  0x037e       ChapterCountry                   no
     27530  0x0444       SegmentFamily?                   no
     27531  0x0461       DateTimeOriginal                 no
     27532  0x047a       TagLanguage                      no
     27533  0x0484       TagDefault                       no
     27534  0x0485       TagBinary                        no
     27535  0x0487       TagString                        no
     27536  0x0489       Duration                         no
     27537  0x050d       ChapterProcessPrivate?           no
     27538  0x0598       ChapterFlagEnabled?              no
     27539  0x05a3       TagName                          no
    1405927540  0x05b9       EditionEntry                     Matroska
    14060   0x05bc       EditionUID?                      N
    14061   0x05bd       EditionFlagHidden?               N
    14062   0x05db       EditionFlagDefault?              N
    14063   0x05dd       EditionFlagOrdered?              N
    14064   0x065c       AttachedFileData                 N
    14065   0x0660       AttachedFileMIMEType             N
    14066   0x066e       AttachedFileName                 N
    14067   0x0675       AttachedFileReferral?            N
    14068   0x067e       AttachedFileDescription          N
    14069   0x06ae       AttachedFileUID                  N
    14070   0x07e1       ContentEncryptionAlgorithm       N
    14071   0x07e2       ContentEncryptionKeyID?          N
    14072   0x07e3       ContentSignature?                N
    14073   0x07e4       ContentSignatureKeyID?           N
    14074   0x07e5       ContentSignatureAlgorithm        N
    14075   0x07e6       ContentSignatureHashAlgorithm    N
    14076   0x0d80       MuxingApp                        N
     27541  0x05bc       EditionUID?                      no
     27542  0x05bd       EditionFlagHidden?               no
     27543  0x05db       EditionFlagDefault?              no
     27544  0x05dd       EditionFlagOrdered?              no
     27545  0x065c       AttachedFileData                 no
     27546  0x0660       AttachedFileMIMEType             no
     27547  0x066e       AttachedFileName                 no
     27548  0x0675       AttachedFileReferral?            no
     27549  0x067e       AttachedFileDescription          no
     27550  0x06ae       AttachedFileUID                  no
     27551  0x07e1       ContentEncryptionAlgorithm       no
     27552  0x07e2       ContentEncryptionKeyID?          no
     27553  0x07e3       ContentSignature?                no
     27554  0x07e4       ContentSignatureKeyID?           no
     27555  0x07e5       ContentSignatureAlgorithm        no
     27556  0x07e6       ContentSignatureHashAlgorithm    no
     27557  0x0d80       MuxingApp                        no
    1407727558  0x0dbb       Seek                             Matroska
    14078   0x1031       ContentEncodingOrder?            N
    14079   0x1032       ContentEncodingScope?            N
    14080   0x1033       ContentEncodingType              N
     27559  0x1031       ContentEncodingOrder?            no
     27560  0x1032       ContentEncodingScope?            no
     27561  0x1033       ContentEncodingType              no
    1408127562  0x1034       ContentCompression               Matroska
    1408227563  0x1035       ContentEncryption                Matroska
    14083   0x135f       CueRefNumber?                    N
    14084   0x136e       TrackName                        N
    14085   0x1378       CueBlockNumber?                  N
    14086   0x137f       TrackOffset?                     N
    14087   0x13ab       SeekID?                          N
    14088   0x13ac       SeekPosition?                    N
    14089   0x13b8       Stereo3DMode                     N
    14090   0x14aa       CropBottom                       N
    14091   0x14b0       DisplayWidth                     N
    14092   0x14b2       DisplayUnit                      N
    14093   0x14b3       AspectRatioType                  N
    14094   0x14ba       DisplayHeight                    N
    14095   0x14bb       CropTop                          N
    14096   0x14cc       CropLeft                         N
    14097   0x14dd       CropRight                        N
    14098   0x15aa       TrackForced                      N
    14099   0x15ee       MaxBlockAdditionID?              N
    14100   0x1741       WritingApp                       N
     27564  0x135f       CueRefNumber?                    no
     27565  0x136e       TrackName                        no
     27566  0x1378       CueBlockNumber?                  no
     27567  0x137f       TrackOffset?                     no
     27568  0x13ab       SeekID?                          no
     27569  0x13ac       SeekPosition?                    no
     27570  0x13b8       Stereo3DMode                     no
     27571  0x14aa       CropBottom                       no
     27572  0x14b0       DisplayWidth                     no
     27573  0x14b2       DisplayUnit                      no
     27574  0x14b3       AspectRatioType                  no
     27575  0x14ba       DisplayHeight                    no
     27576  0x14bb       CropTop                          no
     27577  0x14cc       CropLeft                         no
     27578  0x14dd       CropRight                        no
     27579  0x15aa       TrackForced                      no
     27580  0x15ee       MaxBlockAdditionID?              no
     27581  0x1741       WritingApp                       no
    1410127582  0x1854       SilentTracks                     Matroska
    14102   0x18d7       SilentTrackNumber                N
     27583  0x18d7       SilentTrackNumber                no
    1410327584  0x21a7       AttachedFile                     Matroska
    1410427585  0x2240       ContentEncoding                  Matroska
    14105   0x2264       AudioBitsPerSample               N
    14106   0x23a2       CodecPrivate?                    N
     27586  0x2264       AudioBitsPerSample               no
     27587  0x23a2       CodecPrivate?                    no
    1410727588  0x23c0       Targets                          Matroska
    14108   0x23c3       ChapterPhysicalEquivalent        N
    14109   0x23c4       TagChapterUID?                   N
    14110   0x23c5       TagTrackUID?                     N
    14111   0x23c6       TagAttachmentUID?                N
    14112   0x23c9       TagEditionUID?                   N
    14113   0x23ca       TargetType                       N
    14114   0x2532       SignedElement?                   N
     27589  0x23c3       ChapterPhysicalEquivalent        no
     27590  0x23c4       TagChapterUID?                   no
     27591  0x23c5       TagTrackUID?                     no
     27592  0x23c6       TagAttachmentUID?                no
     27593  0x23c9       TagEditionUID?                   no
     27594  0x23ca       TargetType                       no
     27595  0x2532       SignedElement?                   no
    1411527596  0x2624       TrackTranslate                   Matroska
    14116   0x26a5       TrackTranslateTrackID?           N
    14117   0x26bf       TrackTranslateCodec              N
    14118   0x26fc       TrackTranslateEditionUID?        N
     27597  0x26a5       TrackTranslateTrackID?           no
     27598  0x26bf       TrackTranslateCodec              no
     27599  0x26fc       TrackTranslateEditionUID?        no
    1411927600  0x27c8       SimpleTag                        Matroska
    14120   0x28ca       TargetTypeValue                  N
     27601  0x28ca       TargetTypeValue                  no
    1412127602  0x2911       ChapterProcessCommand            Matroska
    14122   0x2922       ChapterProcessTime?              N
     27603  0x2922       ChapterProcessTime?              no
    1412327604  0x2924       ChapterTranslate                 Matroska
    14124   0x2933       ChapterProcessData?              N
     27605  0x2933       ChapterProcessData?              no
    1412527606  0x2944       ChapterProcess                   Matroska
    14126   0x2955       ChapterProcessCodecID?           N
    14127   0x29a5       ChapterTranslateID?              N
    14128   0x29bf       ChapterTranslateCodec            N
    14129   0x29fc       ChapterTranslateEditionUID?      N
     27607  0x2955       ChapterProcessCodecID?           no
     27608  0x29a5       ChapterTranslateID?              no
     27609  0x29bf       ChapterTranslateCodec            no
     27610  0x29fc       ChapterTranslateEditionUID?      no
    1413027611  0x2d80       ContentEncodings                 Matroska
    14131   0x2de7       MinCache?                        N
    14132   0x2df8       MaxCache?                        N
    14133   0x2e67       ChapterSegmentUID?               N
    14134   0x2ebc       ChapterSegmentEditionUID?        N
    14135   0x2fab       TrackOverlay?                    N
     27612  0x2de7       MinCache?                        no
     27613  0x2df8       MaxCache?                        no
     27614  0x2e67       ChapterSegmentUID?               no
     27615  0x2ebc       ChapterSegmentEditionUID?        no
     27616  0x2fab       TrackOverlay?                    no
    1413627617  0x3373       Tag                              Matroska
    14137   0x3384       SegmentFileName                  N
    14138   0x33a4       SegmentUID?                      N
    14139   0x33c4       ChapterUID?                      N
    14140   0x33c5       TrackUID?                        N
    14141   0x3446       TrackAttachmentUID               N
     27618  0x3384       SegmentFileName                  no
     27619  0x33a4       SegmentUID?                      no
     27620  0x33c4       ChapterUID?                      no
     27621  0x33c5       TrackUID?                        no
     27622  0x3446       TrackAttachmentUID               no
    1414227623  0x35a1       BlockAdditions                   Matroska
    14143   0x38b5       OutputAudioSampleRate            N
    14144   0x3ba9       Title                            N
    14145   0x3d7b       ChannelPositions?                N
     27624  0x38b5       OutputAudioSampleRate            no
     27625  0x3ba9       Title                            no
     27626  0x3d7b       ChannelPositions?                no
    1414627627  0x3e5b       SignatureElements                Matroska
    1414727628  0x3e7b       SignatureElementList             Matroska
    14148   0x3e8a       SignatureAlgo                    N
    14149   0x3e9a       SignatureHash                    N
    14150   0x3ea5       SignaturePublicKey?              N
    14151   0x3eb5       Signature?                       N
    14152   0x2b59c      TrackLanguage                    N
    14153   0x3314f      TrackTimecodeScale               N
    14154   0x383e3      FrameRate                        N
    14155   0x3e383      VideoFrameRate                   N
    14156                DefaultDuration                  N
    14157   0x58688      VideoCodecName                   N
    14158                AudioCodecName                   N
    14159                CodecName                        N
    14160   0x6b240      CodecDownloadURL                 N
    14161   0xad7b1      TimecodeScale                    N
    14162   0xeb524      ColorSpace?                      N
    14163   0xfb523      Gamma                            N
    14164   0x1a9697     CodecSettings                    N
    14165   0x1b4040     CodecInfoURL                     N
    14166   0x1c83ab     PrevFileName                     N
    14167   0x1cb923     PrevUID?                         N
    14168   0x1e83bb     NextFileName                     N
    14169   0x1eb923     NextUID?                         N
     27629  0x3e8a       SignatureAlgo                    no
     27630  0x3e9a       SignatureHash                    no
     27631  0x3ea5       SignaturePublicKey?              no
     27632  0x3eb5       Signature?                       no
     27633  0x7670       Projection                       Matroska Projection
     27634  0x2b59c      TrackLanguage                    no
     27635  0x3314f      TrackTimecodeScale               no
     27636  0x383e3      FrameRate                        no
     27637  0x3e383      VideoFrameRate                   no
     27638               DefaultDuration                  no
     27639  0x58688      VideoCodecName                   no
     27640               AudioCodecName                   no
     27641               CodecName                        no
     27642  0x6b240      CodecDownloadURL                 no
     27643  0xad7b1      TimecodeScale                    no
     27644  0xeb524      ColorSpace?                      no
     27645  0xfb523      Gamma                            no
     27646  0x1a9697     CodecSettings                    no
     27647  0x1b4040     CodecInfoURL                     no
     27648  0x1c83ab     PrevFileName                     no
     27649  0x1cb923     PrevUID?                         no
     27650  0x1e83bb     NextFileName                     no
     27651  0x1eb923     NextUID?                         no
    1417027652  0x43a770     Chapters                         Matroska
    1417127653  0x14d9b74    SeekHead                         Matroska
     
    1418027662  0xf43b675    Cluster                          Matroska
    1418127663
     27664=head3 Matroska Projection Tags
     27665
     27666Projection tags defined by the Spherical Video V2 specification.  See
     27667L<https://github.com/google/spatial-media/blob/master/docs/spherical-video-v2-rfc.md>
     27668for the specification.
     27669
     27670  Tag ID   Tag Name                             Writable
     27671  ------   --------                             --------
     27672  0x7671   ProjectionType                       no
     27673  0x7672   EquirectangularProj                  QuickTime equi
     27674           CubemapProj                          QuickTime cbmp
     27675  0x7673   ProjectionPosYaw                     no
     27676  0x7674   ProjectionPosPitch                   no
     27677  0x7675   ProjectionPosRoll                    no
     27678
     27679=head2 MOI Tags
     27680
     27681MOI files store information about associated MOD or TOD files, and are
     27682written by some JVC, Canon and Panasonic camcorders.
     27683
     27684  Index1   Tag Name                             Writable
     27685  ------   --------                             --------
     27686      0    MOIVersion                           no
     27687      6    DateTimeOriginal                     no
     27688     14    Duration                             no
     27689    128    AspectRatio                          no
     27690    132    AudioCodec                           no
     27691    134    AudioBitrate                         no
     27692    218    VideoBitrate                         no
     27693
    1418227694=head2 MXF Tags
    1418327695
     
    1418727699  Tag Name                                      Writable
    1418827700  --------                                      --------
    14189   OrganizationID                                N
    14190   UPID?                                         N
    14191   UPN?                                          N
    14192   IBTN?                                         N
    14193   ISAN?                                         N
    14194   ISBN?                                         N
    14195   ISSN?                                         N
    14196   ISWC?                                         N
    14197   ISMN?                                         N
    14198   ISCI?                                         N
    14199   ISRC?                                         N
    14200   ISRN?                                         N
    14201   ISBD?                                         N
    14202   ISTC?                                         N
    14203   SICI?                                         N
    14204   BICI?                                         N
    14205   AICI?                                         N
    14206   PII?                                          N
    14207   DOI?                                          N
    14208   InstanceUID?                                  N
    14209   PackageID?                                    N
    14210   DeviceDesignation                             N
    14211   DeviceModel                                   N
    14212   DeviceSerialNumber                            N
    14213   URL                                           N
    14214   URL                                           N
    14215   PURL                                          N
    14216   URN                                           N
    14217   TransmissionID                                N
    14218   ArchiveID                                     N
    14219   ItemID                                        N
    14220   AccountingReferenceNumber                     N
    14221   TrafficID                                     N
    14222   ReelOrRollNumber                              N
    14223   LocalTapeNumber                               N
    14224   LUID                                          N
    14225   PackageName                                   N
    14226   LocalFilePath                                 N
    14227   EdgeCode                                      N
    14228   FrameCode                                     N
    14229   KeyCode?                                      N
    14230   InkNumber                                     N
    14231   KeyText                                       N
    14232   KeyFrame                                      N
    14233   KeySound                                      N
    14234   KeyDataOrProgram                              N
    14235   TitleKind                                     N
    14236   MainTitle                                     N
    14237   SecondaryTitle                                N
    14238   SeriesNumber                                  N
    14239   EpisodeNumber                                 N
    14240   SceneNumber                                   N
    14241   TakeNumber                                    N
    14242   CISACLegalEntityID?                           N
    14243   AGICOAID?                                     N
    14244   SourceOrganization                            N
    14245   SupplyContractNumber                          N
    14246   OriginalProducerName                          N
    14247   TotalEpisodeCount                             N
    14248   CopyrightStatus                               N
    14249   CopyrightOwnerName                            N
    14250   IntellectualPropertyDescription               N
    14251   IntellectualPropertyRights                    N
    14252   Rightsholder                                  N
    14253   RightsManagementAuthority                     N
    14254   InterestedPartyName                           N
    14255   MaximumUseCount                               N
    14256   LicenseOptionsDescription                     N
    14257   CurrencyCode                                  N
    14258   RoyaltyPaymentInformation                     N
    14259   RoyaltyIncomeInformation                      N
    14260   RestrictionsonUse                             N
    14261   ExCCIData?                                    N
    14262   Username                                      N
    14263   Username                                      N
    14264   Password                                      N
    14265   Password                                      N
    14266   ScramblingKeyKind                             N
    14267   ScramblingKeyValue                            N
    14268   BroadcastOrganizationName                     N
    14269   BroadcastChannel                              N
    14270   BroadcastMediumKind                           N
    14271   BroadcastRegion                               N
    14272   FirstBroadcastFlag                            N
    14273   CurrentRepeatNumber                           N
    14274   PreviousRepeatNumber                          N
    14275   AudienceRating                                N
    14276   AudienceReach                                 N
    14277   NatureOfPersonality                           N
    14278   ContributionStatus                            N
    14279   SupportOrAdministrationStatus                 N
    14280   OrganizationKind                              N
    14281   ProductionOrganizationRole                    N
    14282   SupportOrganizationRole                       N
    14283   JobFunctionName                               N
    14284   RoleName                                      N
    14285   ContactKind                                   N
    14286   ContactDepartmentName                         N
    14287   FamilyName                                    N
    14288   FirstGivenName                                N
    14289   SecondGivenName                               N
    14290   ThirdGivenName                                N
    14291   MainName                                      N
    14292   SupplementaryName                             N
    14293   OrganizationMainName                          N
    14294   SupplementaryOrganizationName                 N
    14295   ISO3166CountryCode                            N
    14296   ISO639-1LanguageCode                          N
    14297   OperatingSystemInterpretations                N
    14298   ByteOrder                                     N
    14299   EssenceIsIdentified                           N
    14300   LengthSystemName                              N
    14301   LengthUnitKind                                N
    14302   AngularUnitKind                               N
    14303   TimeSystemOffset                              N
    14304   TimeUnitKind                                  N
    14305   ContentCodingSystem                           N
    14306   ProgramKind                                   N
    14307   Genre                                         N
    14308   TargetAudience                                N
    14309   CatalogDataStatus                             N
    14310   ThesaurusName                                 N
    14311   Theme                                         N
    14312   ContentClassification                         N
    14313   Keywords                                      N
    14314   KeyFrames                                     N
    14315   KeySounds                                     N
    14316   KeyData                                       N
    14317   Abstract                                      N
    14318   Purpose                                       N
    14319   Description                                   N
    14320   ColorDescriptor                               N
    14321   FormatDescriptor                              N
    14322   StratumKind                                   N
    14323   IndividualAwardName                           N
    14324   ProgramAwardName                              N
    14325   AssetValue                                    N
    14326   ContentValue                                  N
    14327   CulturalValue                                 N
    14328   AestheticValue                                N
    14329   HistoricalValue                               N
    14330   TechnicalValue                                N
    14331   OtherValues                                   N
    14332   CatalogDataStatus                             N
    14333   CatalogingSystemName                          N
    14334   ComputedKeywords                              N
    14335   ComputedKeyFrames                             N
    14336   ComputedKeySounds                             N
    14337   ComputedKeyData                               N
    14338   ComputedStratumKind                           N
    14339   PresentationAspectRatio                       N
    14340   CaptureAspectRatio                            N
    14341   CaptureGammaEquation                          N
    14342   CaptureGammaEquation                          N
    14343   LumaEquation                                  N
    14344   ColorimetryCode                               N
    14345   SignalFormCode                                N
    14346   ColorFieldCode                                N
    14347   FieldRate                                     N
    14348   FrameRate                                     N
    14349   FrameLayout                                   N
    14350   SamplingStructureCode                         N
    14351   TotalLinesperFrame                            N
    14352   ActiveLinesperFrame                           N
    14353   LeadingLines                                  N
    14354   TrailingLines                                 N
    14355   AnalogVideoSystemName                         N
    14356   LuminanceSampleRate                           N
    14357   ActiveSamplesperLine                          N
    14358   TotalSamplesperLine                           N
    14359   SamplingHierarchyCode                         N
    14360   HorizontalSubsampling                         N
    14361   ColorSiting                                   N
    14362   SampledHeight                                 N
    14363   SampledWidth                                  N
    14364   SampledXOffset                                N
    14365   SampledYOffset                                N
    14366   DisplayHeight                                 N
    14367   DisplayWidth                                  N
    14368   DisplayXOffset                                N
    14369   DisplayYOffset                                N
    14370   FilteringCode                                 N
    14371   ImageHeight                                   N
    14372   ImageWidth                                    N
    14373   BitsperPixel                                  N
    14374   RoundingMethodCode                            N
    14375   BlackReferenceLevel                           N
    14376   WhiteReferenceLevel                           N
    14377   FieldFrameTypeCode                            N
    14378   PulldownSequence?                             N
    14379   PulldownFieldDominance                        N
    14380   VideoAndFilmFrameRelationship                 N
    14381   CaptureFilmFrameRate                          N
    14382   TransferFilmFrameRate                         N
    14383   VideoTestParameter                            N
    14384   VideoTestResult                               N
    14385   VideoTestResult                               N
    14386   FilmTestParameter                             N
    14387   FilmTestResult                                N
    14388   FilmTestResult?                               N
    14389   ElectrospatialFormulation                     N
    14390   FilteringApplied                              N
    14391   AudioReferenceLevel                           N
    14392   AudioMonoChannelCount                         N
    14393   AudioStereoChannelCount                       N
    14394   AnalogSystem                                  N
    14395   AudioSampleRate                               N
    14396   BitsPerSample                                 N
    14397   RoundingLaw                                   N
    14398   Dither                                        N
    14399   OpticalTrack                                  N
    14400   MagneticTrack                                 N
    14401   Signal-to-NoiseRatio                          N
    14402   Weighting                                     N
    14403   AnalogDataCodingKind                          N
    14404   TimecodeKind                                  N
    14405   TimecodeTimebase                              N
    14406   TimecodeUserBitsFlag                          N
    14407   IncludeSync                                   N
    14408   DropFrame                                     N
    14409   TimecodeSourceKind                            N
    14410   AnalogMetadataCarrier                         N
    14411   DigitalMetadataCarrier                        N
    14412   AnalogMonitoringAndControlCodingKind          N
    14413   SampleRate                                    N
    14414   EssenceLength                                 N
    14415   FilmColorProcess                              N
    14416   EdgeCodeFormat?                               N
    14417   FilmFormatName                                N
    14418   FilmStockKind                                 N
    14419   FilmStockManufacturerName                     N
    14420   PhysicalMediaLength?                          N
    14421   FilmCaptureAperture                           N
    14422   ImageCategory                                 N
    14423   ImageSourceDeviceKind                         N
    14424   OpticalTestParameterName                      N
    14425   OpticalTestResult                             N
    14426   OpticalTestResult                             N
    14427   SensorType                                    N
    14428   PolarCharacteristic                           N
    14429   IntegrationIndication                         N
    14430   EventIndication                               N
    14431   QualityFlag                                   N
    14432   PhysicalInstanceKind                          N
    14433   DigitalOrAnalogOrigination                    N
    14434   MicrophonePlacementTechniques                 N
    14435   SimpleFlaggingCount                           N
    14436   CopyCount                                     N
    14437   CloneCount                                    N
    14438   Work-in-ProgressFlag                          N
    14439   VideoOrImageCompressionAlgorithm              N
    14440   SplicingMetadata?                             N
    14441   AudioCompressionAlgorithm                     N
    14442   VideoNoiseReductionAlgorithm                  N
    14443   AudioNoiseReductionAlgorithm                  N
    14444   EnhancementOrModificationDescription          N
    14445   VideoDeviceKind                               N
    14446   VideoDeviceParameterName                      N
    14447   VideoDeviceParameterSetting                   N
    14448   AudioEnhancementOrModificationDescription     N
    14449   AudioFirstMix-DownProcess                     N
    14450   AudioDeviceKind                               N
    14451   AudioDeviceParameter                          N
    14452   AudioDeviceParameterSetting                   N
    14453   DataEnhancementOrModificationDescription      N
    14454   DataDeviceKind                                N
    14455   DataDeviceParameterName                       N
    14456   DataDeviceParameterSetting                    N
    14457   DefaultFadeType?                              N
    14458   ActiveState                                   N
    14459   Fade-InType?                                  N
    14460   Fade-OutType?                                 N
    14461   SpeedChangeEffectFlag                         N
    14462   InputSegmentCount                             N
    14463   Bypass                                        N
    14464   VideoCompressionAlgorithm                     N
    14465   MPEGVideoRecodingDataset?                     N
    14466   UpstreamAudioCompressionAlgorithm             N
    14467   MPEGAudioRecodingDataset?                     N
    14468   ProgramSupportMaterialReference               N
    14469   AdvertisingMaterialReference                  N
    14470   ProgramCommercialMaterialReference            N
    14471   ContiguousDataFlag                            N
    14472   PositionInSequence                            N
    14473   RelativePositionInSequenceOffset              N
    14474   RelativePositionInSequenceName                N
    14475   ImageCoordinateSystem                         N
    14476   MapDatumUsed                                  N
    14477   LocalDatumAbsolutePositionAccuracy            N
    14478   DeviceAbsolutePositionalAccuracy              N
    14479   DeviceAltitude                                N
    14480   DeviceAltitude                                N
    14481   DeviceLatitude                                N
    14482   DeviceLatitude                                N
    14483   DeviceLongitude                               N
    14484   DeviceLongitude                               N
    14485   DeviceXDimension                              N
    14486   DeviceYDimension                              N
    14487   FramePositionalAccuracy                       N
    14488   FrameCenterLatitude                           N
    14489   FrameCenterLatitude                           N
    14490   FrameCenterLongitude                          N
    14491   FrameCenterLongitude                          N
    14492   FrameCenterLatitudeLongitude                  N
    14493   LocalDatumRelativePositionAccuracy            N
    14494   DeviceRelativePositionalAccuracy              N
    14495   DeviceRelativePositionX                       N
    14496   DeviceRelativePositionY                       N
    14497   DeviceRelativePositionZ                       N
    14498   SubjectRelativePositionalAccuracy             N
    14499   PositionWithinViewportImageXCoordinate        N
    14500   PositionWithinViewportImageYCoordinate        N
    14501   SourceImageCenterXCoordinate                  N
    14502   SourceImageCenterYCoordinate                  N
    14503   ViewportImageCenterCCoordinate                N
    14504   ViewportImageCenterYCoordinate                N
    14505   DeviceAbsoluteSpeed                           N
    14506   DeviceAbsoluteHeading                         N
    14507   SubjectAbsoluteSpeed                          N
    14508   SubjectAbsoluteHeading                        N
    14509   DeviceRelativeSpeed                           N
    14510   DeviceRelativeHeading                         N
    14511   SubjectRelativeSpeed                          N
    14512   SubjectRelativeHeading                        N
    14513   SlantRange                                    N
    14514   TargetWidth                                   N
    14515   ViewportHeight                                N
    14516   ViewportWidth                                 N
    14517   SensorRollAngle                               N
    14518   AngleToNorth                                  N
    14519   ObliquityAngle                                N
    14520   PlaceKeyword                                  N
    14521   ObjectCountryCode                             N
    14522   ShootingCountryCode                           N
    14523   SettingCountryCode                            N
    14524   CopyrightLicenseCountryCode                   N
    14525   IntellectualPropertyLicenseCountryCode        N
    14526   ObjectRegionCode                              N
    14527   ShootingRegionCode                            N
    14528   SettingRegionCode                             N
    14529   CopyrightLicenseRegionCode                    N
    14530   IntellectualPropertyLicenseRegionCode         N
    14531   RoomNumber                                    N
    14532   StreetNumber                                  N
    14533   StreetName                                    N
    14534   PostalTown                                    N
    14535   CityName                                      N
    14536   StateOrProvinceOrCountyName                   N
    14537   PostalCode                                    N
    14538   CountryName                                   N
    14539   SettingRoomNumber                             N
    14540   SettingStreetNumberOrBuildingName             N
    14541   SettingStreetName                             N
    14542   SettingTownName                               N
    14543   SettingCityName                               N
    14544   SettingStateOrProvinceOrCountyName            N
    14545   SettingPostalCode                             N
    14546   SettingCountryName                            N
    14547   TelephoneNumber                               N
    14548   FaxNumber                                     N
    14549   E-MailAddress                                 N
    14550   SettingDescription                            N
    14551   UTCUserDateTime                               N
    14552   LocalUserDateTime                             N
    14553   SMPTE309MUserDateTime?                        N
    14554   SMPTE12MUserDateTime?                         N
    14555   UTCStartDateTime                              N
    14556   LocalStartDateTime                            N
    14557   TimecodeStartDateTime?                        N
    14558   UTCEndDateTime                                N
    14559   LocalEndDateTime                              N
    14560   TimecodeEndDateTime?                          N
    14561   UTCLastModifyDate                             N
    14562   LocalLastModifyDate                           N
    14563   TimecodeLastModifyDate?                       N
    14564   UTCEventStartDateTime                         N
    14565   LocalEventStartDateTime                       N
    14566   TimecodeEventStartDateTime?                   N
    14567   UTCEventEndDateTime                           N
    14568   LocalEventEndDateTime                         N
    14569   TimecodeEventEndDateTime?                     N
    14570   StartTimeRelativeToReference                  N
    14571   StartTimecodeRelativeToReference?             N
    14572   MaterialEndTimeOffset                         N
    14573   MaterialEndTimecodeOffset?                    N
    14574   EventStartTimeOffset                          N
    14575   EventStartTimecodeOffset?                     N
    14576   EventEndTimeOffset                            N
    14577   EventEndTimecodeOffset?                       N
    14578   FrameCountOffset                              N
    14579   TimePeriodName                                N
    14580   LocalCreationDateTime                         N
    14581   TimecodeCreationDateTime?                     N
    14582   LocalModifyDate                               N
    14583   TimecodeModifyDate?                           N
    14584   FrameCount                                    N
    14585   MaterialAbsoluteDuration                      N
    14586   MaterialAbsoluteDuration?                     N
    14587   TextlessBlackDuration                         N
    14588   EventAbsoluteDurationFrameCount               N
    14589   EventAbsoluteDuration                         N
    14590   EventAbsoluteDuration?                        N
    14591   BufferDelay?                                  N
    14592   ProgramIdentifier                             N
    14593   ProgramIdentifierString                       N
    14594   ShimName                                      N
    14595   SignalStandard                                N
    14596   IntendedAFD                                   N
    14597   SlateTitle                                    N
    14598   NOLACode                                      N
    14599   Rating                                        N
    14600   NielsenStreamIdentifier                       N
    14601   IsRecording                                   N
    14602   IsLiveProduction                              N
    14603   IsLiveTransmission                            N
    14604   IsDubbed                                      N
    14605   IsVoiceover                                   N
    14606   HasAudioWatermark                             N
    14607   AudioWatermarkKind                            N
    14608   HasVideoWatermark                             N
    14609   VideoWatermarkKind                            N
    14610   SubtitlesPresent                              N
    14611   CaptionTitles                                 N
    14612   CaptionsViaTeletext                           N
    14613   TextlessMaterial                              N
    14614   AudioReferenceLevel                           N
    14615   StorageDeviceKind                             N
    14616   StorageMediaKind                              N
    14617   StorageMediaID                                N
    14618   BroadcastDate                                 N
    14619   BroadcastTime                                 N
    14620   IsRepeat                                      N
    14621   FirstTransmissionInfo                         N
    14622   TeletextSubtitlesAvailable                    N
    14623   SeasonEpisodeNumber                           N
    14624   SeasonEpisodeTitle                            N
    14625   EPGProgramSynopsis                            N
    14626   ContentClassification                         N
    14627   DVBParentalRating                             N
    14628   ContentMaturityRating                         N
    14629   ContentMaturityDescription                    N
    14630   ContentMaturityGraphic                        N
    14631   ContractEntity                                N
    14632   ContractTypeLink                              N
    14633   ConsumerRightsToCopy                          N
    14634   BroadcasterRightsToCopy                       N
    14635   DirectorName                                  N
    14636   ProducerName                                  N
    14637   FemaleLeadActressName                         N
    14638   MaleLeadActorName                             N
    14639   PresenterName                                 N
    14640   MainSponsorName                               N
    14641   VoiceTalentName                               N
    14642   PostboxNumber                                 N
    14643   PostCodeForPostbox                            N
    14644   ProgramNumber                                 N
    14645   DefinitionObjectID?                           N
    14646   IEEEDeviceID                                  N
    14647   ProjectNumber                                 N
    14648   EdgeCodeHeader?                               N
    14649   ChannelHandle                                 N
    14650   PhysicalMediaLocation                         N
    14651   MediaLocation                                 N
    14652   TrackNumber                                   N
    14653   EdgeCodeStart                                 N
    14654   VersionTitle                                  N
    14655   TrackID                                       N
    14656   TrackName                                     N
    14657   TrackName                                     N
    14658   DefinitionObjectName                          N
    14659   DefinitionObjectName                          N
    14660   ContentPackageMetadataLink                    N
    14661   DefinedName                                   N
    14662   DefinedName                                   N
    14663   DeviceManufacturerName                        N
    14664   DeviceManufacturerName                        N
    14665   ManufacturerID?                               N
    14666   IEEEManufacturerID                            N
    14667   AAFManufacturerID?                            N
    14668   SupplyingDepartmentName                       N
    14669   AudienceShare                                 N
    14670   AudienceAppreciation                          N
    14671   Salutation                                    N
    14672   HonorsAndQualifications                       N
    14673   ObjectModelVersion                            N
    14674   SDKVersion                                    N
    14675   IsOptional                                    N
    14676   IsSearchable                                  N
    14677   UseDefaultValue                               N
    14678   DefaultDataValue?                             N
    14679   Size                                          N
    14680   IsSigned                                      N
    14681   ElementCount                                  N
    14682   ElementNameList                               N
    14683   TypeDefinitionElementValueList                N
    14684   MemberNameList                                N
    14685   ExtendibleElementNameList                     N
    14686   TypeDefinitionExtendibleElementValues?        N
    14687   TargetSet?                                    N
    14688   FillerData?                                   N
    14689   KLVDataValue?                                 N
    14690   PackageKLVData?                               N
    14691   ComponentKLVData?                             N
    14692   AssignedCategoryName                          N
    14693   AssignedCategoryName                          N
    14694   AssignedCategoryValue                         N
    14695   AssignedCategoryValue                         N
    14696   ShotList                                      N
    14697   PackageUserComments?                          N
    14698   Cue-InWords                                   N
    14699   Cue-OutWords                                  N
    14700   ObjectKind                                    N
    14701   ObjectKind                                    N
    14702   ObjectDescription                             N
    14703   ObjectDescription                             N
    14704   ObjectName                                    N
    14705   MetadataItemName                              N
    14706   ShotCommentKind                               N
    14707   ShotComment                                   N
    14708   ComputedObjectKind                            N
    14709   ComputedObjectKind                            N
    14710   VersionNumberString                           N
    14711   VersionNumberString                           N
    14712   VersionNumber                                 N
    14713   WAVESummary?                                  N
    14714   AIFCSummary?                                  N
    14715   TIFFSummary?                                  N
    14716   ViewportAspectRatio                           N
    14717   CaptureGammaEquation?                         N
    14718   ColorimetryCode?                              N
    14719   PresentationGammaEquation                     N
    14720   PresentationGammaEquation?                    N
    14721   FieldDominance                                N
    14722   VideoLineMap                                  N
    14723   AnalogVideoSystemName?                        N
    14724   VerticalSub-sampling                          N
    14725   BitsperPixel                                  N
    14726   ColorRangeLevels                              N
    14727   PixelLayout?                                  N
    14728   AlphaSampleDepth                              N
    14729   Palette?                                      N
    14730   PaletteLayout?                                N
    14731   ComponentDepth                                N
    14732   VideoCodingSchemeID?                          N
    14733   RoundedCaptureFilmFrameRate                   N
    14734   AudioAverageBitrate                           N
    14735   AudioFixedBitrateFlag                         N
    14736   CodingLawKind                                 N
    14737   AudioCodingSchemeID?                          N
    14738   LayerNumber                                   N
    14739   TimecodeTimebase                              N
    14740   RoundedTimecodeTimebase                       N
    14741   ComponentDataDefinition                       N
    14742   StreamData?                                   N
    14743   TimecodeStreamData?                           N
    14744   RecordedFormat                                N
    14745   TapeShellKind                                 N
    14746   TapeShellKind                                 N
    14747   TapeFormulation                               N
    14748   TapeFormulation                               N
    14749   TapeCapacity                                  N
    14750   TapeManufacturer                              N
    14751   TapeManufacturer                              N
    14752   TapeStock                                     N
    14753   TapeStock                                     N
    14754   TapeBatchNumber                               N
    14755   TapeBatchNumber                               N
    14756   PerforationsPerFrame                          N
    14757   PerforationsPerFrame                          N
    14758   FilmFormatName                                N
    14759   FilmFormatName?                               N
    14760   FilmStockKind                                 N
    14761   FilmStockManufacturerName                     N
    14762   FilmBatchNumber                               N
    14763   FilmBatchNumber                               N
    14764   FilmGauge?                                    N
    14765   EdgeCodeFilmGauge?                            N
    14766   ExposedAspectRatio                            N
    14767   ImageAlignmentOffset                          N
    14768   ImageStartOffset                              N
    14769   ImageEndOffset                                N
    14770   PaddingBits                                   N
    14771   FocalLength                                   N
    14772   SensorSize                                    N
    14773   FNumber                                       N
    14774   SensorTypeCode                                N
    14775   FieldOfViewHorizontal                         N
    14776   AnamorphicLensCharacteristic                  N
    14777   UniformDataFlag                               N
    14778   JPEGTableID?                                  N
    14779   AlphaTransparency                             N
    14780   GenerationID?                                 N
    14781   ApplicationSupplierName                       N
    14782   ApplicationSupplierName                       N
    14783   ApplicationName                               N
    14784   ApplicationName                               N
    14785   ApplicationVersionNumber                      N
    14786   ApplicationVersionString                      N
    14787   ApplicationVersionString                      N
    14788   ApplicationPlatform                           N
    14789   ApplicationPlatform                           N
    14790   ApplicationProductID?                         N
    14791   LinkedGenerationID?                           N
    14792   ContainerVersion                              N
    14793   ToolkitVersion                                N
    14794   Plug-InCategoryID?                            N
    14795   Plug-InPlatformID?                            N
    14796   MinimumSupportedPlatformVersion               N
    14797   MaximumSupportedPlatformVersion               N
    14798   Plug-InEngineID?                              N
    14799   MinimumSupportedEngineVersion                 N
    14800   MaximumSupportedEngineVersion                 N
    14801   Plug-InAPIID?                                 N
    14802   MinimumAPIVersion                             N
    14803   MaximumAPIVersion                             N
    14804   Software-OnlySupportFlag                      N
    14805   HardwareAcceleratorFlag                       N
    14806   Plug-InLocatorSet?                            N
    14807   AuthenticationFlag                            N
    14808   AssociatedMetadataDefinition?                 N
    14809   EventTrackEditRate                            N
    14810   DefaultFadeEditRate                           N
    14811   EditingEventComment                           N
    14812   EditingEventComment                           N
    14813   EditRate                                      N
    14814   OperationDefinitionID?                        N
    14815   Value?                                        N
    14816   EditHint?                                     N
    14817   OperationDataDefinition?                      N
    14818   OperationCategory?                            N
    14819   DisplayUnits                                  N
    14820   DisplayUnits                                  N
    14821   BypassOverride                                N
    14822   TimepointValue?                               N
    14823   BeginAnchor                                   N
    14824   BeginAnchor                                   N
    14825   EndAnchor                                     N
    14826   EndAnchor                                     N
    14827   FilmToVideoTransferDirection?                 N
    14828   FilmToVideoTransferKind?                      N
    14829   FilmToVideoTransferPhase?                     N
    14830   TeletextSubtitlesFlag                         N
    14831   SubtitleDatafileFlag                          N
    14832   ClosedCaptionSubtitlesFlag                    N
    14833   SampleIndex?                                  N
    14834   SourcePackageID?                              N
    14835   SourceTrackID                                 N
    14836   RelativeScope                                 N
    14837   RelativeTrack                                 N
    14838   ObjectClass?                                  N
    14839   EssenceContainerFormat?                       N
    14840   CodecDefinition?                              N
    14841   ParameterDefinition?                          N
    14842   Interpolation?                                N
    14843   ParameterDataType?                            N
    14844   CodecEssenceDescriptor?                       N
    14845   ContentStorage?                               N
    14846   Dictionary?                                   N
    14847   EssenceDescription?                           N
    14848   Sequence?                                     N
    14849   TransitionEffect?                             N
    14850   EffectRendering?                              N
    14851   InputSegment?                                 N
    14852   StillFrame?                                   N
    14853   Selected?                                     N
    14854   Annotation?                                   N
    14855   ManufacturerInformationObject?                N
    14856   CodecEssenceKinds?                            N
    14857   OperationParameters?                          N
    14858   DegradedEffects?                              N
    14859   Packages?                                     N
    14860   EssenceData?                                  N
    14861   OperationDefinitions?                         N
    14862   ParameterDefinitions?                         N
    14863   DataDefinitions?                              N
    14864   Plug-InDefinitions?                           N
    14865   CodecDefinitions?                             N
    14866   ContainerDefinitions?                         N
    14867   InterpolationDefinitions?                     N
    14868   AvailableRepresentations?                     N
    14869   InputSegments?                                N
    14870   EssenceLocators?                              N
    14871   IdentificationList?                           N
    14872   Tracks?                                       N
    14873   ControlPointList?                             N
    14874   PackageTracks?                                N
    14875   Alternates?                                   N
    14876   ComponentsInSequence?                         N
    14877   Parameters?                                   N
    14878   LinkedPackageID?                              N
    14879   ParentClass?                                  N
    14880   Properties?                                   N
    14881   IsConcrete                                    N
    14882   PropertyType?                                 N
    14883   LocalID                                       N
    14884   IsUniqueIdentifier                            N
    14885   ClassDefinitions?                             N
    14886   TypeDefinitions?                              N
    14887   TargetClassOfStrongReference?                 N
    14888   TargetClassOfWeakReference?                   N
    14889   EnumerationUnderlyingIntegerType?             N
    14890   FixedArrayElementType?                        N
    14891   VariableArrayElementType?                     N
    14892   SetElementType?                               N
    14893   StringElementType?                            N
    14894   StreamElementType?                            N
    14895   MemberTypes?                                  N
    14896   RenamedType?                                  N
    14897   DictionaryIdentifier?                         N
    14898   DictionaryDescription                         N
    14899   DictionaryDescription                         N
    14900   BlockContinuityCount                          N
    14901   StreamPositionIndicator                       N
    14902   Origin                                        N
    14903   StartTimeRelativeToReference                  N
    14904   StartTimecode                                 N
    14905   CutPoint                                      N
    14906   EventStart                                    N
    14907   ControlPointTime                              N
    14908   CreateDate                                    N
    14909   ModifyDate                                    N
    14910   ContainerLastModifyDate                       N
    14911   PackageLastModifyDate                         N
    14912   Duration                                      N
    14913   DefaultFadeDuration                           N
    14914   Fade-InDuration                               N
    14915   Fade-OutDuration                              N
    14916   TapeFormat?                                   N
    14917   OrganizationID                                N
    14918   GlobalNumber                                  N
    14919   DeviceIDKind                                  N
    14920   DeviceKind                                    N
    14921   DeviceKindCode                                N
    14922   PlatformDesignation                           N
    14923   PlatformModel                                 N
    14924   PlatformSerialNumber                          N
    14925   LocalTargetID                                 N
    14926   MagneticDiskNumber                            N
    14927   OpticalDiscNumber                             N
    14928   StreamID                                      N
    14929   TransportStreamID                             N
    14930   OrganizationalProgramNumber                   N
    14931   OrganizationalProgramNumber                   N
    14932   ItemDesignatorID?                             N
    14933   LocalFilePath                                 N
    14934   TitleKind                                     N
    14935   MainTitle                                     N
    14936   SecondaryTitle                                N
    14937   SeriesNumber                                  N
    14938   EpisodeNumber                                 N
    14939   SceneNumber                                   N
    14940   VersionTitle                                  N
    14941   MissionID                                     N
    14942   MissionID                                     N
    14943   RecordingLabelName                            N
    14944   RecordingLabelName                            N
    14945   CollectionName                                N
    14946   CollectionName                                N
    14947   OriginCode                                    N
    14948   MainCatalogNumber                             N
    14949   CatalogPrefixNumber                           N
    14950   SideNumber                                    N
    14951   RecordedTrackNumber                           N
    14952   SeriesinaSeriesGroupCount                     N
    14953   ProgrammingGroupKind                          N
    14954   PurchasingOrganizationName                    N
    14955   SalesContractNumber                           N
    14956   PurchasingDepartment                          N
    14957   ContractType                                  N
    14958   ContractTypeCode                              N
    14959   ContractClauseDescription                     N
    14960   ContractLineCode                              N
    14961   ContractLineName                              N
    14962   ContractTermsOfBusiness                       N
    14963   ContractInstallmentPercentage                 N
    14964   Jurisdiction                                  N
    14965   CopyrightStatus                               N
    14966   CopyrightOwnerName                            N
    14967   IntellectualPropertyDescription               N
    14968   IntellectualPropertyRights                    N
    14969   Rightsholder                                  N
    14970   RightsManagementAuthority                     N
    14971   RightsConditionDescription                    N
    14972   RightsConditionDescription                    N
    14973   CurrencyName                                  N
    14974   TotalPayment                                  N
    14975   PayeeAccountName                              N
    14976   PayeeAccountNumber                            N
    14977   PayeeAccountSortCode                          N
    14978   TotalIncome                                   N
    14979   PayerAccountName                              N
    14980   PayerAccountNumber                            N
    14981   PayerAccountSortCode                          N
    14982   SecurityClassification                        N
    14983   SecurityClassificationCaveats                 N
    14984   ClassifiedBy                                  N
    14985   ClassificationReason                          N
    14986   DeclassificationDate                          N
    14987   DerivedFrom                                   N
    14988   ClassificationComment                         N
    14989   ClassificationAndMarkingSystem                N
    14990   BroadcastOrganizationName                     N
    14991   BroadcastServiceName                          N
    14992   BroadcastMediumCode                           N
    14993   BroadcastRegion                               N
    14994   NatureOfPersonality                           N
    14995   ContributionStatus                            N
    14996   SupportorAdministrationStatus                 N
    14997   OrganizationKind                              N
    14998   ProductionOrganizationRole                    N
    14999   SupportOrganizationRole                       N
    15000   JobFunctionName                               N
    15001   JobFunctionCode                               N
    15002   RoleName                                      N
    15003   JobTitle                                      N
    15004   JobTitle                                      N
    15005   ContactKind                                   N
    15006   ContactDepartmentName                         N
    15007   FamilyName                                    N
    15008   FirstGivenName                                N
    15009   SecondGivenName                               N
    15010   ThirdGivenName                                N
    15011   PersonDescription                             N
    15012   PersonDescription                             N
    15013   MainName                                      N
    15014   SupplementaryName                             N
    15015   OrganizationMainName                          N
    15016   SupplementaryOrganizationName                 N
    15017   RegionCode                                    N
    15018   CountryName                                   N
    15019   CountryName                                   N
    15020   RegionName                                    N
    15021   RegionName                                    N
    15022   LanguageName                                  N
    15023   LanguageName                                  N
    15024   TerminatingFillerData                         N
    15025   TimingBiasCorrection                          N
    15026   TimingBiasCorrectionDescription               N
    15027   Genre                                         N
    15028   TargetAudience                                N
    15029   ProgramMaterialClassificationCode             N
    15030   Theme                                         N
    15031   SubjectName                                   N
    15032   SubjectName                                   N
    15033   Keywords                                      N
    15034   KeyFrameSampleCount                           N
    15035   Abstract                                      N
    15036   Purpose                                       N
    15037   Description                                   N
    15038   ColorDescriptor                               N
    15039   FormatDescriptor                              N
    15040   IntentDescriptor                              N
    15041   IntentDescriptor                              N
    15042   TextualDescriptionKind                        N
    15043   TextualDescriptionKind                        N
    15044   FestivalName                                  N
    15045   ObjectDescriptionCode                         N
    15046   DescriptionKind                               N
    15047   DescriptionKind                               N
    15048   DescriptiveComment                            N
    15049   DescriptiveComment                            N
    15050   ContextDescription                            N
    15051   ComputedKeywords                              N
    15052   ObjectIdentificationConfidence                N
    15053   ObjectHorizontalAverageDimension              N
    15054   ObjectVerticalAverageDimension                N
    15055   ObjectAreaDimension                           N
    15056   HorizontalActionSafePercentage                N
    15057   VerticalActionSafePercentage                  N
    15058   HorizontalGraphicsSafePercentage              N
    15059   VerticalGraphicsSafePercentage                N
    15060   PerceivedDisplayFormatName                    N
    15061   PerceivedDisplayFormatCode                    N
    15062   VideoColorKind                                N
    15063   PictureDisplayRate                            N
    15064   VideoAverageBitrate                           N
    15065   VideoFixedBitrate                             N
    15066   DigitalVideoFileFormat                        N
    15067   CodingLawName                                 N
    15068   AudioCodingSchemeCode                         N
    15069   AudioCodingSchemeName                         N
    15070   DigitalEncodingBitrate                        N
    15071   DataEssenceCodingID?                          N
    15072   StorageKind                                   N
    15073   StorageKind                                   N
    15074   StorageKindCode                               N
    15075   TapePartitionCapacity                         N
    15076   DiscPartitionCapacity                         N
    15077   FocalLength                                   N
    15078   FieldOfViewHorizontal                         N
    15079   FieldOfViewVertical                           N
    15080   SystemNameOrNumber                            N
    15081   LogoFlag                                      N
    15082   GraphicKind                                   N
    15083   GraphicUsageKind                              N
    15084   SignatureTuneFlag                             N
    15085   BackgroundMusicFlag                           N
    15086   ProductionScriptReference                     N
    15087   ProductionScriptReference                     N
    15088   TranscriptReference                           N
    15089   TranscriptReference                           N
    15090   HorizontalDatum                               N
    15091   VerticalDatum                                 N
    15092   DeviceLatitude                                N
    15093   DeviceLongitude                               N
    15094   FrameCenterLatitude                           N
    15095   FrameCenterLongitude                          N
    15096   CornerLatitudePoint1                          N
    15097   CornerLatitudePoint1                          N
    15098   CornerLatitudePoint2                          N
    15099   CornerLatitudePoint2                          N
    15100   CornerLatitudePoint3                          N
    15101   CornerLatitudePoint3                          N
    15102   CornerLatitudePoint4                          N
    15103   CornerLatitudePoint4                          N
    15104   CornerLongitudePoint1                         N
    15105   CornerLongitudePoint1                         N
    15106   CornerLongitudePoint2                         N
    15107   CornerLongitudePoint2                         N
    15108   CornerLongitudePoint3                         N
    15109   CornerLongitudePoint3                         N
    15110   CornerLongitudePoint4                         N
    15111   CornerLongitudePoint4                         N
    15112   SubjectDistance                               N
    15113   PlaceKeyword                                  N
    15114   ObjectCountryCode                             N
    15115   ObjectCountryCodeMethod                       N
    15116   CountryCodeMethod                             N
    15117   Non-USClassifyingCountryCode                  N
    15118   ReleasableCountryCode                         N
    15119   ObjectRegionName                              N
    15120   ShootingRegionName                            N
    15121   SettingRegionName                             N
    15122   CopyrightLicenseRegionName                    N
    15123   IntellectualPropertyLicenseRegionName         N
    15124   RoomNumber                                    N
    15125   StreetNumber                                  N
    15126   StreetName                                    N
    15127   PostalTown                                    N
    15128   CityName                                      N
    15129   StateOrProvinceOrCountyName                   N
    15130   PostalCode                                    N
    15131   CountryName                                   N
    15132   SettingRoomNumber                             N
    15133   SettingStreetNumberOrBuildingName             N
    15134   SettingStreetName                             N
    15135   SettingTownName                               N
    15136   SettingCityName                               N
    15137   SettingStateOrProvinceOrCountyName            N
    15138   SettingPostalCode                             N
    15139   SettingCountryName                            N
    15140   TelephoneNumber                               N
    15141   FaxNumber                                     N
    15142   E-MailAddress                                 N
    15143   SettingDescription                            N
    15144   POSIXMicroseconds                             N
    15145   EventElapsedTimeToStart                       N
    15146   EventElapsedTimeToEnd                         N
    15147   OrganizationIDKind                            N
    15148   OrganizationIDKind                            N
    15149   SMPTEUL?                                      N
    15150   EssenceContainerArray?                        N
    15151   EssenceStreamID                               N
    15152   IndexStreamID                                 N
    15153   WorkingTitle                                  N
    15154   WorkingTitle                                  N
    15155   OriginalTitle                                 N
    15156   OriginalTitle                                 N
    15157   ClipNumber                                    N
    15158   ClipNumber                                    N
    15159   DescriptiveMetadataTrackIDs                   N
    15160   IdentifierKind                                N
    15161   IdentifierValue                               N
    15162   OrganizationCode                              N
    15163   OrganizationCode                              N
    15164   SupplierIdentificationKind                    N
    15165   SupplierIdentificationValue                   N
    15166   SupplierAccountNumber                         N
    15167   SupplierAccountName                           N
    15168   SupplierAccountName                           N
    15169   EpisodeStartNumber                            N
    15170   EpisodeEndNumber                              N
    15171   PurchaserIdentificationKind                   N
    15172   PurchaserIdentificationValue                  N
    15173   PurchaserAccountNumber                        N
    15174   PurchaserAccountName                          N
    15175   PurchaserAccountName                          N
    15176   ContractType                                  N
    15177   ContractClauseDescription                     N
    15178   ContractLineName                              N
    15179   ContractTermsOfBusiness                       N
    15180   Jurisdiction                                  N
    15181   TotalCurrencyAmount                           N
    15182   InstallmentNumber                             N
    15183   IdentifierIssuingAuthority                    N
    15184   PublishingOrganizationName                    N
    15185   PublishingOrganizationName                    N
    15186   PublishingServiceName                         N
    15187   PublishingServiceName                         N
    15188   PublishingMediumName                          N
    15189   PublishingMediumName                          N
    15190   PublishingRegionName                          N
    15191   PublishingRegionName                          N
    15192   Salutation                                    N
    15193   HonorsAndQualifications                       N
    15194   OtherGivenNames                               N
    15195   OtherGivenNames                               N
    15196   AlternateName                                 N
    15197   AlternateName                                 N
    15198   ISO639TextLanguageCode                        N
    15199   ISO639CaptionsLanguageCode                    N
    15200   PrimarySpokenLanguageCode                     N
    15201   SecondarySpokenLanguageCode                   N
    15202   PrimaryOriginalLanguageCode                   N
    15203   SecondaryOriginalLanguageCode                 N
    15204   MajorVersion                                  N
    15205   MinorVersion                                  N
    15206   SectorSize                                    N
    15207   ElementLength                                 N
    15208   ThesaurusName                                 N
    15209   Cue-InWords                                   N
    15210   Cue-OutWords                                  N
    15211   KeypointKind                                  N
    15212   KeypointKind                                  N
    15213   KeypointValue                                 N
    15214   KeypointValue                                 N
    15215   FestivalName                                  N
    15216   AwardName                                     N
    15217   AwardName                                     N
    15218   AwardCategory                                 N
    15219   AwardCategory                                 N
    15220   SlateInformation                              N
    15221   LockedIndicator                               N
    15222   BitsPerAudioSample                            N
    15223   CaptionKind                                   N
    15224   CaptionKind                                   N
    15225   SliceCount                                    N
    15226   SliceNumber                                   N
    15227   ElementDelta                                  N
    15228   PositionTableIndexing                         N
    15229   SliceOffsetList?                              N
    15230   PosTableArray?                                N
    15231   StreamOffset                                  N
    15232   EditUnitFlags                                 N
    15233   TemporalOffset                                N
    15234   AnchorOffset                                  N
    15235   EditUnitLength                                N
    15236   HeaderByteCount                               N
    15237   IndexByteCount                                N
    15238   PackLength                                    N
    15239   IntegrationIndication                         N
    15240   EventIndication                               N
    15241   GraphicUsageKind                              N
    15242   PrimaryPackage?                               N
    15243   DescriptiveMetadataSets?                      N
    15244   DescriptiveMetadataSetReferences?             N
    15245   FileDescriptors?                              N
    15246   StreamPositionIndicator                       N
    15247   StreamPositionIndicator                       N
    15248   StreamPositionIndicator                       N
    15249   OffsetToMetadata                              N
    15250   OffsetToMetadata                              N
    15251   OffsetToIndexTable                            N
    15252   OffsetToIndexTable                            N
    15253   ByteOffset                                    N
    15254   ReversePlay                                   N
    15255   FirstNumberInSequence                         N
    15256   FirstNumberInSequence                         N
    15257   PreviousNumberInSequence                      N
    15258   PreviousNumberInSequence                      N
    15259   CurrentNumberInSequence                       N
    15260   CurrentNumberInSequence                       N
    15261   NextNumberInSequence                          N
    15262   NextNumberInSequence                          N
    15263   LastNumberInSequence                          N
    15264   LastNumberInSequence                          N
    15265   CentralTelephoneNumber                        N
    15266   MobileTelephoneNumber                         N
    15267   URL                                           N
    15268   LocationDescription                           N
    15269   LocationDescription                           N
    15270   LocationKind                                  N
    15271   LocationKind                                  N
    15272   UTCEventStartDateTime                         N
    15273   LocalEventStartDateTime                       N
    15274   UTCEventEndDateTime                           N
    15275   LocalEventEndDateTime                         N
    15276   KeyTimePoint                                  N
    15277   TimePeriodName                                N
    15278   SettingDateTime                               N
    15279   ContractDateTime                              N
    15280   RightsStartDateTime                           N
    15281   RightsStopDateTime                            N
    15282   PaymentDueDateTime                            N
    15283   ClipID                                        N
    15284   DeviceKind                                    N
    15285   DeviceAssetNumber                             N
    15286   IdentificationUL?                             N
    15287   OperationalPatternUL?                         N
    15288   EssenceContainers?                            N
    15289   DescriptiveMetadataSchemes?                   N
    15290   ProjectName                                   N
    15291   ProjectName                                   N
    15292   LocalTagValue                                 N
    15293   LocalTagUniqueID?                             N
    15294   BrandMainTitle                                N
    15295   BrandMainTitle                                N
    15296   BrandOriginalTitle                            N
    15297   BrandOriginalTitle                            N
    15298   FrameworkTitle                                N
    15299   FrameworkTitle                                N
    15300   SourceTrackIDs                                N
    15301   ShotTrackIDs                                  N
    15302   ProgrammingGroupKind                          N
    15303   ProgrammingGroupTitle                         N
    15304   ProgrammingGroupTitle                         N
    15305   IdentifierIssuingAuthority                    N
    15306   LinkingName                                   N
    15307   LinkingName                                   N
    15308   NameSuffix                                    N
    15309   NameSuffix                                    N
    15310   FormerFamilyName                              N
    15311   FormerFamilyName                              N
    15312   Nationality                                   N
    15313   Nationality                                   N
    15314   Citizenship                                   N
    15315   Citizenship                                   N
    15316   FrameworkTextLanguageCode                     N
    15317   KAGSize                                       N
    15318   ReversedByteOrder                             N
    15319   ItemName                                      N
    15320   ItemName                                      N
    15321   ItemValue                                     N
    15322   ItemValue                                     N
    15323   XMLDocumentText?                              N
    15324   XMLDocumentText                               N
    15325   XMLDocumentText                               N
    15326   XMLDocumentText?                              N
    15327   FrameworkThesaurusName                        N
    15328   FrameworkThesaurusName                        N
    15329   GroupSynopsis                                 N
    15330   GroupSynopsis                                 N
    15331   AnnotationSynopsis                            N
    15332   AnnotationSynopsis                            N
    15333   AnnotationDescription                         N
    15334   AnnotationDescription                         N
    15335   ScriptingKind                                 N
    15336   ScriptingKind                                 N
    15337   ScriptingText                                 N
    15338   ScriptingText                                 N
    15339   ShotDescription                               N
    15340   ShotDescription                               N
    15341   AnnotationKind                                N
    15342   AnnotationKind                                N
    15343   RelatedMaterialDescription                    N
    15344   RelatedMaterialDescription                    N
    15345   ClipKind                                      N
    15346   DeviceUsageDescription                        N
    15347   DeviceUsageDescription                        N
    15348   DisplayF2Offset                               N
    15349   StoredF2Offset                                N
    15350   ActiveFormatDescriptor                        N
    15351   LineNumber                                    N
    15352   ScanningDirection                             N
    15353   ComponentMaximumRef                           N
    15354   ComponentMinimumRef                           N
    15355   AlphaMaximumRef                               N
    15356   AlphaMinimumRef                               N
    15357   VideoPayloadIdentifier                        N
    15358   VideoPayloadIdentifier2002                    N
    15359   SingleSequenceFlag                            N
    15360   ConstantBPictureFlag                          N
    15361   CodedContentScanningKind                      N
    15362   LowDelayIndicator                             N
    15363   ClosedGOPIndicator                            N
    15364   IdenticalGOPIndicator                         N
    15365   MaximumGOPSize                                N
    15366   MaximumBPictureCount                          N
    15367   ProfileAndLevel                               N
    15368   Bitrate                                       N
    15369   ChannelCount                                  N
    15370   AudioSampleRate                               N
    15371   PeakEnvelope                                  N
    15372   PeakEnvelopeData?                             N
    15373   BlockAlign                                    N
    15374   SequenceOffset                                N
    15375   BlockStartOffset                              N
    15376   FileSecurityReport                            N
    15377   FileSecurityWave                              N
    15378   AverageBytesPerSecond                         N
    15379   AuxiliaryBitsMode                             N
    15380   ChannelStatusMode                             N
    15381   FixedChannelStatusData?                       N
    15382   UserDataMode?                                 N
    15383   FixedUserData?                                N
    15384   Emphasis                                      N
    15385   BextCodingHistory                             N
    15386   BextCodingHistory                             N
    15387   QltyBasicData                                 N
    15388   QltyBasicData                                 N
    15389   QltyStartOfModulation                         N
    15390   QltyStartOfModulation                         N
    15391   QltyQualityEvent                              N
    15392   QltyQualityEvent                              N
    15393   QltyEndOfModulation                           N
    15394   QltyEndOfModulation                           N
    15395   QltyQualityParameter                          N
    15396   QltyQualityParameter                          N
    15397   QltyOperatorComment                           N
    15398   QltyOperatorComment                           N
    15399   QltyCueSheet                                  N
    15400   QltyCueSheet                                  N
    15401   DialNorm                                      N
    15402   DataEssenceCoding                             N
    15403   DateTimeRate                                  N
    15404   DateTimeDropFrameFlag                         N
    15405   DateTimeEmbeddedFlag                          N
    15406   DateTimeKind?                                 N
    15407   DeltaEntryArray?                              N
    15408   PositionTableCount                            N
    15409   PositionTable?                                N
    15410   IndexEntryArray?                              N
    15411   SignalStandard                                N
    15412   DataDefinition?                               N
    15413   RecordedFormat                                N
    15414   GenerationCopyNumber                          N
    15415   GenerationCloneNumber                         N
    15416   ThemeMusicFlag                                N
    15417   InsertMusicFlag                               N
    15418   IndexEditRate                                 N
    15419   LinkedTrackID                                 N
    15420   EssenceContainerFormat?                       N
    15421   CodecDefinition?                              N
    15422   DescriptiveMetadataFramework?                 N
    15423   GroupSet?                                     N
    15424   BankDetailsSet?                               N
    15425   ImageFormatSet?                               N
    15426   ProcessingSet?                                N
    15427   ProjectSet?                                   N
    15428   ContactsListSet?                              N
    15429   AnnotationCueWordsSet?                        N
    15430   ShotCueWordsSet?                              N
    15431   AwardParticipantSets?                         N
    15432   ContractParticipantSets?                      N
    15433   PersonSets?                                   N
    15434   ParticipantOrganizationSets?                  N
    15435   PersonOrganizationSets?                       N
    15436   LocationSets?                                 N
    15437   TitlesSets?                                   N
    15438   GroupSets?                                    N
    15439   IdentificationSets?                           N
    15440   EpisodicItemSets?                             N
    15441   BrandingSets?                                 N
    15442   EventSets?                                    N
    15443   PublicationSets?                              N
    15444   AwardSets?                                    N
    15445   CaptionDescriptionSets?                       N
    15446   AnnotationSets?                               N
    15447   ProductionSettingPeriodSets?                  N
    15448   SceneSettingPeriodSets?                       N
    15449   ScriptingSets?                                N
    15450   ClassificationSets?                           N
    15451   SceneShotSets?                                N
    15452   ClipShotSets?                                 N
    15453   KeyPointSets?                                 N
    15454   ShotParticipantRoleSets?                      N
    15455   ShotPersonSets?                               N
    15456   OrganizationSets?                             N
    15457   ShotLocationSets?                             N
    15458   AddressSets?                                  N
    15459   CommunicationSets?                            N
    15460   ContractSets?                                 N
    15461   RightsSets?                                   N
    15462   PaymentsSets?                                 N
    15463   DeviceParametersSets?                         N
    15464   ClassificationNameValueSets?                  N
    15465   ContactNameValueSets?                         N
    15466   DeviceParameterNameValueSets?                 N
    15467   MetadataServerLocators?                       N
    15468   RelatedMaterialLocators?                      N
    15469   LocalTagEntries?                              N
    15470   TotalNumberInSequence                         N
    15471   RoomOrSuiteName                               N
    15472   RoomOrSuiteName                               N
    15473   BuildingName                                  N
    15474   BuildingName                                  N
    15475   URL                                           N
    15476   LocalFestivalDateTime                         N
    15477   ShotStartPosition                             N
    15478   IndexingStartPosition                         N
    15479   EventOrigin                                   N
    15480   SettingPeriodDescription                      N
    15481   SettingPeriodDescription                      N
    15482   IndexDuration                                 N
    15483   ShotDuration                                  N
    15484   ExtendedClipID                                N
    15485   ClipIDArray?                                  N
    15486   ExtendedClipIDArray?                          N
    15487   TrackNumberBatch                              N
    15488   ExtendedTextLanguageCode                      N
    15489   ExtendedCaptionsLanguageCode                  N
    15490   FrameworkExtendedTextLanguageCode             N
    15491   PrimaryExtendedSpokenLanguageCode             N
    15492   SecondaryExtendedSpokenLanguageCode           N
    15493   OriginalExtendedSpokenPrimaryLanguageCode     N
    15494   SecondaryOriginalExtendedSpokenLanguageCode   N
    15495   KLVMetadataSequence?                          N
    15496   PackageAttributes?                            N
    15497   ComponentAttributes?                          N
    15498   MPEG7BiMDecoderInitFrame1?                    N
    15499   MPEG7BiMDecoderInitFrame2?                    N
    15500   MPEG7BiMDecoderInitFrame3?                    N
    15501   MPEG7BiMDecoderInitFrame4?                    N
    15502   MPEG7BiMDecoderInitFrame5?                    N
    15503   MPEG7BiMDecoderInitFrame6?                    N
    15504   MPEG7BiMDecoderInitFrame7?                    N
    15505   MPEG7BiMDecoderInitFrame8?                    N
    15506   MPEG7BiMAccessUnitFrame1?                     N
    15507   MPEG7BiMAccessUnitFrame2?                     N
    15508   MPEG7BiMAccessUnitFrame3?                     N
    15509   MPEG7BiMAccessUnitFrame4?                     N
    15510   MPEG7BiMAccessUnitFrame5?                     N
    15511   MPEG7BiMAccessUnitFrame6?                     N
    15512   MPEG7BiMAccessUnitFrame7?                     N
    15513   MPEG7BiMAccessUnitFrame8?                     N
    15514   ComponentUserComments?                        N
    15515   ShotCommentKind                               N
    15516   ShotComment                                   N
    15517   SensorMode                                    N
    15518   ChannelAssignment?                            N
    15519   ContentPackageIndexArray?                     N
    15520   VideoIndexArray?                              N
    15521   ApproximateImageContainerSize                 N
    15522   MetadataEncodingSchemeCode                    N
    15523   MIMEMediaType                                 N
    15524   MIMEMediaType                                 N
    15525   FieldOfViewVerticalFP                         N
    15526   PackageUsageKind?                             N
    15527   ChannelID                                     N
    15528   ChannelIDs                                    N
    15529   KLVDataType?                                  N
    15530   KLVDataParentProperties?                      N
    15531   TaggedValueParentProperties?                  N
    15532   AnnotationParticipantSets?                    N
    15533   KLVDataDefinitions?                           N
    15534   TaggedValueDefinitions?                       N
    15535   AddressNameValueSets?                         N
    15536   NMEADocumentText                              N
    15537   PlatformRollAngle                             N
    15538   PlatformPitchAngle                            N
    15539   PlatformHeadingAngle                          N
    15540   AddressLine                                   N
    15541   AddressLine                                   N
    15542   PlaceName                                     N
    15543   PlaceName                                     N
    15544   GeographicalCoordinates?                      N
    15545   AstronomicalBodyName                          N
    15546   AstronomicalBodyName                          N
    15547   TimecodeArray?                                N
    15548   MarkIn                                        N
    15549   UserPosition                                  N
    15550   MarkOut                                       N
    15551   ClipCreationDateTime                          N
    15552   VideoClipDuration                             N
    15553   ParticipantID?                                N
    15554   ContactID?                                    N
    15555   DefaultNamespaceURI                           N
    15556   DefaultNamespaceURI                           N
    15557   NamespaceURI                                  N
    15558   NamespaceURI                                  N
    15559   NamespaceURIs                                 N
    15560   NamespaceURIs                                 N
    15561   HTMLDOCTYPE                                   N
    15562   HTMLDOCTYPE                                   N
    15563   NamespacePrefix                               N
    15564   NamespacePrefix                               N
    15565   NamespacePrefixes                             N
    15566   NamespacePrefixes                             N
    15567   RightsComment                                 N
    15568   RightsComment                                 N
    15569   NominationCategory                            N
    15570   NominationCategory                            N
    15571   PeakEnvelopeVersion                           N
    15572   PeakEnvelopeFormat                            N
    15573   PointsPerPeakValue                            N
    15574   PeakEnvelopeBlockSize                         N
    15575   PeakChannelCount                              N
    15576   PeakFrameCount                                N
    15577   PeakOfPeaksPosition                           N
    15578   PeakEnvelopeTimestamp                         N
    15579   PeakEnvelopeData?                             N
    15580   RIFFChunkID                                   N
    15581   RIFFChunkLength                               N
    15582   RIFFChunkData?                                N
    15583   MIMECharSet                                   N
    15584   MIMECharSet                                   N
    15585   MIMEEncoding                                  N
    15586   MIMEEncoding                                  N
    15587   MonoSourceTrackIDs                            N
    15588   CompositionRendering?                         N
    15589   CaptionsDescriptionParticipantSets?           N
    15590   EventAnnotationSets?                          N
    15591   ScriptingLocators?                            N
    15592   UnknownBWFChunks?                             N
    15593   CryptographicContextID?                       N
    15594   PlatformDesignation                           N
    15595   LocalTargetID                                 N
    15596   NITFLayerTargetID                             N
    15597   NITFLayerTargetID                             N
    15598   PackageName                                   N
    15599   RP217DataStreamPID                            N
    15600   RP217VideoStreamPID                           N
    15601   SourceOrganization                            N
    15602   OriginalProducerName                          N
    15603   SecurityClassification                        N
    15604   SecurityClassificationCaveats                 N
    15605   ClassificationComment                         N
    15606   CipherAlgorithm?                              N
    15607   CryptographicKeyID?                           N
    15608   EncryptedSourceValue?                         N
    15609   MICAlgorithm?                                 N
    15610   MIC?                                          N
    15611   ISO639-1LanguageCode                          N
    15612   JFIFMarkerDescription                         N
    15613   JFIFMarkerDescription                         N
    15614   HTMLMetaDescription                           N
    15615   HTMLMetaDescription                           N
    15616   MetadataItemName                              N
    15617   ColorPrimaries                                N
    15618   ColorPrimaries?                               N
    15619   ProductFormat                                 N
    15620   ProductFormat                                 N
    15621   SourceLength                                  N
    15622   ImageSourceDeviceKind                         N
    15623   SourceContainerFormat?                        N
    15624   SourceKey?                                    N
    15625   DynamicSourcePackageID?                       N
    15626   DynamicSourceTrackIDs                         N
    15627   SourceIndex?                                  N
    15628   SourceSpecies?                                N
    15629   SourceValue?                                  N
    15630   CryptographicContextObject?                   N
    15631   Sub-descriptors?                              N
    15632   EncryptedTrackFileID?                         N
    15633   CryptographicContextLink?                     N
    15634   PlaintextOffset                               N
    15635   TripletSequenceNumber                         N
    15636   BoundingRectangle?                            N
    15637   GeographicLocation?                           N
    15638   GeographicPolygonCoordinates?                 N
    15639   GeographicAreaNorthwest?                      N
    15640   GeographicAreaSoutheast?                      N
    15641   GeographicAreaSourceDatum                     N
    15642   GeographicPolygonSourceDatum                  N
    15643   CountryCodeMethod                             N
    15644   ClassifyingCountryCode                        N
    15645   ReleasableCountryCode                         N
    15646   UTCStartDateTime                              N
    15647   UTCInstantDateTime                            N
    15648   UTCInstantDateTime                            N
    15649   UTCLastModifyDate                             N
    15650   ToleranceMode?                                N
    15651   ToleranceWindow?                              N
    15652   ToleranceInterpolationMethod?                 N
    15653   VBILineCount                                  N
    15654   StoredVBILineNumber                           N
    15655   VBIWrappingType                               N
    15656   VBIPayloadSampleCount                         N
    15657   VBIPayloadByteArray                           N
    15658   ANCPacketCount                                N
    15659   StoredANCLineNumber                           N
    15660   ANCWrappingType                               N
    15661   ANCPayloadSampleCount                         N
    15662   ANCPayloadByteArray                           N
    15663   VBIPayloadSampleCoding                        N
    15664   ANCPayloadSampleCoding                        N
    15665   Rsiz                                          N
    15666   Xsiz                                          N
    15667   Ysiz                                          N
    15668   XOsiz                                         N
    15669   YOsiz                                         N
    15670   XTsiz                                         N
    15671   YTsiz                                         N
    15672   XTOsiz                                        N
    15673   YTOsiz                                        N
    15674   Csiz                                          N
    15675   PictureComponentSizing?                       N
    15676   CodingStyleDefault?                           N
    15677   QuantizationDefault?                          N
    15678   MPEGAudioBitrate                              N
    15679   CBEStartOffset                                N
    15680   VBEEndOffset                                  N
    15681   SubDescriptor?                                N
    15682   SubDescriptors?                               N
    15683   RootMetaDictionary?                           N
    15684   RootPreface?                                  N
    15685   RootObjectDirectory?                          N
    15686   RootFormatVersion                             N
    15687   FrameCenterElevation                          N
    15688   PackageMarkInPosition                         N
    15689   PackageMarkOutPosition                        N
    15690   Ad-ID?                                        N
    15691   ResourceID?                                   N
    15692   AncillaryResourceID?                          N
    15693   ApplicationSchemeBatch?                       N
    15694   RegisterKind?                                 N
    15695   RegisterVersion                               N
    15696   RegisterEditorName                            N
    15697   RegisterStatusKind?                           N
    15698   RegisterItemName                              N
    15699   RegisterItemDefinition                        N
    15700   RegisterItemSymbol?                           N
    15701   RegisterItemDefiningDocumentName              N
    15702   RegisterItemUL?                               N
    15703   RegisterItemNotes                             N
    15704   RegisterItemIntroductionVersion               N
    15705   RegisterItemHierarchyLevel                    N
    15706   RegisterEntryStatus?                          N
    15707   RegisterAction                                N
    15708   RegisterApproverName                          N
    15709   RegisterCreationTime                          N
    15710   RegistrantName                                N
    15711   RegisterItemOriginatorName                    N
    15712   RegisterUserName                              N
    15713   RegisterUserTime                              N
    15714   RegisterAdministrationNotes                   N
    15715   AFDAndBarData?                                N
    15716   PanScanInformation?                           N
    15717   VC-1InitializationMetadata?                   N
    15718   VC-1SingleSequence                            N
    15719   VC-1CodedContentType                          N
    15720   VC-1IdenticalGOP                              N
    15721   VC-1MaximumGOP                                N
    15722   VC-1BPictureCount                             N
    15723   VC-1AverageBitrate                            N
    15724   VC-1MaximumBitrate                            N
    15725   VC-1Profile                                   N
    15726   VC-1Level                                     N
    15727   LinkedTimecodeTrackID?                        N
    15728   SMPTE337MDataStreamNumber                     N
    15729   ApplicationScheme?                            N
    15730   DescriptiveMetadataScheme?                    N
    15731   UCSEncoding                                   N
    15732   LinkedApplicationPlug-InInstanceID?           N
    15733   LinkedDescriptiveFrameworkPlug-InID?          N
    15734   ApplicationPlug-InInstanceID?                 N
    15735   DescriptiveMetadataPlug-InID?                 N
    15736   ApplicationEnvironmentID                      N
    15737   DescriptiveMetadataApplicationEnvironmentID   N
    15738   LinkedDescriptiveObjectPlug-InID?             N
    15739   TimebaseReferenceTrackID                      N
    15740   ObjectClassDefinition?                        N
    15741   ApplicationPlug-InBatch?                      N
    15742   PackageMarker?                                N
    15743   PackageTimelineMarkerRef?                     N
    15744   RegisterAdministrationObject?                 N
    15745   RegisterEntryAdministrationObject?            N
    15746   GenericPayloads?                              N
    15747   RegisterEntryArray?                           N
    15748   RegisterAdministrationArray?                  N
    15749   ApplicationInformationArray?                  N
    15750   RegisterChildEntryArray?                      N
    15751   RegisterReleaseDateTime                       N
    15752   RegisterItemStatusChangeDateTime              N
     27701  AAFManufacturerID?                            no
     27702  AES3PCMDescriptor                             MXF
     27703  AFDAndBarData?                                no
     27704  AGICOAID?                                     no
     27705  AICI?                                         no
     27706  AIFCSummary?                                  no
     27707  ANCPacketCount                                no
     27708  ANCPayloadByteArray                           no
     27709  ANCPayloadSampleCoding                        no
     27710  ANCPayloadSampleCount                         no
     27711  ANCWrappingType                               no
     27712  Abstract                                      no
     27713  Abstract                                      no
     27714  AccountingReferenceNumber                     no
     27715  ActiveFormatDescriptor                        no
     27716  ActiveLinesperFrame                           no
     27717  ActiveSamplesperLine                          no
     27718  ActiveState                                   no
     27719  Ad-ID?                                        no
     27720  Address                                       MXF
     27721  AddressLine                                   no
     27722  AddressLine                                   no
     27723  AddressNameValueSets?                         no
     27724  AddressSets?                                  no
     27725  AdvertisingMaterialReference                  no
     27726  AestheticValue                                no
     27727  AlphaMaximumRef                               no
     27728  AlphaMinimumRef                               no
     27729  AlphaSampleDepth                              no
     27730  AlphaTransparency                             no
     27731  AlternateName                                 no
     27732  AlternateName                                 no
     27733  Alternates?                                   no
     27734  AnalogDataCodingKind                          no
     27735  AnalogMetadataCarrier                         no
     27736  AnalogMonitoringAndControlCodingKind          no
     27737  AnalogSystem                                  no
     27738  AnalogVideoSystemName                         no
     27739  AnalogVideoSystemName?                        no
     27740  AnamorphicLensCharacteristic                  no
     27741  AnchorOffset                                  no
     27742  AncillaryResourceID?                          no
     27743  AngleToNorth                                  no
     27744  AngularUnitKind                               no
     27745  Annotation?                                   no
     27746  Annotation                                    MXF
     27747  AnnotationCueWordsSet?                        no
     27748  AnnotationDescription                         no
     27749  AnnotationDescription                         no
     27750  AnnotationKind                                no
     27751  AnnotationKind                                no
     27752  AnnotationParticipantSets?                    no
     27753  AnnotationSets?                               no
     27754  AnnotationSynopsis                            no
     27755  AnnotationSynopsis                            no
     27756  ApplicationEnvironmentID                      no
     27757  ApplicationInformationArray?                  no
     27758  ApplicationName                               no
     27759  ApplicationName                               no
     27760  ApplicationPlatform                           no
     27761  ApplicationPlatform                           no
     27762  ApplicationPlug-InBatch?                      no
     27763  ApplicationPlug-InInstanceID?                 no
     27764  ApplicationProductID?                         no
     27765  ApplicationScheme?                            no
     27766  ApplicationSchemeBatch?                       no
     27767  ApplicationSupplierName                       no
     27768  ApplicationSupplierName                       no
     27769  ApplicationVersionNumber                      no
     27770  ApplicationVersionString                      no
     27771  ApplicationVersionString                      no
     27772  ApproximateImageContainerSize                 no
     27773  ArchiveID                                     no
     27774  AssetValue                                    no
     27775  AssignedCategoryName                          no
     27776  AssignedCategoryName                          no
     27777  AssignedCategoryValue                         no
     27778  AssignedCategoryValue                         no
     27779  AssociatedMetadataDefinition?                 no
     27780  AstronomicalBodyName                          no
     27781  AstronomicalBodyName                          no
     27782  AudienceAppreciation                          no
     27783  AudienceRating                                no
     27784  AudienceReach                                 no
     27785  AudienceShare                                 no
     27786  AudioAverageBitrate                           no
     27787  AudioCodingSchemeCode                         no
     27788  AudioCodingSchemeID?                          no
     27789  AudioCodingSchemeName                         no
     27790  AudioCompressionAlgorithm                     no
     27791  AudioDeviceKind                               no
     27792  AudioDeviceParameter                          no
     27793  AudioDeviceParameterSetting                   no
     27794  AudioEnhancementOrModificationDescription     no
     27795  AudioFirstMix-DownProcess                     no
     27796  AudioFixedBitrateFlag                         no
     27797  AudioMonoChannelCount                         no
     27798  AudioNoiseReductionAlgorithm                  no
     27799  AudioReferenceLevel                           no
     27800  AudioReferenceLevel                           no
     27801  AudioSampleRate                               no
     27802  AudioSampleRate                               no
     27803  AudioStereoChannelCount                       no
     27804  AudioWatermarkKind                            no
     27805  AuthenticationFlag                            no
     27806  AuxiliaryBitsMode                             no
     27807  AvailableRepresentations?                     no
     27808  AverageBytesPerSecond                         no
     27809  Award                                         MXF
     27810  AwardCategory                                 no
     27811  AwardCategory                                 no
     27812  AwardName                                     no
     27813  AwardName                                     no
     27814  AwardParticipantSets?                         no
     27815  AwardSets?                                    no
     27816  BICI?                                         no
     27817  BackgroundMusicFlag                           no
     27818  BankDetailsSet?                               no
     27819  BeginAnchor                                   no
     27820  BeginAnchor                                   no
     27821  BextCodingHistory                             no
     27822  BextCodingHistory                             no
     27823  Bitrate                                       no
     27824  BitsPerAudioSample                            no
     27825  BitsPerPixel                                  no
     27826  BitsPerPixel                                  no
     27827  BitsPerSample                                 no
     27828  BlackReferenceLevel                           no
     27829  BlockAlign                                    no
     27830  BlockContinuityCount                          no
     27831  BlockStartOffset                              no
     27832  BoundingRectangle?                            no
     27833  BrandMainTitle                                no
     27834  BrandMainTitle                                no
     27835  BrandOriginalTitle                            no
     27836  BrandOriginalTitle                            no
     27837  Branding                                      MXF
     27838  BrandingSets?                                 no
     27839  BroadcastChannel                              no
     27840  BroadcastDate                                 no
     27841  BroadcastMediumCode                           no
     27842  BroadcastMediumKind                           no
     27843  BroadcastOrganizationName                     no
     27844  BroadcastOrganizationName                     no
     27845  BroadcastRegion                               no
     27846  BroadcastRegion                               no
     27847  BroadcastServiceName                          no
     27848  BroadcastTime                                 no
     27849  BroadcasterRightsToCopy                       no
     27850  BufferDelay?                                  no
     27851  BuildingName                                  no
     27852  BuildingName                                  no
     27853  Bypass                                        no
     27854  BypassOverride                                no
     27855  ByteOffset                                    no
     27856  ByteOrder                                     no
     27857  CBEStartOffset                                no
     27858  CDCIEssenceDescriptor                         MXF
     27859  CISACLegalEntityID?                           no
     27860  CaptionDescription                            MXF
     27861  CaptionDescriptionSets?                       no
     27862  CaptionKind                                   no
     27863  CaptionKind                                   no
     27864  CaptionTitles                                 no
     27865  CaptionsDescriptionParticipantSets?           no
     27866  CaptionsViaTeletext                           no
     27867  CaptureAspectRatio                            no
     27868  CaptureFilmFrameRate                          no
     27869  CaptureGammaEquation                          no
     27870  CaptureGammaEquation                          no
     27871  CaptureGammaEquation?                         no
     27872  CatalogDataStatus                             no
     27873  CatalogDataStatus                             no
     27874  CatalogPrefixNumber                           no
     27875  CatalogingSystemName                          no
     27876  CentralTelephoneNumber                        no
     27877  ChannelAssignment?                            no
     27878  ChannelCount                                  no
     27879  ChannelHandle                                 no
     27880  ChannelID                                     no
     27881  ChannelIDs                                    no
     27882  ChannelStatusMode                             no
     27883  CipherAlgorithm?                              no
     27884  CipherAlgorithmAES128CBC?                     no
     27885  Citizenship                                   no
     27886  Citizenship                                   no
     27887  CityName                                      no
     27888  CityName                                      no
     27889  ClassDefinitions?                             no
     27890  Classification                                MXF
     27891  ClassificationAndMarkingSystem                no
     27892  ClassificationComment                         no
     27893  ClassificationComment                         no
     27894  ClassificationNameValueSets?                  no
     27895  ClassificationReason                          no
     27896  ClassificationSets?                           no
     27897  ClassifiedBy                                  no
     27898  ClassifyingCountryCode                        no
     27899  ClipCreationDateTime                          no
     27900  ClipFramework                                 MXF
     27901  ClipID                                        no
     27902  ClipIDArray?                                  no
     27903  ClipKind                                      no
     27904  ClipNumber                                    no
     27905  ClipNumber                                    no
     27906  ClipShotSets?                                 no
     27907  CloneCount                                    no
     27908  ClosedBodyPartition?                          no
     27909  ClosedCaptionSubtitlesFlag                    no
     27910  ClosedCompleteBodyPartition?                  no
     27911  ClosedCompleteHeader                          MXF Header
     27912  ClosedGOPIndicator                            no
     27913  ClosedHeader                                  MXF Header
     27914  CodecDefinition?                              no
     27915  CodecDefinition?                              no
     27916  CodecDefinitions?                             no
     27917  CodecEssenceDescriptor?                       no
     27918  CodecEssenceKinds?                            no
     27919  CodedContentScanningKind                      no
     27920  CodingLawKind                                 no
     27921  CodingLawName                                 no
     27922  CodingStyleDefault?                           no
     27923  CollectionName                                no
     27924  CollectionName                                no
     27925  ColorDescriptor                               no
     27926  ColorDescriptor                               no
     27927  ColorFieldCode                                no
     27928  ColorPrimaries                                no
     27929  ColorPrimaries?                               no
     27930  ColorRangeLevels                              no
     27931  ColorSiting                                   no
     27932  ColorimetryCode                               no
     27933  ColorimetryCode?                              no
     27934  CommunicationSets?                            no
     27935  Communications                                MXF
     27936  CompleteFooter?                               no
     27937  ComponentAttributes?                          no
     27938  ComponentDataDefinition                       no
     27939  ComponentDepth                                no
     27940  ComponentKLVData?                             no
     27941  ComponentMaximumRef                           no
     27942  ComponentMinimumRef                           no
     27943  ComponentUserComments?                        no
     27944  ComponentsInSequence?                         no
     27945  CompositionRendering?                         no
     27946  ComputedKeyData                               no
     27947  ComputedKeyFrames                             no
     27948  ComputedKeySounds                             no
     27949  ComputedKeywords                              no
     27950  ComputedKeywords                              no
     27951  ComputedObjectKind                            no
     27952  ComputedObjectKind                            no
     27953  ComputedStratumKind                           no
     27954  ConstantBPictureFlag                          no
     27955  ConsumerRightsToCopy                          no
     27956  ContactDepartmentName                         no
     27957  ContactDepartmentName                         no
     27958  ContactID?                                    no
     27959  ContactKind                                   no
     27960  ContactKind                                   no
     27961  ContactNameValueSets?                         no
     27962  ContactsList                                  MXF
     27963  ContactsListSet?                              no
     27964  ContainerDefinitions?                         no
     27965  ContainerLastModifyDate                       no
     27966  ContainerVersion                              no
     27967  ContentClassification                         no
     27968  ContentClassification                         no
     27969  ContentCodingSystem                           no
     27970  ContentMaturityDescription                    no
     27971  ContentMaturityGraphic                        no
     27972  ContentMaturityRating                         no
     27973  ContentPackageIndexArray?                     no
     27974  ContentPackageMetadataLink                    no
     27975  ContentStorage?                               no
     27976  ContentStorageSet                             MXF
     27977  ContentValue                                  no
     27978  ContextDescription                            no
     27979  ContiguousDataFlag                            no
     27980  Contract                                      MXF
     27981  ContractClauseDescription                     no
     27982  ContractClauseDescription                     no
     27983  ContractDateTime                              no
     27984  ContractEntity                                no
     27985  ContractInstallmentPercentage                 no
     27986  ContractLineCode                              no
     27987  ContractLineName                              no
     27988  ContractLineName                              no
     27989  ContractParticipantSets?                      no
     27990  ContractSets?                                 no
     27991  ContractTermsOfBusiness                       no
     27992  ContractTermsOfBusiness                       no
     27993  ContractType                                  no
     27994  ContractType                                  no
     27995  ContractTypeCode                              no
     27996  ContractTypeLink                              no
     27997  ContributionStatus                            no
     27998  ContributionStatus                            no
     27999  ControlPointList?                             no
     28000  ControlPointTime                              no
     28001  CopyCount                                     no
     28002  CopyrightLicenseCountryCode                   no
     28003  CopyrightLicenseRegionCode                    no
     28004  CopyrightLicenseRegionName                    no
     28005  CopyrightOwnerName                            no
     28006  CopyrightOwnerName                            no
     28007  CopyrightStatus                               no
     28008  CopyrightStatus                               no
     28009  CornerLatitudePoint1                          no
     28010  CornerLatitudePoint1                          no
     28011  CornerLatitudePoint2                          no
     28012  CornerLatitudePoint2                          no
     28013  CornerLatitudePoint3                          no
     28014  CornerLatitudePoint3                          no
     28015  CornerLatitudePoint4                          no
     28016  CornerLatitudePoint4                          no
     28017  CornerLongitudePoint1                         no
     28018  CornerLongitudePoint1                         no
     28019  CornerLongitudePoint2                         no
     28020  CornerLongitudePoint2                         no
     28021  CornerLongitudePoint3                         no
     28022  CornerLongitudePoint3                         no
     28023  CornerLongitudePoint4                         no
     28024  CornerLongitudePoint4                         no
     28025  CountryCodeMethod                             no
     28026  CountryCodeMethod                             no
     28027  CountryName                                   no
     28028  CountryName                                   no
     28029  CountryName                                   no
     28030  CountryName                                   no
     28031  CreateDate                                    no
     28032  CryptographicContext                          MXF
     28033  CryptographicContextID?                       no
     28034  CryptographicContextLink?                     no
     28035  CryptographicContextObject?                   no
     28036  CryptographicFramework                        MXF
     28037  CryptographicFrameworkLabel?                  no
     28038  CryptographicKeyID?                           no
     28039  Csiz                                          no
     28040  Cue-InWords                                   no
     28041  Cue-InWords                                   no
     28042  Cue-OutWords                                  no
     28043  Cue-OutWords                                  no
     28044  CueWords                                      MXF
     28045  CulturalValue                                 no
     28046  CurrencyCode                                  no
     28047  CurrencyName                                  no
     28048  CurrentNumberInSequence                       no
     28049  CurrentNumberInSequence                       no
     28050  CurrentRepeatNumber                           no
     28051  CutPoint                                      no
     28052  DMFramework                                   MXF
     28053  DMSegment                                     MXF
     28054  DMSet                                         MXF
     28055  DMSourceClip                                  MXF
     28056  DOI?                                          no
     28057  DVBParentalRating                             no
     28058  DataDefinition?                               no
     28059  DataDefinitions?                              no
     28060  DataDeviceKind                                no
     28061  DataDeviceParameterName                       no
     28062  DataDeviceParameterSetting                    no
     28063  DataEnhancementOrModificationDescription      no
     28064  DataEssenceCoding                             no
     28065  DataEssenceCodingID?                          no
     28066  DateTimeDropFrameFlag                         no
     28067  DateTimeEmbeddedFlag                          no
     28068  DateTimeKind?                                 no
     28069  DateTimeRate                                  no
     28070  DeclassificationDate                          no
     28071  DefaultDataValue?                             no
     28072  DefaultFadeDuration                           no
     28073  DefaultFadeEditRate                           no
     28074  DefaultFadeType?                              no
     28075  DefaultNamespaceURI                           no
     28076  DefaultNamespaceURI                           no
     28077  DefaultObject?                                no
     28078  DefinedName                                   no
     28079  DefinedName                                   no
     28080  DefinitionObjectID?                           no
     28081  DefinitionObjectName                          no
     28082  DefinitionObjectName                          no
     28083  DegradedEffects?                              no
     28084  DeltaEntryArray?                              no
     28085  DerivedFrom                                   no
     28086  Description                                   no
     28087  Description                                   no
     28088  DescriptionKind                               no
     28089  DescriptionKind                               no
     28090  DescriptiveComment                            no
     28091  DescriptiveComment                            no
     28092  DescriptiveMetadataApplicationEnvironmentID   no
     28093  DescriptiveMetadataFramework?                 no
     28094  DescriptiveMetadataPlug-InID?                 no
     28095  DescriptiveMetadataScheme?                    no
     28096  DescriptiveMetadataSchemes?                   no
     28097  DescriptiveMetadataSetReferences?             no
     28098  DescriptiveMetadataSets?                      no
     28099  DescriptiveMetadataTrackIDs                   no
     28100  DeviceAbsoluteHeading                         no
     28101  DeviceAbsolutePositionalAccuracy              no
     28102  DeviceAbsoluteSpeed                           no
     28103  DeviceAltitude                                no
     28104  DeviceAltitude                                no
     28105  DeviceAssetNumber                             no
     28106  DeviceDesignation                             no
     28107  DeviceIDKind                                  no
     28108  DeviceKind                                    no
     28109  DeviceKind                                    no
     28110  DeviceKindCode                                no
     28111  DeviceLatitude                                no
     28112  DeviceLatitude                                no
     28113  DeviceLatitude                                no
     28114  DeviceLongitude                               no
     28115  DeviceLongitude                               no
     28116  DeviceLongitude                               no
     28117  DeviceManufacturerName                        no
     28118  DeviceManufacturerName                        no
     28119  DeviceModel                                   no
     28120  DeviceParameterNameValueSets?                 no
     28121  DeviceParameters                              MXF
     28122  DeviceParametersSets?                         no
     28123  DeviceRelativeHeading                         no
     28124  DeviceRelativePositionX                       no
     28125  DeviceRelativePositionY                       no
     28126  DeviceRelativePositionZ                       no
     28127  DeviceRelativePositionalAccuracy              no
     28128  DeviceRelativeSpeed                           no
     28129  DeviceSerialNumber                            no
     28130  DeviceUsageDescription                        no
     28131  DeviceUsageDescription                        no
     28132  DeviceXDimension                              no
     28133  DeviceYDimension                              no
     28134  DialNorm                                      no
     28135  Dictionary?                                   no
     28136  DictionaryDescription                         no
     28137  DictionaryDescription                         no
     28138  DictionaryIdentifier?                         no
     28139  DigitalEncodingBitrate                        no
     28140  DigitalMetadataCarrier                        no
     28141  DigitalOrAnalogOrigination                    no
     28142  DigitalVideoFileFormat                        no
     28143  DirectorName                                  no
     28144  DiscPartitionCapacity                         no
     28145  DisplayF2Offset                               no
     28146  DisplayHeight                                 no
     28147  DisplayUnits                                  no
     28148  DisplayUnits                                  no
     28149  DisplayWidth                                  no
     28150  DisplayXOffset                                no
     28151  DisplayYOffset                                no
     28152  Dither                                        no
     28153  DropFrame                                     no
     28154  Duration                                      no
     28155  DynamicSourcePackageID?                       no
     28156  DynamicSourceTrackIDs                         no
     28157  E-mailAddress                                 no
     28158  E-mailAddress                                 no
     28159  EPGProgramSynopsis                            no
     28160  EdgeCode                                      no
     28161  EdgeCodeFilmGauge?                            no
     28162  EdgeCodeFormat?                               no
     28163  EdgeCodeHeader?                               no
     28164  EdgeCodeStart                                 no
     28165  EditHint?                                     no
     28166  EditRate                                      no
     28167  EditUnitFlags                                 no
     28168  EditUnitLength                                no
     28169  EditingEventComment                           no
     28170  EditingEventComment                           no
     28171  EffectRendering?                              no
     28172  ElectrospatialFormulation                     no
     28173  ElementCount                                  no
     28174  ElementDelta                                  no
     28175  ElementLength                                 no
     28176  ElementNameList                               no
     28177  Emphasis                                      no
     28178  EncryptedContainerLabel?                      no
     28179  EncryptedSourceValue?                         no
     28180  EncryptedTrackFileID?                         no
     28181  EndAnchor                                     no
     28182  EndAnchor                                     no
     28183  EnhancementOrModificationDescription          no
     28184  EnumerationUnderlyingIntegerType?             no
     28185  EpisodeEndNumber                              no
     28186  EpisodeNumber                                 no
     28187  EpisodeNumber                                 no
     28188  EpisodeStartNumber                            no
     28189  EpisodicItemSets?                             no
     28190  EssenceContainerArray?                        no
     28191  EssenceContainerDataSet                       MXF
     28192  EssenceContainerFormat?                       no
     28193  EssenceContainerFormat?                       no
     28194  EssenceContainers?                            no
     28195  EssenceData?                                  no
     28196  EssenceDescription?                           no
     28197  EssenceIsIdentified                           no
     28198  EssenceLength                                 no
     28199  EssenceLocators?                              no
     28200  EssenceStreamID                               no
     28201  Event                                         MXF
     28202  EventAbsoluteDuration                         no
     28203  EventAbsoluteDuration?                        no
     28204  EventAbsoluteDurationFrameCount               no
     28205  EventAnnotationSets?                          no
     28206  EventElapsedTimeToEnd                         no
     28207  EventElapsedTimeToStart                       no
     28208  EventEndTimeOffset                            no
     28209  EventEndTimecodeOffset?                       no
     28210  EventIndication                               no
     28211  EventIndication                               no
     28212  EventOrigin                                   no
     28213  EventSets?                                    no
     28214  EventStart                                    no
     28215  EventStartTimeOffset                          no
     28216  EventStartTimecodeOffset?                     no
     28217  EventTrack                                    MXF
     28218  EventTrackEditRate                            no
     28219  ExCCIData?                                    no
     28220  ExposedAspectRatio                            no
     28221  ExtendedCaptionsLanguageCode                  no
     28222  ExtendedClipID                                no
     28223  ExtendedClipIDArray?                          no
     28224  ExtendedTextLanguageCode                      no
     28225  ExtendibleElementNameList                     no
     28226  FNumber                                       no
     28227  Fade-InDuration                               no
     28228  Fade-InType?                                  no
     28229  Fade-OutDuration                              no
     28230  Fade-OutType?                                 no
     28231  FamilyName                                    no
     28232  FamilyName                                    no
     28233  FaxNumber                                     no
     28234  FaxNumber                                     no
     28235  FemaleLeadActressName                         no
     28236  FestivalName                                  no
     28237  FestivalName                                  no
     28238  FieldDominance                                no
     28239  FieldFrameTypeCode                            no
     28240  FieldOfViewHorizontal                         no
     28241  FieldOfViewHorizontal                         no
     28242  FieldOfViewVertical                           no
     28243  FieldOfViewVerticalFP                         no
     28244  FieldRate                                     no
     28245  FileDescriptor                                MXF
     28246  FileDescriptors?                              no
     28247  FileSecurityReport                            no
     28248  FileSecurityWave                              no
     28249  FillerData?                                   no
     28250  FilmBatchNumber                               no
     28251  FilmBatchNumber                               no
     28252  FilmCaptureAperture                           no
     28253  FilmColorProcess                              no
     28254  FilmFormatName                                no
     28255  FilmFormatName                                no
     28256  FilmFormatName?                               no
     28257  FilmGauge?                                    no
     28258  FilmStockKind                                 no
     28259  FilmStockKind                                 no
     28260  FilmStockManufacturerName                     no
     28261  FilmStockManufacturerName                     no
     28262  FilmTestParameter                             no
     28263  FilmTestResult                                no
     28264  FilmTestResult?                               no
     28265  FilmToVideoTransferDirection?                 no
     28266  FilmToVideoTransferKind?                      no
     28267  FilmToVideoTransferPhase?                     no
     28268  FilteringApplied                              no
     28269  FilteringCode                                 no
     28270  FirstBroadcastFlag                            no
     28271  FirstGivenName                                no
     28272  FirstGivenName                                no
     28273  FirstNumberInSequence                         no
     28274  FirstNumberInSequence                         no
     28275  FirstTransmissionInfo                         no
     28276  FixedArrayElementType?                        no
     28277  FixedChannelStatusData?                       no
     28278  FixedUserData?                                no
     28279  FocalLength                                   no
     28280  FocalLength                                   no
     28281  Footer?                                       no
     28282  FormatDescriptor                              no
     28283  FormatDescriptor                              no
     28284  FormerFamilyName                              no
     28285  FormerFamilyName                              no
     28286  FrameCenterElevation                          no
     28287  FrameCenterLatitude                           no
     28288  FrameCenterLatitude                           no
     28289  FrameCenterLatitude                           no
     28290  FrameCenterLatitudeLongitude                  no
     28291  FrameCenterLongitude                          no
     28292  FrameCenterLongitude                          no
     28293  FrameCenterLongitude                          no
     28294  FrameCode                                     no
     28295  FrameCount                                    no
     28296  FrameCountOffset                              no
     28297  FrameLayout                                   no
     28298  FramePositionalAccuracy                       no
     28299  FrameRate                                     no
     28300  FrameworkExtendedTextLanguageCode             no
     28301  FrameworkTextLanguageCode                     no
     28302  FrameworkThesaurusName                        no
     28303  FrameworkThesaurusName                        no
     28304  FrameworkTitle                                no
     28305  FrameworkTitle                                no
     28306  GenerationCloneNumber                         no
     28307  GenerationCopyNumber                          no
     28308  GenerationID?                                 no
     28309  GenericDataEssenceDescriptor                  MXF
     28310  GenericPackage                                MXF
     28311  GenericPayloads?                              no
     28312  GenericPictureEssenceDescriptor               MXF
     28313  GenericSoundEssenceDescriptor                 MXF
     28314  GenericTrack                                  MXF
     28315  Genre                                         no
     28316  Genre                                         no
     28317  GeographicAreaNorthwest?                      no
     28318  GeographicAreaSourceDatum                     no
     28319  GeographicAreaSoutheast?                      no
     28320  GeographicLocation?                           no
     28321  GeographicPolygonCoordinates?                 no
     28322  GeographicPolygonSourceDatum                  no
     28323  GeographicalCoordinates?                      no
     28324  GlobalNumber                                  no
     28325  GraphicKind                                   no
     28326  GraphicUsageKind                              no
     28327  GraphicUsageKind                              no
     28328  GroupRelationship                             MXF
     28329  GroupSet?                                     no
     28330  GroupSets?                                    no
     28331  GroupSynopsis                                 no
     28332  GroupSynopsis                                 no
     28333  HMACAlgorithmSHA1128?                         no
     28334  HTMLDOCTYPE                                   no
     28335  HTMLDOCTYPE                                   no
     28336  HTMLMetaDescription                           no
     28337  HTMLMetaDescription                           no
     28338  HardwareAcceleratorFlag                       no
     28339  HasAudioWatermark                             no
     28340  HasVideoWatermark                             no
     28341  HeaderByteCount                               no
     28342  HistoricalValue                               no
     28343  HonorsAndQualifications                       no
     28344  HonorsAndQualifications                       no
     28345  HorizontalActionSafePercentage                no
     28346  HorizontalDatum                               no
     28347  HorizontalGraphicsSafePercentage              no
     28348  HorizontalSubsampling                         no
     28349  IBTN?                                         no
     28350  IEEEDeviceID                                  no
     28351  IEEEManufacturerID                            no
     28352  ISAN?                                         no
     28353  ISBD?                                         no
     28354  ISBN?                                         no
     28355  ISCI?                                         no
     28356  ISMN?                                         no
     28357  ISO3166CountryCode                            no
     28358  ISO639-1LanguageCode                          no
     28359  ISO639-1LanguageCode                          no
     28360  ISO639CaptionsLanguageCode                    no
     28361  ISO639TextLanguageCode                        no
     28362  ISRC?                                         no
     28363  ISRN?                                         no
     28364  ISSN?                                         no
     28365  ISTC?                                         no
     28366  ISWC?                                         no
     28367  IdenticalGOPIndicator                         no
     28368  Identification                                MXF
     28369  Identification                                MXF
     28370  IdentificationList?                           no
     28371  IdentificationSets?                           no
     28372  IdentificationUL?                             no
     28373  IdentifierIssuingAuthority                    no
     28374  IdentifierIssuingAuthority                    no
     28375  IdentifierKind                                no
     28376  IdentifierValue                               no
     28377  ImageAlignmentOffset                          no
     28378  ImageCategory                                 no
     28379  ImageCoordinateSystem                         no
     28380  ImageEndOffset                                no
     28381  ImageFormatSet?                               no
     28382  ImageHeight                                   no
     28383  ImageSourceDeviceKind                         no
     28384  ImageSourceDeviceKind                         no
     28385  ImageStartOffset                              no
     28386  ImageWidth                                    no
     28387  IncludeSync                                   no
     28388  IndexByteCount                                no
     28389  IndexDuration                                 no
     28390  IndexEditRate                                 no
     28391  IndexEntryArray?                              no
     28392  IndexStreamID                                 no
     28393  IndexTableSegment?                            no
     28394  IndexingStartPosition                         no
     28395  IndividualAwardName                           no
     28396  InkNumber                                     no
     28397  InputSegment?                                 no
     28398  InputSegmentCount                             no
     28399  InputSegments?                                no
     28400  InsertMusicFlag                               no
     28401  InstallmentNumber                             no
     28402  InstanceUID?                                  no
     28403  IntegrationIndication                         no
     28404  IntegrationIndication                         no
     28405  IntellectualPropertyDescription               no
     28406  IntellectualPropertyDescription               no
     28407  IntellectualPropertyLicenseCountryCode        no
     28408  IntellectualPropertyLicenseRegionCode         no
     28409  IntellectualPropertyLicenseRegionName         no
     28410  IntellectualPropertyRights                    no
     28411  IntellectualPropertyRights                    no
     28412  IntendedAFD                                   no
     28413  IntentDescriptor                              no
     28414  IntentDescriptor                              no
     28415  InterestedPartyName                           no
     28416  Interpolation?                                no
     28417  InterpolationDefinitions?                     no
     28418  IsConcrete                                    no
     28419  IsDubbed                                      no
     28420  IsLiveProduction                              no
     28421  IsLiveTransmission                            no
     28422  IsOptional                                    no
     28423  IsRecording                                   no
     28424  IsRepeat                                      no
     28425  IsSearchable                                  no
     28426  IsSigned                                      no
     28427  IsUniqueIdentifier                            no
     28428  IsVoiceover                                   no
     28429  ItemDesignatorID?                             no
     28430  ItemID                                        no
     28431  ItemName                                      no
     28432  ItemName                                      no
     28433  ItemValue                                     no
     28434  ItemValue                                     no
     28435  JFIFMarkerDescription                         no
     28436  JFIFMarkerDescription                         no
     28437  JPEG2000PictureSubDescriptor                  MXF
     28438  JPEGTableID?                                  no
     28439  JobFunctionCode                               no
     28440  JobFunctionName                               no
     28441  JobFunctionName                               no
     28442  JobTitle                                      no
     28443  JobTitle                                      no
     28444  Jurisdiction                                  no
     28445  Jurisdiction                                  no
     28446  KAGSize                                       no
     28447  KLVDataDefinitions?                           no
     28448  KLVDataParentProperties?                      no
     28449  KLVDataType?                                  no
     28450  KLVDataValue?                                 no
     28451  KLVMetadataSequence?                          no
     28452  KeyCode?                                      no
     28453  KeyData                                       no
     28454  KeyDataOrProgram                              no
     28455  KeyFrame                                      no
     28456  KeyFrameSampleCount                           no
     28457  KeyFrames                                     no
     28458  KeyPoint                                      MXF
     28459  KeyPointSets?                                 no
     28460  KeySound                                      no
     28461  KeySounds                                     no
     28462  KeyText                                       no
     28463  KeyTimePoint                                  no
     28464  KeypointKind                                  no
     28465  KeypointKind                                  no
     28466  KeypointValue                                 no
     28467  KeypointValue                                 no
     28468  Keywords                                      no
     28469  Keywords                                      no
     28470  LUID                                          no
     28471  LanguageName                                  no
     28472  LanguageName                                  no
     28473  LastNumberInSequence                          no
     28474  LastNumberInSequence                          no
     28475  LayerNumber                                   no
     28476  LeadingLines                                  no
     28477  LengthSystemName                              no
     28478  LengthUnitKind                                no
     28479  LicenseOptionsDescription                     no
     28480  LineNumber                                    no
     28481  LinkedApplicationPlug-InInstanceID?           no
     28482  LinkedDescriptiveFrameworkPlug-InID?          no
     28483  LinkedDescriptiveObjectPlug-InID?             no
     28484  LinkedGenerationID?                           no
     28485  LinkedPackageID?                              no
     28486  LinkedTimecodeTrackID?                        no
     28487  LinkedTrackID                                 no
     28488  LinkingName                                   no
     28489  LinkingName                                   no
     28490  LocalCreationDateTime                         no
     28491  LocalDatumAbsolutePositionAccuracy            no
     28492  LocalDatumRelativePositionAccuracy            no
     28493  LocalEndDateTime                              no
     28494  LocalEventEndDateTime                         no
     28495  LocalEventEndDateTime                         no
     28496  LocalEventStartDateTime                       no
     28497  LocalEventStartDateTime                       no
     28498  LocalFestivalDateTime                         no
     28499  LocalFilePath                                 no
     28500  LocalFilePath                                 no
     28501  LocalID                                       no
     28502  LocalLastModifyDate                           no
     28503  LocalModifyDate                               no
     28504  LocalStartDateTime                            no
     28505  LocalTagEntries?                              no
     28506  LocalTagUniqueID?                             no
     28507  LocalTagValue                                 no
     28508  LocalTapeNumber                               no
     28509  LocalTargetID                                 no
     28510  LocalTargetID                                 no
     28511  LocalUserDateTime                             no
     28512  Location                                      MXF
     28513  LocationDescription                           no
     28514  LocationDescription                           no
     28515  LocationKind                                  no
     28516  LocationKind                                  no
     28517  LocationSets?                                 no
     28518  LockedIndicator                               no
     28519  LogoFlag                                      no
     28520  LowDelayIndicator                             no
     28521  LumaEquation                                  no
     28522  LuminanceSampleRate                           no
     28523  MIC?                                          no
     28524  MICAlgorithm?                                 no
     28525  MIMECharSet                                   no
     28526  MIMECharSet                                   no
     28527  MIMEEncoding                                  no
     28528  MIMEEncoding                                  no
     28529  MIMEMediaType                                 no
     28530  MIMEMediaType                                 no
     28531  MPEG2VideoDescriptor                          MXF
     28532  MPEG7BiMAccessUnitFrame1?                     no
     28533  MPEG7BiMAccessUnitFrame2?                     no
     28534  MPEG7BiMAccessUnitFrame3?                     no
     28535  MPEG7BiMAccessUnitFrame4?                     no
     28536  MPEG7BiMAccessUnitFrame5?                     no
     28537  MPEG7BiMAccessUnitFrame6?                     no
     28538  MPEG7BiMAccessUnitFrame7?                     no
     28539  MPEG7BiMAccessUnitFrame8?                     no
     28540  MPEG7BiMDecoderInitFrame1?                    no
     28541  MPEG7BiMDecoderInitFrame2?                    no
     28542  MPEG7BiMDecoderInitFrame3?                    no
     28543  MPEG7BiMDecoderInitFrame4?                    no
     28544  MPEG7BiMDecoderInitFrame5?                    no
     28545  MPEG7BiMDecoderInitFrame6?                    no
     28546  MPEG7BiMDecoderInitFrame7?                    no
     28547  MPEG7BiMDecoderInitFrame8?                    no
     28548  MPEGAudioBitrate                              no
     28549  MPEGAudioRecodingDataset?                     no
     28550  MPEGVideoRecodingDataset?                     no
     28551  MagneticDiskNumber                            no
     28552  MagneticTrack                                 no
     28553  MainCatalogNumber                             no
     28554  MainName                                      no
     28555  MainName                                      no
     28556  MainSponsorName                               no
     28557  MainTitle                                     no
     28558  MainTitle                                     no
     28559  MajorVersion                                  no
     28560  MaleLeadActorName                             no
     28561  ManufacturerID?                               no
     28562  ManufacturerInformationObject?                no
     28563  MapDatumUsed                                  no
     28564  MarkIn                                        no
     28565  MarkOut                                       no
     28566  MaterialAbsoluteDuration                      no
     28567  MaterialAbsoluteDuration?                     no
     28568  MaterialEndTimeOffset                         no
     28569  MaterialEndTimecodeOffset?                    no
     28570  MaterialPackage                               MXF
     28571  MaximumAPIVersion                             no
     28572  MaximumBPictureCount                          no
     28573  MaximumGOPSize                                no
     28574  MaximumSupportedEngineVersion                 no
     28575  MaximumSupportedPlatformVersion               no
     28576  MaximumUseCount                               no
     28577  MediaLocation                                 no
     28578  MemberNameList                                no
     28579  MemberTypes?                                  no
     28580  MetadataEncodingSchemeCode                    no
     28581  MetadataItemName                              no
     28582  MetadataItemName                              no
     28583  MetadataServerLocators?                       no
     28584  MicrophonePlacementTechniques                 no
     28585  MinimumAPIVersion                             no
     28586  MinimumSupportedEngineVersion                 no
     28587  MinimumSupportedPlatformVersion               no
     28588  MinorVersion                                  no
     28589  MissionID                                     no
     28590  MissionID                                     no
     28591  MobileTelephoneNumber                         no
     28592  ModifyDate                                    no
     28593  MonoSourceTrackIDs                            no
     28594  MultipleDescriptor                            MXF
     28595  NITFLayerTargetID                             no
     28596  NITFLayerTargetID                             no
     28597  NMEADocumentText                              no
     28598  NOLACode                                      no
     28599  NameSuffix                                    no
     28600  NameSuffix                                    no
     28601  NameValue                                     MXF
     28602  NamespacePrefix                               no
     28603  NamespacePrefix                               no
     28604  NamespacePrefixes                             no
     28605  NamespacePrefixes                             no
     28606  NamespaceURI                                  no
     28607  NamespaceURI                                  no
     28608  NamespaceURIs                                 no
     28609  NamespaceURIs                                 no
     28610  Nationality                                   no
     28611  Nationality                                   no
     28612  NatureOfPersonality                           no
     28613  NatureOfPersonality                           no
     28614  NetworkLocator                                MXF
     28615  NextNumberInSequence                          no
     28616  NextNumberInSequence                          no
     28617  NielsenStreamIdentifier                       no
     28618  NominationCategory                            no
     28619  NominationCategory                            no
     28620  Non-USClassifyingCountryCode                  no
     28621  ObjectAreaDimension                           no
     28622  ObjectClass?                                  no
     28623  ObjectClassDefinition?                        no
     28624  ObjectCountryCode                             no
     28625  ObjectCountryCode                             no
     28626  ObjectCountryCodeMethod                       no
     28627  ObjectDescription                             no
     28628  ObjectDescription                             no
     28629  ObjectDescriptionCode                         no
     28630  ObjectHorizontalAverageDimension              no
     28631  ObjectIdentificationConfidence                no
     28632  ObjectKind                                    no
     28633  ObjectKind                                    no
     28634  ObjectModelVersion                            no
     28635  ObjectName                                    no
     28636  ObjectRegionCode                              no
     28637  ObjectRegionName                              no
     28638  ObjectVerticalAverageDimension                no
     28639  ObliquityAngle                                no
     28640  OffsetToIndexTable                            no
     28641  OffsetToIndexTable                            no
     28642  OffsetToMetadata                              no
     28643  OffsetToMetadata                              no
     28644  OpenBodyPartition?                            no
     28645  OpenCompleteBodyPartition?                    no
     28646  OpenCompleteHeader                            MXF Header
    1575328647  OpenHeader                                    MXF Header
    15754   ClosedHeader                                  MXF Header
    15755   OpenCompleteHeader                            MXF Header
    15756   ClosedCompleteHeader                          MXF Header
    15757   OpenBodyPartition?                            N
    15758   ClosedBodyPartition?                          N
    15759   OpenCompleteBodyPartition?                    N
    15760   ClosedCompleteBodyPartition?                  N
    15761   Footer?                                       N
    15762   CompleteFooter?                               N
     28648  OperatingSystemInterpretations                no
     28649  OperationCategory?                            no
     28650  OperationDataDefinition?                      no
     28651  OperationDefinitionID?                        no
     28652  OperationDefinitions?                         no
     28653  OperationParameters?                          no
     28654  OperationalPatternUL?                         no
     28655  OpticalDiscNumber                             no
     28656  OpticalTestParameterName                      no
     28657  OpticalTestResult                             no
     28658  OpticalTestResult                             no
     28659  OpticalTrack                                  no
     28660  Organisation                                  MXF
     28661  OrganizationCode                              no
     28662  OrganizationCode                              no
     28663  OrganizationID                                no
     28664  OrganizationID                                no
     28665  OrganizationIDKind                            no
     28666  OrganizationIDKind                            no
     28667  OrganizationKind                              no
     28668  OrganizationKind                              no
     28669  OrganizationMainName                          no
     28670  OrganizationMainName                          no
     28671  OrganizationSets?                             no
     28672  OrganizationalProgramNumber                   no
     28673  OrganizationalProgramNumber                   no
     28674  Origin                                        no
     28675  OriginCode                                    no
     28676  OriginalExtendedSpokenPrimaryLanguageCode     no
     28677  OriginalProducerName                          no
     28678  OriginalProducerName                          no
     28679  OriginalTitle                                 no
     28680  OriginalTitle                                 no
     28681  OtherGivenNames                               no
     28682  OtherGivenNames                               no
     28683  OtherValues                                   no
     28684  PII?                                          no
     28685  POSIXMicroseconds                             no
     28686  PURL                                          no
     28687  PackLength                                    no
     28688  PackageAttributes?                            no
     28689  PackageID?                                    no
     28690  PackageKLVData?                               no
     28691  PackageLastModifyDate                         no
     28692  PackageMarkInPosition                         no
     28693  PackageMarkOutPosition                        no
     28694  PackageMarker?                                no
     28695  PackageName                                   no
     28696  PackageName                                   no
     28697  PackageTimelineMarkerRef?                     no
     28698  PackageTracks?                                no
     28699  PackageUsageKind?                             no
     28700  PackageUserComments?                          no
     28701  Packages?                                     no
     28702  PaddingBits                                   no
     28703  Palette?                                      no
     28704  PaletteLayout?                                no
     28705  PanScanInformation?                           no
     28706  ParameterDataType?                            no
     28707  ParameterDefinition?                          no
     28708  ParameterDefinitions?                         no
     28709  Parameters?                                   no
     28710  ParentClass?                                  no
     28711  Participant                                   MXF
     28712  ParticipantID?                                no
     28713  ParticipantOrganizationSets?                  no
     28714  PartitionMetadata?                            no
     28715  Password                                      no
     28716  Password                                      no
     28717  PayeeAccountName                              no
     28718  PayeeAccountNumber                            no
     28719  PayeeAccountSortCode                          no
     28720  PayerAccountName                              no
     28721  PayerAccountNumber                            no
     28722  PayerAccountSortCode                          no
     28723  PaymentDueDateTime                            no
     28724  PaymentsSets?                                 no
     28725  PeakChannelCount                              no
     28726  PeakEnvelope                                  no
     28727  PeakEnvelopeBlockSize                         no
     28728  PeakEnvelopeData?                             no
     28729  PeakEnvelopeData?                             no
     28730  PeakEnvelopeFormat                            no
     28731  PeakEnvelopeTimestamp                         no
     28732  PeakEnvelopeVersion                           no
     28733  PeakFrameCount                                no
     28734  PeakOfPeaksPosition                           no
     28735  PerceivedDisplayFormatCode                    no
     28736  PerceivedDisplayFormatName                    no
     28737  PerforationsPerFrame                          no
     28738  PerforationsPerFrame                          no
     28739  Person                                        MXF
     28740  PersonDescription                             no
     28741  PersonDescription                             no
     28742  PersonOrganizationSets?                       no
     28743  PersonSets?                                   no
     28744  PhysicalInstanceKind                          no
     28745  PhysicalMediaLength?                          no
     28746  PhysicalMediaLocation                         no
     28747  PictureComponentSizing?                       no
     28748  PictureDisplayRate                            no
     28749  PictureFormat                                 MXF
     28750  PixelLayout?                                  no
     28751  PlaceKeyword                                  no
     28752  PlaceKeyword                                  no
     28753  PlaceName                                     no
     28754  PlaceName                                     no
     28755  PlaintextOffset                               no
     28756  PlatformDesignation                           no
     28757  PlatformDesignation                           no
     28758  PlatformHeadingAngle                          no
     28759  PlatformModel                                 no
     28760  PlatformPitchAngle                            no
     28761  PlatformRollAngle                             no
     28762  PlatformSerialNumber                          no
     28763  Plug-InAPIID?                                 no
     28764  Plug-InCategoryID?                            no
     28765  Plug-InDefinitions?                           no
     28766  Plug-InEngineID?                              no
     28767  Plug-InLocatorSet?                            no
     28768  Plug-InPlatformID?                            no
     28769  PointsPerPeakValue                            no
     28770  PolarCharacteristic                           no
     28771  PosTableArray?                                no
     28772  PositionInSequence                            no
     28773  PositionTable?                                no
     28774  PositionTableCount                            no
     28775  PositionTableIndexing                         no
     28776  PositionWithinViewportImageXCoordinate        no
     28777  PositionWithinViewportImageYCoordinate        no
     28778  PostCodeForPostbox                            no
     28779  PostalCode                                    no
     28780  PostalCode                                    no
     28781  PostalTown                                    no
     28782  PostalTown                                    no
     28783  PostboxNumber                                 no
     28784  Preface                                       MXF
     28785  PresentationAspectRatio                       no
     28786  PresentationGammaEquation                     no
     28787  PresentationGammaEquation?                    no
     28788  PresenterName                                 no
     28789  PreviousNumberInSequence                      no
     28790  PreviousNumberInSequence                      no
     28791  PreviousRepeatNumber                          no
     28792  PrimaryExtendedSpokenLanguageCode             no
     28793  PrimaryOriginalLanguageCode                   no
     28794  PrimaryPackage?                               no
     28795  PrimarySpokenLanguageCode                     no
    1576328796  Primer                                        MXF
    15764   RandomIndexMetadataV10?                       N
    15765   RandomIndexMetadata?                          N
    15766   PartitionMetadata?                            N
     28797  Processing                                    MXF
     28798  ProcessingSet?                                no
     28799  ProducerName                                  no
     28800  ProductFormat                                 no
     28801  ProductFormat                                 no
     28802  ProductionFramework                           MXF
     28803  ProductionOrganizationRole                    no
     28804  ProductionOrganizationRole                    no
     28805  ProductionScriptReference                     no
     28806  ProductionScriptReference                     no
     28807  ProductionSettingPeriodSets?                  no
     28808  ProfileAndLevel                               no
     28809  ProgramAwardName                              no
     28810  ProgramCommercialMaterialReference            no
     28811  ProgramIdentifier                             no
     28812  ProgramIdentifierString                       no
     28813  ProgramKind                                   no
     28814  ProgramMaterialClassificationCode             no
     28815  ProgramNumber                                 no
     28816  ProgramSupportMaterialReference               no
     28817  ProgrammingGroupKind                          no
     28818  ProgrammingGroupKind                          no
     28819  ProgrammingGroupTitle                         no
     28820  ProgrammingGroupTitle                         no
     28821  ProjectName                                   no
     28822  ProjectName                                   no
     28823  ProjectNumber                                 no
     28824  ProjectSet?                                   no
     28825  Projects                                      MXF
     28826  Properties?                                   no
     28827  PropertyType?                                 no
     28828  Publication                                   MXF
     28829  PublicationSets?                              no
     28830  PublishingMediumName                          no
     28831  PublishingMediumName                          no
     28832  PublishingOrganizationName                    no
     28833  PublishingOrganizationName                    no
     28834  PublishingRegionName                          no
     28835  PublishingRegionName                          no
     28836  PublishingServiceName                         no
     28837  PublishingServiceName                         no
     28838  PulldownFieldDominance                        no
     28839  PulldownSequence?                             no
     28840  PurchaserAccountName                          no
     28841  PurchaserAccountName                          no
     28842  PurchaserAccountNumber                        no
     28843  PurchaserIdentificationKind                   no
     28844  PurchaserIdentificationValue                  no
     28845  PurchasingDepartment                          no
     28846  PurchasingOrganizationName                    no
     28847  Purpose                                       no
     28848  Purpose                                       no
     28849  QltyBasicData                                 no
     28850  QltyBasicData                                 no
     28851  QltyCueSheet                                  no
     28852  QltyCueSheet                                  no
     28853  QltyEndOfModulation                           no
     28854  QltyEndOfModulation                           no
     28855  QltyOperatorComment                           no
     28856  QltyOperatorComment                           no
     28857  QltyQualityEvent                              no
     28858  QltyQualityEvent                              no
     28859  QltyQualityParameter                          no
     28860  QltyQualityParameter                          no
     28861  QltyStartOfModulation                         no
     28862  QltyStartOfModulation                         no
     28863  QualityFlag                                   no
     28864  QuantizationDefault?                          no
     28865  RGBAEssenceDescriptor                         MXF
     28866  RIFFChunkData?                                no
     28867  RIFFChunkID                                   no
     28868  RIFFChunkLength                               no
     28869  RP217DataStreamPID                            no
     28870  RP217VideoStreamPID                           no
     28871  RandomIndexMetadata?                          no
     28872  RandomIndexMetadataV10?                       no
     28873  Rating                                        no
     28874  RecordedFormat                                no
     28875  RecordedFormat                                no
     28876  RecordedTrackNumber                           no
     28877  RecordingLabelName                            no
     28878  RecordingLabelName                            no
     28879  ReelOrRollNumber                              no
     28880  RegionCode                                    no
     28881  RegionName                                    no
     28882  RegionName                                    no
     28883  RegisterAction                                no
     28884  RegisterAdministrationArray?                  no
     28885  RegisterAdministrationNotes                   no
     28886  RegisterAdministrationObject?                 no
     28887  RegisterApproverName                          no
     28888  RegisterChildEntryArray?                      no
     28889  RegisterCreationTime                          no
     28890  RegisterEditorName                            no
     28891  RegisterEntryAdministrationObject?            no
     28892  RegisterEntryArray?                           no
     28893  RegisterEntryStatus?                          no
     28894  RegisterItemDefiningDocumentName              no
     28895  RegisterItemDefinition                        no
     28896  RegisterItemHierarchyLevel                    no
     28897  RegisterItemIntroductionVersion               no
     28898  RegisterItemName                              no
     28899  RegisterItemNotes                             no
     28900  RegisterItemOriginatorName                    no
     28901  RegisterItemStatusChangeDateTime              no
     28902  RegisterItemSymbol?                           no
     28903  RegisterItemUL?                               no
     28904  RegisterKind?                                 no
     28905  RegisterReleaseDateTime                       no
     28906  RegisterStatusKind?                           no
     28907  RegisterUserName                              no
     28908  RegisterUserTime                              no
     28909  RegisterVersion                               no
     28910  RegistrantName                                no
     28911  RelatedMaterialDescription                    no
     28912  RelatedMaterialDescription                    no
     28913  RelatedMaterialLocators?                      no
     28914  RelativePositionInSequenceName                no
     28915  RelativePositionInSequenceOffset              no
     28916  RelativeScope                                 no
     28917  RelativeTrack                                 no
     28918  ReleasableCountryCode                         no
     28919  ReleasableCountryCode                         no
     28920  RenamedType?                                  no
     28921  ResourceID?                                   no
     28922  RestrictionsonUse                             no
     28923  ReversePlay                                   no
     28924  ReversedByteOrder                             no
     28925  Rights                                        MXF
     28926  RightsComment                                 no
     28927  RightsComment                                 no
     28928  RightsConditionDescription                    no
     28929  RightsConditionDescription                    no
     28930  RightsManagementAuthority                     no
     28931  RightsManagementAuthority                     no
     28932  RightsSets?                                   no
     28933  RightsStartDateTime                           no
     28934  RightsStopDateTime                            no
     28935  Rightsholder                                  no
     28936  Rightsholder                                  no
     28937  RoleName                                      no
     28938  RoleName                                      no
     28939  RoomNumber                                    no
     28940  RoomNumber                                    no
     28941  RoomOrSuiteName                               no
     28942  RoomOrSuiteName                               no
     28943  RootFormatVersion                             no
     28944  RootMetaDictionary?                           no
     28945  RootObjectDirectory?                          no
     28946  RootPreface?                                  no
     28947  RoundedCaptureFilmFrameRate                   no
     28948  RoundedTimecodeTimebase                       no
     28949  RoundingLaw                                   no
     28950  RoundingMethodCode                            no
     28951  RoyaltyIncomeInformation                      no
     28952  RoyaltyPaymentInformation                     no
     28953  Rsiz                                          no
     28954  SDKVersion                                    no
     28955  SICI?                                         no
     28956  SMPTE12MUserDateTime?                         no
     28957  SMPTE309MUserDateTime?                        no
     28958  SMPTE337MDataStreamNumber                     no
     28959  SMPTEUL?                                      no
     28960  SalesContractNumber                           no
     28961  Salutation                                    no
     28962  Salutation                                    no
     28963  SampleIndex?                                  no
     28964  SampleRate                                    no
     28965  SampledHeight                                 no
     28966  SampledWidth                                  no
     28967  SampledXOffset                                no
     28968  SampledYOffset                                no
     28969  SamplingHierarchyCode                         no
     28970  SamplingStructureCode                         no
     28971  ScanningDirection                             no
     28972  SceneFramework                                MXF
     28973  SceneNumber                                   no
     28974  SceneNumber                                   no
     28975  SceneSettingPeriodSets?                       no
     28976  SceneShotSets?                                no
     28977  ScramblingKeyKind                             no
     28978  ScramblingKeyValue                            no
     28979  Scripting                                     MXF
     28980  ScriptingKind                                 no
     28981  ScriptingKind                                 no
     28982  ScriptingLocators?                            no
     28983  ScriptingSets?                                no
     28984  ScriptingText                                 no
     28985  ScriptingText                                 no
     28986  SeasonEpisodeNumber                           no
     28987  SeasonEpisodeTitle                            no
     28988  SecondGivenName                               no
     28989  SecondGivenName                               no
     28990  SecondaryExtendedSpokenLanguageCode           no
     28991  SecondaryOriginalExtendedSpokenLanguageCode   no
     28992  SecondaryOriginalLanguageCode                 no
     28993  SecondarySpokenLanguageCode                   no
     28994  SecondaryTitle                                no
     28995  SecondaryTitle                                no
     28996  SectorSize                                    no
     28997  SecurityClassification                        no
     28998  SecurityClassification                        no
     28999  SecurityClassificationCaveats                 no
     29000  SecurityClassificationCaveats                 no
     29001  Selected?                                     no
     29002  SensorMode                                    no
     29003  SensorRollAngle                               no
     29004  SensorSize                                    no
     29005  SensorType                                    no
     29006  SensorTypeCode                                no
     29007  Sequence?                                     no
     29008  SequenceOffset                                no
     29009  SequenceSet                                   MXF
     29010  SeriesNumber                                  no
     29011  SeriesNumber                                  no
     29012  SeriesinaSeriesGroupCount                     no
     29013  SetElementType?                               no
     29014  SettingCityName                               no
     29015  SettingCityName                               no
     29016  SettingCountryCode                            no
     29017  SettingCountryName                            no
     29018  SettingCountryName                            no
     29019  SettingDateTime                               no
     29020  SettingDescription                            no
     29021  SettingDescription                            no
     29022  SettingPeriod                                 MXF
     29023  SettingPeriodDescription                      no
     29024  SettingPeriodDescription                      no
     29025  SettingPostalCode                             no
     29026  SettingPostalCode                             no
     29027  SettingRegionCode                             no
     29028  SettingRegionName                             no
     29029  SettingRoomNumber                             no
     29030  SettingRoomNumber                             no
     29031  SettingStateOrProvinceOrCountyName            no
     29032  SettingStateOrProvinceOrCountyName            no
     29033  SettingStreetName                             no
     29034  SettingStreetName                             no
     29035  SettingStreetNumberOrBuildingName             no
     29036  SettingStreetNumberOrBuildingName             no
     29037  SettingTownName                               no
     29038  SettingTownName                               no
     29039  ShimName                                      no
     29040  ShootingCountryCode                           no
     29041  ShootingRegionCode                            no
     29042  ShootingRegionName                            no
     29043  Shot                                          MXF
     29044  ShotComment                                   no
     29045  ShotComment                                   no
     29046  ShotCommentKind                               no
     29047  ShotCommentKind                               no
     29048  ShotCueWordsSet?                              no
     29049  ShotDescription                               no
     29050  ShotDescription                               no
     29051  ShotDuration                                  no
     29052  ShotList                                      no
     29053  ShotLocationSets?                             no
     29054  ShotParticipantRoleSets?                      no
     29055  ShotPersonSets?                               no
     29056  ShotStartPosition                             no
     29057  ShotTrackIDs                                  no
     29058  SideNumber                                    no
     29059  Signal-to-NoiseRatio                          no
     29060  SignalFormCode                                no
     29061  SignalStandard                                no
     29062  SignalStandard                                no
     29063  SignatureTuneFlag                             no
     29064  SimpleFlaggingCount                           no
     29065  SingleSequenceFlag                            no
     29066  Size                                          no
     29067  SlantRange                                    no
     29068  SlateInformation                              no
     29069  SlateTitle                                    no
     29070  SliceCount                                    no
     29071  SliceNumber                                   no
     29072  SliceOffsetList?                              no
     29073  Software-OnlySupportFlag                      no
     29074  SourceClip?                                   no
     29075  SourceContainerFormat?                        no
     29076  SourceImageCenterXCoordinate                  no
     29077  SourceImageCenterYCoordinate                  no
     29078  SourceIndex?                                  no
     29079  SourceKey?                                    no
     29080  SourceLength                                  no
     29081  SourceOrganization                            no
     29082  SourceOrganization                            no
     29083  SourcePackage                                 MXF
     29084  SourcePackageID?                              no
     29085  SourceSpecies?                                no
     29086  SourceTrackID                                 no
     29087  SourceTrackIDs                                no
     29088  SourceValue?                                  no
     29089  SpeedChangeEffectFlag                         no
     29090  SplicingMetadata?                             no
     29091  StartTimeRelativeToReference                  no
     29092  StartTimeRelativeToReference                  no
     29093  StartTimecode                                 no
     29094  StartTimecodeRelativeToReference?             no
     29095  StateOrProvinceOrCountyName                   no
     29096  StateOrProvinceOrCountyName                   no
     29097  StaticTrack                                   MXF
     29098  StillFrame?                                   no
     29099  StorageDeviceKind                             no
     29100  StorageKind                                   no
     29101  StorageKind                                   no
     29102  StorageKindCode                               no
     29103  StorageMediaID                                no
     29104  StorageMediaKind                              no
     29105  StoredANCLineNumber                           no
     29106  StoredF2Offset                                no
     29107  StoredVBILineNumber                           no
     29108  StratumKind                                   no
     29109  StreamData?                                   no
     29110  StreamElementType?                            no
     29111  StreamID                                      no
     29112  StreamOffset                                  no
     29113  StreamPositionIndicator                       no
     29114  StreamPositionIndicator                       no
     29115  StreamPositionIndicator                       no
     29116  StreamPositionIndicator                       no
     29117  StreetName                                    no
     29118  StreetName                                    no
     29119  StreetNumber                                  no
     29120  StreetNumber                                  no
     29121  StringElementType?                            no
    1576729122  StructuralComponent                           MXF
    15768   SequenceSet                                   MXF
    15769   SourceClip?                                   N
     29123  Sub-descriptors?                              no
     29124  SubDescriptor?                                no
     29125  SubDescriptors?                               no
     29126  SubjectAbsoluteHeading                        no
     29127  SubjectAbsoluteSpeed                          no
     29128  SubjectDistance                               no
     29129  SubjectName                                   no
     29130  SubjectName                                   no
     29131  SubjectRelativeHeading                        no
     29132  SubjectRelativePositionalAccuracy             no
     29133  SubjectRelativeSpeed                          no
     29134  SubtitleDatafileFlag                          no
     29135  SubtitlesPresent                              no
     29136  SupplementaryName                             no
     29137  SupplementaryName                             no
     29138  SupplementaryOrganizationName                 no
     29139  SupplementaryOrganizationName                 no
     29140  SupplierAccountName                           no
     29141  SupplierAccountName                           no
     29142  SupplierAccountNumber                         no
     29143  SupplierIdentificationKind                    no
     29144  SupplierIdentificationValue                   no
     29145  SupplyContractNumber                          no
     29146  SupplyingDepartmentName                       no
     29147  SupportOrAdministrationStatus                 no
     29148  SupportOrAdministrationStatus                 no
     29149  SupportOrganizationRole                       no
     29150  SupportOrganizationRole                       no
     29151  SystemNameOrNumber                            no
     29152  TIFFSummary?                                  no
     29153  TaggedValueDefinitions?                       no
     29154  TaggedValueParentProperties?                  no
     29155  TakeNumber                                    no
     29156  TapeBatchNumber                               no
     29157  TapeBatchNumber                               no
     29158  TapeCapacity                                  no
     29159  TapeFormat?                                   no
     29160  TapeFormulation                               no
     29161  TapeFormulation                               no
     29162  TapeManufacturer                              no
     29163  TapeManufacturer                              no
     29164  TapePartitionCapacity                         no
     29165  TapeShellKind                                 no
     29166  TapeShellKind                                 no
     29167  TapeStock                                     no
     29168  TapeStock                                     no
     29169  TargetAudience                                no
     29170  TargetAudience                                no
     29171  TargetClassOfStrongReference?                 no
     29172  TargetClassOfWeakReference?                   no
     29173  TargetSet?                                    no
     29174  TargetWidth                                   no
     29175  TechnicalValue                                no
     29176  TelephoneNumber                               no
     29177  TelephoneNumber                               no
     29178  TeletextSubtitlesAvailable                    no
     29179  TeletextSubtitlesFlag                         no
     29180  TemporalOffset                                no
     29181  TerminatingFillerData                         no
     29182  TextLocator                                   MXF
     29183  TextlessBlackDuration                         no
     29184  TextlessMaterial                              no
     29185  TextualDescriptionKind                        no
     29186  TextualDescriptionKind                        no
     29187  Theme                                         no
     29188  Theme                                         no
     29189  ThemeMusicFlag                                no
     29190  ThesaurusName                                 no
     29191  ThesaurusName                                 no
     29192  ThirdGivenName                                no
     29193  ThirdGivenName                                no
     29194  TimePeriodName                                no
     29195  TimePeriodName                                no
     29196  TimeSystemOffset                              no
     29197  TimeUnitKind                                  no
     29198  TimebaseReferenceTrackID                      no
     29199  TimecodeArray?                                no
    1577029200  TimecodeComponent                             MXF
    15771   ContentStorageSet                             MXF
    15772   EssenceContainerDataSet                       MXF
    15773   FileDescriptor                                MXF
    15774   GenericPictureEssenceDescriptor               MXF
    15775   CDCIEssenceDescriptor                         MXF
    15776   RGBAEssenceDescriptor                         MXF
    15777   Preface                                       MXF
    15778   Identification                                MXF
    15779   NetworkLocator                                MXF
    15780   TextLocator                                   MXF
    15781   GenericPackage                                MXF
    15782   MaterialPackage                               MXF
    15783   SourcePackage                                 MXF
    15784   GenericTrack                                  MXF
    15785   EventTrack                                    MXF
    15786   StaticTrack                                   MXF
     29201  TimecodeCreationDateTime?                     no
     29202  TimecodeEndDateTime?                          no
     29203  TimecodeEventEndDateTime?                     no
     29204  TimecodeEventStartDateTime?                   no
     29205  TimecodeKind                                  no
     29206  TimecodeLastModifyDate?                       no
     29207  TimecodeModifyDate?                           no
     29208  TimecodeSourceKind                            no
     29209  TimecodeStartDateTime?                        no
     29210  TimecodeStreamData?                           no
     29211  TimecodeTimebase                              no
     29212  TimecodeTimebase                              no
     29213  TimecodeUserBitsFlag                          no
     29214  TimepointValue?                               no
     29215  TimingBiasCorrection                          no
     29216  TimingBiasCorrectionDescription               no
     29217  TitleKind                                     no
     29218  TitleKind                                     no
     29219  Titles                                        MXF
     29220  TitlesSets?                                   no
     29221  ToleranceInterpolationMethod?                 no
     29222  ToleranceMode?                                no
     29223  ToleranceWindow?                              no
     29224  ToolkitVersion                                no
     29225  TotalCurrencyAmount                           no
     29226  TotalEpisodeCount                             no
     29227  TotalIncome                                   no
     29228  TotalLinesperFrame                            no
     29229  TotalNumberInSequence                         no
     29230  TotalPayment                                  no
     29231  TotalSamplesperLine                           no
    1578729232  Track                                         MXF
    15788   DMSegment                                     MXF
    15789   GenericSoundEssenceDescriptor                 MXF
    15790   GenericDataEssenceDescriptor                  MXF
    15791   MultipleDescriptor                            MXF
    15792   DMSourceClip                                  MXF
    15793   AES3PCMDescriptor                             MXF
     29233  TrackID                                       no
     29234  TrackName                                     no
     29235  TrackName                                     no
     29236  TrackNumber                                   no
     29237  TrackNumberBatch                              no
     29238  Tracks?                                       no
     29239  TrafficID                                     no
     29240  TrailingLines                                 no
     29241  TranscriptReference                           no
     29242  TranscriptReference                           no
     29243  TransferFilmFrameRate                         no
     29244  TransitionEffect?                             no
     29245  TransmissionID                                no
     29246  TransportStreamID                             no
     29247  TripletSequenceNumber                         no
     29248  TypeDefinitionElementValueList                no
     29249  TypeDefinitionExtendibleElementValues?        no
     29250  TypeDefinitions?                              no
     29251  UCSEncoding                                   no
     29252  UPID?                                         no
     29253  UPN?                                          no
     29254  URL                                           no
     29255  URL                                           no
     29256  URL                                           no
     29257  URL                                           no
     29258  URN                                           no
     29259  UTCEndDateTime                                no
     29260  UTCEventEndDateTime                           no
     29261  UTCEventEndDateTime                           no
     29262  UTCEventStartDateTime                         no
     29263  UTCEventStartDateTime                         no
     29264  UTCInstantDateTime                            no
     29265  UTCInstantDateTime                            no
     29266  UTCLastModifyDate                             no
     29267  UTCLastModifyDate                             no
     29268  UTCStartDateTime                              no
     29269  UTCStartDateTime                              no
     29270  UTCUserDateTime                               no
     29271  UniformDataFlag                               no
     29272  UnknownBWFChunks?                             no
     29273  UpstreamAudioCompressionAlgorithm             no
     29274  UseDefaultValue                               no
     29275  UserDataMode?                                 no
     29276  UserName                                      no
     29277  UserName                                      no
     29278  UserPosition                                  no
     29279  V10IndexTableSegment?                         no
     29280  VBEEndOffset                                  no
     29281  VBIDataDescriptor                             MXF
     29282  VBILineCount                                  no
     29283  VBIPayloadByteArray                           no
     29284  VBIPayloadSampleCoding                        no
     29285  VBIPayloadSampleCount                         no
     29286  VBIWrappingType                               no
     29287  VC-1AverageBitrate                            no
     29288  VC-1BPictureCount                             no
     29289  VC-1CodedContentType                          no
     29290  VC-1IdenticalGOP                              no
     29291  VC-1InitializationMetadata?                   no
     29292  VC-1Level                                     no
     29293  VC-1MaximumBitrate                            no
     29294  VC-1MaximumGOP                                no
     29295  VC-1Profile                                   no
     29296  VC-1SingleSequence                            no
     29297  Value?                                        no
     29298  VariableArrayElementType?                     no
     29299  VersionNumber                                 no
     29300  VersionNumberString                           no
     29301  VersionNumberString                           no
     29302  VersionTitle                                  no
     29303  VersionTitle                                  no
     29304  VerticalActionSafePercentage                  no
     29305  VerticalDatum                                 no
     29306  VerticalGraphicsSafePercentage                no
     29307  VerticalSub-sampling                          no
     29308  VideoAndFilmFrameRelationship                 no
     29309  VideoAverageBitrate                           no
     29310  VideoClipDuration                             no
     29311  VideoCodingSchemeID?                          no
     29312  VideoColorKind                                no
     29313  VideoCompressionAlgorithm                     no
     29314  VideoDeviceKind                               no
     29315  VideoDeviceParameterName                      no
     29316  VideoDeviceParameterSetting                   no
     29317  VideoFixedBitrate                             no
     29318  VideoIndexArray?                              no
     29319  VideoLineMap                                  no
     29320  VideoNoiseReductionAlgorithm                  no
     29321  VideoOrImageCompressionAlgorithm              no
     29322  VideoPayloadIdentifier                        no
     29323  VideoPayloadIdentifier2002                    no
     29324  VideoTestParameter                            no
     29325  VideoTestResult                               no
     29326  VideoTestResult                               no
     29327  VideoWatermarkKind                            no
     29328  ViewportAspectRatio                           no
     29329  ViewportHeight                                no
     29330  ViewportImageCenterCCoordinate                no
     29331  ViewportImageCenterYCoordinate                no
     29332  ViewportWidth                                 no
     29333  VoiceTalentName                               no
     29334  WAVESummary?                                  no
    1579429335  WaveAudioDescriptor                           MXF
    15795   MPEG2VideoDescriptor                          MXF
    15796   JPEG2000PictureSubDescriptor                  MXF
    15797   VBIDataDescriptor                             MXF
    15798   V10IndexTableSegment?                         N
    15799   IndexTableSegment?                            N
    15800   DMSet                                         MXF
    15801   DMFramework                                   MXF
    15802   ProductionFramework                           MXF
    15803   ClipFramework                                 MXF
    15804   SceneFramework                                MXF
    15805   Titles                                        MXF
    15806   Identification                                MXF
    15807   GroupRelationship                             MXF
    15808   Branding                                      MXF
    15809   Event                                         MXF
    15810   Publication                                   MXF
    15811   Award                                         MXF
    15812   CaptionDescription                            MXF
    15813   Annotation                                    MXF
    15814   SettingPeriod                                 MXF
    15815   Scripting                                     MXF
    15816   Classification                                MXF
    15817   Shot                                          MXF
    15818   KeyPoint                                      MXF
    15819   CueWords                                      MXF
    15820   Participant                                   MXF
    15821   ContactsList                                  MXF
    15822   Person                                        MXF
    15823   Organisation                                  MXF
    15824   Location                                      MXF
    15825   Address                                       MXF
    15826   Communications                                MXF
    15827   Contract                                      MXF
    15828   Rights                                        MXF
    15829   PictureFormat                                 MXF
    15830   DeviceParameters                              MXF
    15831   NameValue                                     MXF
    15832   Processing                                    MXF
    15833   Projects                                      MXF
    15834   CryptographicFramework                        MXF
    15835   CryptographicContext                          MXF
    15836   DefaultObject?                                N
    15837   CipherAlgorithmAES128CBC?                     N
    15838   HMACAlgorithmSHA1128?                         N
    15839   EncryptedContainerLabel?                      N
    15840   CryptographicFrameworkLabel?                  N
     29336  Weighting                                     no
     29337  WhiteReferenceLevel                           no
     29338  Work-in-ProgressFlag                          no
     29339  WorkingTitle                                  no
     29340  WorkingTitle                                  no
     29341  XMLDocumentText?                              no
     29342  XMLDocumentText                               no
     29343  XMLDocumentText                               no
     29344  XMLDocumentText?                              no
     29345  XOsiz                                         no
     29346  XTOsiz                                        no
     29347  XTsiz                                         no
     29348  Xsiz                                          no
     29349  YOsiz                                         no
     29350  YTOsiz                                        no
     29351  YTsiz                                         no
     29352  Ysiz                                          no
    1584129353
    1584229354=head3 MXF Header Tags
    1584329355
    15844    Index   Tag Name                             Writable
    15845    -----   --------                             --------
    15846       0    MXFVersion                           N
    15847      24    FooterPosition                       N
    15848      32    HeaderSize                           N
     29356  Index1   Tag Name                             Writable
     29357  ------   --------                             --------
     29358      0    MXFVersion                           no
     29359     24    FooterPosition                       no
     29360     32    HeaderSize                           no
    1584929361
    1585029362=head2 DV Tags
     
    1585429366  Tag Name                                      Writable
    1585529367  --------                                      --------
    15856   AspectRatio                                   N
    15857   AudioBitsPerSample                            N
    15858   AudioChannels                                 N
    15859   AudioSampleRate                               N
    15860   Colorimetry                                   N
    15861   DateTimeOriginal                              N
    15862   Duration                                      N
    15863   FrameRate                                     N
    15864   ImageHeight                                   N
    15865   ImageWidth                                    N
    15866   TotalBitrate                                  N
    15867   VideoFormat                                   N
    15868   VideoScanType                                 N
     29368  AspectRatio                                   no
     29369  AudioBitsPerSample                            no
     29370  AudioChannels                                 no
     29371  AudioSampleRate                               no
     29372  Colorimetry                                   no
     29373  DateTimeOriginal                              no
     29374  Duration                                      no
     29375  FrameRate                                     no
     29376  ImageHeight                                   no
     29377  ImageWidth                                    no
     29378  TotalBitrate                                  no
     29379  VideoFormat                                   no
     29380  VideoScanType                                 no
    1586929381
    1587029382=head2 Flash Tags
     
    1587529387  Tag ID               Tag Name                 Writable
    1587629388  ------               --------                 --------
    15877   'Compressed'         Compressed               N
    15878   'Duration'           Duration                 N
    15879   'FlashVersion'       FlashVersion             N
    15880   'FrameCount'         FrameCount               N
    15881   'FrameRate'          FrameRate                N
    15882   'ImageHeight'        ImageHeight              N
    15883   'ImageWidth'         ImageWidth               N
    15884   0x0045               FileAttributes           N
     29389  'Compressed'         Compressed               no
     29390  'Duration'           Duration                 no
     29391  'FlashVersion'       FlashVersion             no
     29392  'FrameCount'         FrameCount               no
     29393  'FrameRate'          FrameRate                no
     29394  'ImageHeight'        ImageHeight              no
     29395  'ImageWidth'         ImageWidth               no
     29396  0x0045               FlashAttributes          no
    1588529397  0x004d               XMP                      XMP
    1588629398
     
    1590229414  Tag ID   Tag Name                             Writable
    1590329415  ------   --------                             --------
    15904   'Bit0-3' AudioEncoding                        N
    15905   'Bit4-5' AudioSampleRate                      N
    15906   'Bit6'   AudioBitsPerSample                   N
    15907   'Bit7'   AudioChannels                        N
     29416  'Bit0-3' AudioEncoding                        no
     29417  'Bit4-5' AudioSampleRate                      no
     29418  'Bit6'   AudioBitsPerSample                   no
     29419  'Bit7'   AudioChannels                        no
    1590829420
    1590929421=head3 Flash Video Tags
     
    1591329425  Tag ID   Tag Name                             Writable
    1591429426  ------   --------                             --------
    15915   'Bit4-7' VideoEncoding                        N
     29427  'Bit4-7' VideoEncoding                        no
    1591629428
    1591729429=head3 Flash Meta Tags
     
    1592229434  Tag ID                   Tag Name             Writable
    1592329435  ------                   --------             --------
    15924   'audiocodecid'           AudioCodecID         N
    15925   'audiodatarate'          AudioBitrate         N
    15926   'audiodelay'             AudioDelay           N
    15927   'audiosamplerate'        AudioSampleRate      N
    15928   'audiosamplesize'        AudioSampleSize      N
    15929   'audiosize'              AudioSize            N
    15930   'bytelength'             ByteLength           N
    15931   'canSeekToEnd'           CanSeekToEnd         N
    15932   'canseekontime'          CanSeekOnTime        N
    15933   'createdby'              CreatedBy            N
    15934   'creationdate'           CreateDate           N
     29436  'audiocodecid'           AudioCodecID         no
     29437  'audiodatarate'          AudioBitrate         no
     29438  'audiodelay'             AudioDelay           no
     29439  'audiosamplerate'        AudioSampleRate      no
     29440  'audiosamplesize'        AudioSampleSize      no
     29441  'audiosize'              AudioSize            no
     29442  'bytelength'             ByteLength           no
     29443  'canSeekToEnd'           CanSeekToEnd         no
     29444  'canseekontime'          CanSeekOnTime        no
     29445  'createdby'              CreatedBy            no
     29446  'creationdate'           CreateDate           no
    1593529447  'cuePoints'              CuePoint             Flash CuePoint
    15936   'datasize'               DataSize             N
    15937   'duration'               Duration             N
    15938   'filesize'               FileSizeBytes        N
    15939   'framerate'              FrameRate            N
    15940   'hasAudio'               HasAudio             N
    15941   'hasCuePoints'           HasCuePoints         N
    15942   'hasKeyframes'           HasKeyFrames         N
    15943   'hasMetadata'            HasMetadata          N
    15944   'hasVideo'               HasVideo             N
    15945   'height'                 ImageHeight          N
    15946   'httphostheader'         HTTPHostHeader       N
    15947   'keyframesFilepositions' KeyFramePositions    N
    15948   'keyframesTimes'         KeyFramesTimes       N
    15949   'lastkeyframetimestamp'  LastKeyFrameTime     N
    15950   'lasttimestamp'          LastTimeStamp        N
     29448  'datasize'               DataSize             no
     29449  'duration'               Duration             no
     29450  'filesize'               FileSizeBytes        no
     29451  'framerate'              FrameRate            no
     29452  'hasAudio'               HasAudio             no
     29453  'hasCuePoints'           HasCuePoints         no
     29454  'hasKeyframes'           HasKeyFrames         no
     29455  'hasMetadata'            HasMetadata          no
     29456  'hasVideo'               HasVideo             no
     29457  'height'                 ImageHeight          no
     29458  'httphostheader'         HTTPHostHeader       no
     29459  'keyframesFilepositions' KeyFramePositions    no
     29460  'keyframesTimes'         KeyFramesTimes       no
     29461  'lastkeyframetimestamp'  LastKeyFrameTime     no
     29462  'lasttimestamp'          LastTimeStamp        no
    1595129463  'liveXML'                XMP                  XMP
    15952   'metadatacreator'        MetadataCreator      N
    15953   'metadatadate'           MetadataDate         N
    15954   'pmsg'                   Message              N
    15955   'purl'                   URL                  N
    15956   'sourcedata'             SourceData           N
    15957   'starttime'              StartTime            N
    15958   'stereo'                 Stereo               N
    15959   'totaldatarate'          TotalDataRate        N
    15960   'totalduration'          TotalDuration        N
    15961   'videocodecid'           VideoCodecID         N
    15962   'videodatarate'          VideoBitrate         N
    15963   'videosize'              VideoSize            N
    15964   'width'                  ImageWidth           N
     29464  'metadatacreator'        MetadataCreator      no
     29465  'metadatadate'           MetadataDate         no
     29466  'pmsg'                   Message              no
     29467  'purl'                   URL                  no
     29468  'sourcedata'             SourceData           no
     29469  'starttime'              StartTime            no
     29470  'stereo'                 Stereo               no
     29471  'totaldatarate'          TotalDataRate        no
     29472  'totalduration'          TotalDuration        no
     29473  'videocodecid'           VideoCodecID         no
     29474  'videodatarate'          VideoBitrate         no
     29475  'videosize'              VideoSize            no
     29476  'width'                  ImageWidth           no
    1596529477
    1596629478=head3 Flash CuePoint Tags
     
    1597129483  Tag ID               Tag Name                 Writable
    1597229484  ------               --------                 --------
    15973   'name'               Name                     N
     29485  'name'               Name                     no
    1597429486  'parameters'         Parameter                Flash Parameter
    15975   'time'               Time                     N
    15976   'type'               Type                     N
     29487  'time'               Time                     no
     29488  'type'               Type                     no
    1597729489
    1597829490=head3 Flash Parameter Tags
     
    1600729519  Sequence Tag Name                             Writable
    1600829520  -------- --------                             --------
    16009       0    TitleLen?                            N
    16010       1    Title                                N
    16011       2    AuthorLen?                           N
    16012       3    Author                               N
    16013       4    CopyrightLen?                        N
    16014       5    Copyright                            N
    16015       6    CommentLen?                          N
    16016       7    Comment                              N
     29521      0    TitleLen?                            no
     29522      1    Title                                no
     29523      2    AuthorLen?                           no
     29524      3    Author                               no
     29525      4    CopyrightLen?                        no
     29526      5    Copyright                            no
     29527      6    CommentLen?                          no
     29528      7    Comment                              no
    1601729529
    1601829530=head3 Real MediaProps Tags
     
    1602029532  Sequence Tag Name                             Writable
    1602129533  -------- --------                             --------
    16022       0    StreamNumber                         N
    16023       1    StreamMaxBitrate                     N
    16024       2    StreamAvgBitrate                     N
    16025       3    StreamMaxPacketSize                  N
    16026       4    StreamAvgPacketSize                  N
    16027       5    StreamStartTime                      N
    16028       6    StreamPreroll                        N
    16029       7    StreamDuration                       N
    16030       8    StreamNameLen?                       N
    16031       9    StreamName                           N
    16032      10    StreamMimeLen?                       N
    16033      11    StreamMimeType                       N
    16034      12    FileInfoLen?                         N
    16035      13    FileInfoLen2?                        N
    16036      14    FileInfoVersion                      N
    16037      15    PhysicalStreams?                     N
    16038      16    PhysicalStreamNumbers?               N
    16039      17    DataOffsets?                         N
    16040      18    NumRules?                            N
    16041      19    PhysicalStreamNumberMap?             N
    16042      20    NumProperties?                       N
     29534      0    StreamNumber                         no
     29535      1    StreamMaxBitrate                     no
     29536      2    StreamAvgBitrate                     no
     29537      3    StreamMaxPacketSize                  no
     29538      4    StreamAvgPacketSize                  no
     29539      5    StreamStartTime                      no
     29540      6    StreamPreroll                        no
     29541      7    StreamDuration                       no
     29542      8    StreamNameLen?                       no
     29543      9    StreamName                           no
     29544     10    StreamMimeLen?                       no
     29545     11    StreamMimeType                       no
     29546     12    FileInfoLen?                         no
     29547     13    FileInfoLen2?                        no
     29548     14    FileInfoVersion                      no
     29549     15    PhysicalStreams?                     no
     29550     16    PhysicalStreamNumbers?               no
     29551     17    DataOffsets?                         no
     29552     18    NumRules?                            no
     29553     19    PhysicalStreamNumberMap?             no
     29554     20    NumProperties?                       no
    1604329555     21    FileInfoProperties                   Real FileInfo
    1604429556
     
    1605029562  Tag ID               Tag Name                 Writable
    1605129563  ------               --------                 --------
    16052   'Audiences'          Audiences                N
    16053   'Audio Format'       AudioFormat              N
    16054   'Content Rating'     ContentRating            N
    16055   'Creation Date'      CreateDate               N
    16056   'Description'        Description              N
    16057   'File ID'            FileID                   N
    16058   'Generated By'       Software                 N
    16059   'Indexable'          Indexable                N
    16060   'Keywords'           Keywords                 N
    16061   'Modification Date'  ModifyDate               N
    16062   'Target Audiences'   TargetAudiences          N
    16063   'Video Quality'      VideoQuality             N
    16064   'audioMode'          AudioMode                N
    16065   'videoMode'          VideoMode                N
     29564  'Audiences'          Audiences                no
     29565  'Audio Format'       AudioFormat              no
     29566  'Content Rating'     ContentRating            no
     29567  'Creation Date'      CreateDate               no
     29568  'Description'        Description              no
     29569  'File ID'            FileID                   no
     29570  'Generated By'       Software                 no
     29571  'Indexable'          Indexable                no
     29572  'Keywords'           Keywords                 no
     29573  'Modification Date'  ModifyDate               no
     29574  'Target Audiences'   TargetAudiences          no
     29575  'Video Quality'      VideoQuality             no
     29576  'audioMode'          AudioMode                no
     29577  'videoMode'          VideoMode                no
    1606629578
    1606729579=head3 Real Properties Tags
     
    1606929581  Sequence Tag Name                             Writable
    1607029582  -------- --------                             --------
    16071       0    MaxBitrate                           N
    16072       1    AvgBitrate                           N
    16073       2    MaxPacketSize                        N
    16074       3    AvgPacketSize                        N
    16075       4    NumPackets                           N
    16076       5    Duration                             N
    16077       6    Preroll                              N
    16078       7    IndexOffset?                         N
    16079       8    DataOffset?                          N
    16080       9    NumStreams                           N
    16081      10    Flags                                N
     29583      0    MaxBitrate                           no
     29584      1    AvgBitrate                           no
     29585      2    MaxPacketSize                        no
     29586      3    AvgPacketSize                        no
     29587      4    NumPackets                           no
     29588      5    Duration                             no
     29589      6    Preroll                              no
     29590      7    IndexOffset?                         no
     29591      8    DataOffset?                          no
     29592      9    NumStreams                           no
     29593     10    Flags                                no
    1608229594
    1608329595=head3 Real Metadata Tags
     
    1609329605  Tag ID               Tag Name                 Writable
    1609429606  ------               --------                 --------
    16095   'Album/Name'         AlbumName                N
    16096   'Track/Category'     TrackCategory            N
    16097   'Track/Comments'     TrackComments            N
    16098   'Track/Lyrics'       TrackLyrics              N
     29607  'Album/Name'         AlbumName                no
     29608  'Track/Category'     TrackCategory            no
     29609  'Track/Comments'     TrackComments            no
     29610  'Track/Lyrics'       TrackLyrics              no
    1609929611
    1610029612=head3 Real Audio Tags
     
    1611329625  Sequence Tag Name                             Writable
    1611429626  -------- --------                             --------
    16115       0    Channels                             N
    16116       1    Unknown?                             N
    16117       2    BytesPerMinute                       N
    16118       3    AudioBytes                           N
    16119       4    TitleLen?                            N
    16120       5    Title                                N
    16121       6    ArtistLen?                           N
    16122       7    Artist                               N
    16123       8    CopyrightLen?                        N
    16124       9    Copyright                            N
    16125      10    CommentLen?                          N
    16126      11    Comment                              N
     29627      0    Channels                             no
     29628      1    Unknown?                             no
     29629      2    BytesPerMinute                       no
     29630      3    AudioBytes                           no
     29631      4    TitleLen?                            no
     29632      5    Title                                no
     29633      6    ArtistLen?                           no
     29634      7    Artist                               no
     29635      8    CopyrightLen?                        no
     29636      9    Copyright                            no
     29637     10    CommentLen?                          no
     29638     11    Comment                              no
    1612729639
    1612829640=head3 Real AudioV4 Tags
     
    1613029642  Sequence Tag Name                             Writable
    1613129643  -------- --------                             --------
    16132       0    FourCC1?                             N
    16133       1    AudioFileSize?                       N
    16134       2    Version2?                            N
    16135       3    HeaderSize?                          N
    16136       4    CodecFlavorID?                       N
    16137       5    CodedFrameSize?                      N
    16138       6    AudioBytes                           N
    16139       7    BytesPerMinute                       N
    16140       8    Unknown?                             N
    16141       9    SubPacketH?                          N
    16142      10    AudioFrameSize                       N
    16143      11    SubPacketSize?                       N
    16144      12    Unknown?                             N
    16145      13    SampleRate                           N
    16146      14    Unknown?                             N
    16147      15    BitsPerSample                        N
    16148      16    Channels                             N
    16149      17    FourCC2Len?                          N
    16150      18    FourCC2?                             N
    16151      19    FourCC3Len?                          N
    16152      20    FourCC3?                             N
    16153      21    Unknown?                             N
    16154      22    Unknown?                             N
    16155      23    TitleLen?                            N
    16156      24    Title                                N
    16157      25    ArtistLen?                           N
    16158      26    Artist                               N
    16159      27    CopyrightLen?                        N
    16160      28    Copyright                            N
    16161      29    CommentLen?                          N
    16162      30    Comment                              N
     29644      0    FourCC1?                             no
     29645      1    AudioFileSize?                       no
     29646      2    Version2?                            no
     29647      3    HeaderSize?                          no
     29648      4    CodecFlavorID?                       no
     29649      5    CodedFrameSize?                      no
     29650      6    AudioBytes                           no
     29651      7    BytesPerMinute                       no
     29652      8    Unknown?                             no
     29653      9    SubPacketH?                          no
     29654     10    AudioFrameSize                       no
     29655     11    SubPacketSize?                       no
     29656     12    Unknown?                             no
     29657     13    SampleRate                           no
     29658     14    Unknown?                             no
     29659     15    BitsPerSample                        no
     29660     16    Channels                             no
     29661     17    FourCC2Len?                          no
     29662     18    FourCC2?                             no
     29663     19    FourCC3Len?                          no
     29664     20    FourCC3?                             no
     29665     21    Unknown?                             no
     29666     22    Unknown?                             no
     29667     23    TitleLen?                            no
     29668     24    Title                                no
     29669     25    ArtistLen?                           no
     29670     26    Artist                               no
     29671     27    CopyrightLen?                        no
     29672     28    Copyright                            no
     29673     29    CommentLen?                          no
     29674     30    Comment                              no
    1616329675
    1616429676=head3 Real AudioV5 Tags
     
    1616629678  Sequence Tag Name                             Writable
    1616729679  -------- --------                             --------
    16168       0    FourCC1?                             N
    16169       1    AudioFileSize?                       N
    16170       2    Version2?                            N
    16171       3    HeaderSize?                          N
    16172       4    CodecFlavorID?                       N
    16173       5    CodedFrameSize?                      N
    16174       6    AudioBytes                           N
    16175       7    BytesPerMinute                       N
    16176       8    Unknown?                             N
    16177       9    SubPacketH?                          N
    16178      10    FrameSize?                           N
    16179      11    SubPacketSize?                       N
    16180      12    SampleRate                           N
    16181      13    SampleRate2?                         N
    16182      14    BitsPerSample                        N
    16183      15    Channels                             N
    16184      16    Genr?                                N
    16185      17    FourCC3?                             N
     29680      0    FourCC1?                             no
     29681      1    AudioFileSize?                       no
     29682      2    Version2?                            no
     29683      3    HeaderSize?                          no
     29684      4    CodecFlavorID?                       no
     29685      5    CodedFrameSize?                      no
     29686      6    AudioBytes                           no
     29687      7    BytesPerMinute                       no
     29688      8    Unknown?                             no
     29689      9    SubPacketH?                          no
     29690     10    FrameSize?                           no
     29691     11    SubPacketSize?                       no
     29692     12    SampleRate                           no
     29693     13    SampleRate2?                         no
     29694     14    BitsPerSample                        no
     29695     15    Channels                             no
     29696     16    Genr?                                no
     29697     17    FourCC3?                             no
    1618629698
    1618729699=head3 Real Metafile Tags
     
    1619229704  Tag ID   Tag Name                             Writable
    1619329705  ------   --------                             --------
    16194   'txt'    Text                                 N
    16195   'url'    URL                                  N
     29706  'txt'    Text                                 no
     29707  'url'    URL                                  no
     29708
     29709=head2 Red Tags
     29710
     29711Tags extracted from Redcode R3D video files.
     29712
     29713  Tag ID   Tag Name                             Writable
     29714  ------   --------                             --------
     29715  'RED1'   Red1Header                           Red RED1
     29716  'RED2'   Red2Header                           Red RED2
     29717  0x1000   StartEdgeCode                        no
     29718  0x1001   StartTimecode                        no
     29719  0x1002   OtherDate1                           no
     29720  0x1003   OtherDate2                           no
     29721  0x1004   OtherDate3                           no
     29722  0x1005   DateTimeOriginal                     no
     29723  0x1006   SerialNumber                         no
     29724  0x1019   CameraType                           no
     29725  0x101a   ReelNumber                           no
     29726  0x101b   Take                                 no
     29727  0x1023   DateCreated                          no
     29728  0x1024   TimeCreated                          no
     29729  0x1025   FirmwareVersion                      no
     29730  0x1029   ReelTimecode                         no
     29731  0x102a   StorageType                          no
     29732  0x1030   StorageFormatDate                    no
     29733  0x1031   StorageFormatTime                    no
     29734  0x1032   StorageSerialNumber                  no
     29735  0x1033   StorageModel                         no
     29736  0x1036   AspectRatio                          no
     29737  0x1042   Revision                             no
     29738  0x1056   OriginalFileName                     no
     29739  0x106e   LensMake                             no
     29740  0x106f   LensNumber                           no
     29741  0x1070   LensModel                            no
     29742  0x1071   Model                                no
     29743  0x107c   CameraOperator                       no
     29744  0x1086   VideoFormat                          no
     29745  0x1096   Filter                               no
     29746  0x10a0   Brain                                no
     29747  0x10a1   Sensor                               no
     29748  0x200d   ColorTemperature                     no
     29749  0x204b   RGBCurves                            no
     29750  0x2066   OriginalFrameRate                    no
     29751  0x4037   CropArea                             no
     29752  0x403b   ISO                                  no
     29753  0x406a   FNumber                              no
     29754  0x406b   FocalLength                          no
     29755  0x606c   FocusDistance                        no
     29756
     29757=head3 Red RED1 Tags
     29758
     29759Redcode version 1 header.
     29760
     29761  Index1   Tag Name                             Writable
     29762  ------   --------                             --------
     29763      7    RedcodeVersion                       no
     29764     54    ImageWidth                           no
     29765     58    ImageHeight                          no
     29766     62    FrameRate                            no
     29767     67    OriginalFileName                     no
     29768
     29769=head3 Red RED2 Tags
     29770
     29771Redcode version 2 header.
     29772
     29773  Index1   Tag Name                             Writable
     29774  ------   --------                             --------
     29775      7    RedcodeVersion                       no
     29776     76    ImageWidth                           no
     29777     80    ImageHeight                          no
     29778     86    FrameRate                            no
    1619629779
    1619729780=head2 RIFF Tags
    1619829781
    16199 The RIFF container format is used various types of fines including WAV, AVI
    16200 and WEBP.  According to the EXIF specification, Meta information is embedded
    16201 in two types of RIFF C<LIST> chunks: C<INFO> and C<exif>, and information
    16202 about the audio content is stored in the C<fmt > chunk.  As well as this
    16203 information, some video information and proprietary manufacturer-specific
    16204 information is also extracted.
     29782The RIFF container format is used various types of fines including AVI, WAV,
     29783WEBP, LA, OFR, PAC and WV.  According to the EXIF specification, Meta
     29784information is embedded in two types of RIFF C<LIST> chunks: C<INFO> and
     29785C<exif>, and information about the audio content is stored in the C<fmt >
     29786chunk.  As well as this information, some video information and proprietary
     29787manufacturer-specific information is also extracted.
     29788
     29789Large AVI videos may be a concatenation of two or more RIFF chunks.  For
     29790these files, information is extracted from subsequent RIFF chunks as
     29791sub-documents, but the Duration is calculated for the full video.
    1620529792
    1620629793  Tag ID               Tag Name                 Writable
    1620729794  ------               --------                 --------
     29795  'ALPH'               ALPH                     RIFF ALPH
     29796  'ANIM'               ANIM                     RIFF ANIM
     29797  'ANMF'               ANMF                     RIFF ANMF
     29798  'CSET'               CharacterSet             RIFF CSET
     29799  'EXIF'               EXIF                     EXIF
     29800                       UnknownEXIF              no
     29801  'ICCP'               ICC_Profile              ICC_Profile
     29802  'IDIT'               DateTimeOriginal         no
    1620829803  'JUNK'               OlympusJunk              Olympus AVI
    1620929804                       CasioJunk                EXIF
    1621029805                       RicohJunk                Ricoh AVI
    1621129806                       PentaxJunk               Pentax Junk
    16212                        TextJunk                 N
    16213   'JUNQ'               OldXMP                   N
     29807                       PentaxJunk2              Pentax Junk2
     29808                       LucasJunk                QuickTime Stream
     29809                       TextJunk                 no
     29810  'JUNQ'               OldXMP                   no
     29811  'LIST_INF0'          Info                     RIFF Info
    1621429812  'LIST_INFO'          Info                     RIFF Info
    1621529813  'LIST_Tdat'          Tdat                     RIFF Tdat
     
    1621829816  'LIST_hydt'          PentaxData               Pentax AVI
    1621929817  'LIST_ncdt'          NikonData                Nikon AVI
     29818  'LIST_pntx'          PentaxData2              Pentax AVI
     29819  'SGLT'               BikeBroAccel             QuickTime Stream
     29820  'SLLT'               BikeBroGPS               QuickTime Stream
     29821  'VP8 '               VP8Bitstream             RIFF VP8
     29822  'VP8L'               VP8L                     RIFF VP8L
     29823  'VP8X'               VP8X                     RIFF VP8X
     29824  'XMP '               XMP                      XMP
    1622029825  '_PMX'               XMP                      XMP
     29826  'aXML'               AXML                     XMP XML
     29827  'afsp'               Afsp                     no
    1622129828  'bext'               BroadcastExtension       RIFF BroadcastExt
     29829  'cue '               CuePoints                no
     29830  'ds64'               DataSize64               RIFF DS64
     29831  'fact'               NumberOfSamples          no
    1622229832  'fmt '               AudioFormat              RIFF AudioFormat
     29833  'gps0'               GPSTrack                 QuickTime Stream
     29834  'gsen'               GSensor                  QuickTime Stream
     29835  'iXML'               IXML                     XMP XML
     29836  'labl'               Label                    RIFF Label
     29837  'list'               ListType                 no
    1622329838  'olym'               Olym                     Olympus WAV
     29839  'tx_USER'            UserText                 RIFF UserText
     29840  'tx_Unknown'         Text                     no
     29841
     29842=head3 RIFF ALPH Tags
     29843
     29844WebP alpha chunk.
     29845
     29846  Index1   Tag Name                             Writable
     29847  ------   --------                             --------
     29848      0    AlphaPreprocessing                   no
     29849    0.1    AlphaFiltering                       no
     29850    0.2    AlphaCompression                     no
     29851
     29852=head3 RIFF ANIM Tags
     29853
     29854WebP animation chunk.
     29855
     29856  Index1   Tag Name                             Writable
     29857  ------   --------                             --------
     29858      0    BackgroundColor                      no
     29859      4    AnimationLoopCount                   no
     29860
     29861=head3 RIFF ANMF Tags
     29862
     29863WebP animation frame chunk.
     29864
     29865  Index1   Tag Name                             Writable
     29866  ------   --------                             --------
     29867     12    Duration                             no
     29868
     29869=head3 RIFF CSET Tags
     29870
     29871  Index2   Tag Name                             Writable
     29872  ------   --------                             --------
     29873      0    CodePage                             no
     29874      1    CountryCode                          no
     29875      2    LanguageCode                         no
     29876      3    Dialect                              no
    1622429877
    1622529878=head3 RIFF Info Tags
    1622629879
    16227 RIFF INFO tags found in WAV audio and AVI video files.  Tags which are part
     29880RIFF INFO tags found in AVI video and WAV audio files.  Tags which are part
    1622829881of the EXIF 2.3 specification have an underlined Tag Name in the HTML
    1622929882version of this documentation.  Other tags are found in AVI files generated
     
    1623229885  Tag ID   Tag Name                             Writable
    1623329886  ------   --------                             --------
    16234   'AGES'   Rated                                N
    16235   'CMNT'   Comment                              N
    16236   'CODE'   EncodedBy                            N
    16237   'COMM'   Comments                             N
    16238   'DIRC'   Directory                            N
    16239   'DISP'   SoundSchemeTitle                     N
    16240   'DTIM'   DateTimeOriginal                     N
    16241   'GENR'   Genre                                N
    16242   'IARL'   ArchivalLocation                     N
    16243   'IART'   Artist                               N
    16244   'IAS1'   FirstLanguage                        N
    16245   'IAS2'   SecondLanguage                       N
    16246   'IAS3'   ThirdLanguage                        N
    16247   'IAS4'   FourthLanguage                       N
    16248   'IAS5'   FifthLanguage                        N
    16249   'IAS6'   SixthLanguage                        N
    16250   'IAS7'   SeventhLanguage                      N
    16251   'IAS8'   EighthLanguage                       N
    16252   'IAS9'   NinthLanguage                        N
    16253   'IBSU'   BaseURL                              N
    16254   'ICAS'   DefaultAudioStream                   N
    16255   'ICDS'   CostumeDesigner                      N
    16256   'ICMS'   Commissioned                         N
    16257   'ICMT'   Comment                              N
    16258   'ICNM'   Cinematographer                      N
    16259   'ICNT'   Country                              N
    16260   'ICOP'   Copyright                            N
    16261   'ICRD'   DateCreated                          N
    16262   'ICRP'   Cropped                              N
    16263   'IDIM'   Dimensions                           N
    16264   'IDPI'   DotsPerInch                          N
    16265   'IDST'   DistributedBy                        N
    16266   'IEDT'   EditedBy                             N
    16267   'IENC'   EncodedBy                            N
    16268   'IENG'   Engineer                             N
    16269   'IGNR'   Genre                                N
    16270   'IKEY'   Keywords                             N
    16271   'ILGT'   Lightness                            N
    16272   'ILGU'   LogoURL                              N
    16273   'ILIU'   LogoIconURL                          N
    16274   'ILNG'   Language                             N
    16275   'IMBI'   MoreInfoBannerImage                  N
    16276   'IMBU'   MoreInfoBannerURL                    N
    16277   'IMED'   Medium                               N
    16278   'IMIT'   MoreInfoText                         N
    16279   'IMIU'   MoreInfoURL                          N
    16280   'IMUS'   MusicBy                              N
    16281   'INAM'   Title                                N
    16282   'IPDS'   ProductionDesigner                   N
    16283   'IPLT'   NumColors                            N
    16284   'IPRD'   Product                              N
    16285   'IPRO'   ProducedBy                           N
    16286   'IRIP'   RippedBy                             N
    16287   'IRTD'   Rating                               N
    16288   'ISBJ'   Subject                              N
    16289   'ISFT'   Software                             N
    16290   'ISGN'   SecondaryGenre                       N
    16291   'ISHP'   Sharpness                            N
    16292   'ISRC'   Source                               N
    16293   'ISRF'   SourceForm                           N
    16294   'ISTD'   ProductionStudio                     N
    16295   'ISTR'   Starring                             N
    16296   'ITCH'   Technician                           N
    16297   'IWMU'   WatermarkURL                         N
    16298   'IWRI'   WrittenBy                            N
    16299   'LANG'   Language                             N
    16300   'LOCA'   Location                             N
    16301   'PRT1'   Part                                 N
    16302   'PRT2'   NumberOfParts                        N
    16303   'RATE'   Rate                                 N
    16304   'STAR'   Starring                             N
    16305   'STAT'   Statistics                           N
    16306   'TAPE'   TapeName                             N
    16307   'TCDO'   EndTimecode                          N
    16308   'TCOD'   StartTimecode                        N
    16309   'TITL'   Title                                N
    16310   'TLEN'   Length                               N
    16311   'TORG'   Organization                         N
    16312   'TRCK'   TrackNumber                          N
    16313   'TURL'   URL                                  N
    16314   'TVER'   Version                              N
    16315   'VMAJ'   VegasVersionMajor                    N
    16316   'VMIN'   VegasVersionMinor                    N
    16317   'YEAR'   Year                                 N
     29887  'AGES'   Rated                                no
     29888  'CMNT'   Comment                              no
     29889  'CODE'   EncodedBy                            no
     29890  'COMM'   Comments                             no
     29891  'DIRC'   Directory                            no
     29892  'DISP'   SoundSchemeTitle                     no
     29893  'DTIM'   DateTimeOriginal                     no
     29894  'GENR'   Genre                                no
     29895  'IARL'   ArchivalLocation                     no
     29896  'IART'   Artist                               no
     29897  'IAS1'   FirstLanguage                        no
     29898  'IAS2'   SecondLanguage                       no
     29899  'IAS3'   ThirdLanguage                        no
     29900  'IAS4'   FourthLanguage                       no
     29901  'IAS5'   FifthLanguage                        no
     29902  'IAS6'   SixthLanguage                        no
     29903  'IAS7'   SeventhLanguage                      no
     29904  'IAS8'   EighthLanguage                       no
     29905  'IAS9'   NinthLanguage                        no
     29906  'IBSU'   BaseURL                              no
     29907  'ICAS'   DefaultAudioStream                   no
     29908  'ICDS'   CostumeDesigner                      no
     29909  'ICMS'   Commissioned                         no
     29910  'ICMT'   Comment                              no
     29911  'ICNM'   Cinematographer                      no
     29912  'ICNT'   Country                              no
     29913  'ICOP'   Copyright                            no
     29914  'ICRD'   DateCreated                          no
     29915  'ICRP'   Cropped                              no
     29916  'IDIM'   Dimensions                           no
     29917  'IDIT'   DateTimeOriginal                     no
     29918  'IDPI'   DotsPerInch                          no
     29919  'IDST'   DistributedBy                        no
     29920  'IEDT'   EditedBy                             no
     29921  'IENC'   EncodedBy                            no
     29922  'IENG'   Engineer                             no
     29923  'IGNR'   Genre                                no
     29924  'IKEY'   Keywords                             no
     29925  'ILGT'   Lightness                            no
     29926  'ILGU'   LogoURL                              no
     29927  'ILIU'   LogoIconURL                          no
     29928  'ILNG'   Language                             no
     29929  'IMBI'   MoreInfoBannerImage                  no
     29930  'IMBU'   MoreInfoBannerURL                    no
     29931  'IMED'   Medium                               no
     29932  'IMIT'   MoreInfoText                         no
     29933  'IMIU'   MoreInfoURL                          no
     29934  'IMUS'   MusicBy                              no
     29935  'INAM'   Title                                no
     29936  'IPDS'   ProductionDesigner                   no
     29937  'IPLT'   NumColors                            no
     29938  'IPRD'   Product                              no
     29939  'IPRO'   ProducedBy                           no
     29940  'IRIP'   RippedBy                             no
     29941  'IRTD'   Rating                               no
     29942  'ISBJ'   Subject                              no
     29943  'ISFT'   Software                             no
     29944  'ISGN'   SecondaryGenre                       no
     29945  'ISHP'   Sharpness                            no
     29946  'ISMP'   TimeCode                             no
     29947  'ISRC'   Source                               no
     29948  'ISRF'   SourceForm                           no
     29949  'ISTD'   ProductionStudio                     no
     29950  'ISTR'   Starring                             no
     29951  'ITCH'   Technician                           no
     29952  'IWMU'   WatermarkURL                         no
     29953  'IWRI'   WrittenBy                            no
     29954  'LANG'   Language                             no
     29955  'LOCA'   Location                             no
     29956  'PRT1'   Part                                 no
     29957  'PRT2'   NumberOfParts                        no
     29958  'RATE'   Rate                                 no
     29959  'STAR'   Starring                             no
     29960  'STAT'   Statistics                           no
     29961  'TAPE'   TapeName                             no
     29962  'TCDO'   EndTimecode                          no
     29963  'TCOD'   StartTimecode                        no
     29964  'TITL'   Title                                no
     29965  'TLEN'   Length                               no
     29966  'TORG'   Organization                         no
     29967  'TRCK'   TrackNumber                          no
     29968  'TURL'   URL                                  no
     29969  'TVER'   Version                              no
     29970  'VMAJ'   VegasVersionMajor                    no
     29971  'VMIN'   VegasVersionMinor                    no
     29972  'YEAR'   Year                                 no
    1631829973
    1631929974=head3 RIFF Tdat Tags
     
    1632929984  Tag ID   Tag Name                             Writable
    1633029985  ------   --------                             --------
    16331   'ecor'   Make                                 N
    16332   'emdl'   Model                                N
    16333   'emnt'   MakerNotes                           N
    16334   'erel'   RelatedImageFile                     N
    16335   'etim'   TimeCreated                          N
    16336   'eucm'   UserComment                          N
    16337   'ever'   ExifVersion                          N
     29986  'ecor'   Make                                 no
     29987  'emdl'   Model                                no
     29988  'emnt'   MakerNotes                           no
     29989  'erel'   RelatedImageFile                     no
     29990  'etim'   TimeCreated                          no
     29991  'eucm'   UserComment                          no
     29992  'ever'   ExifVersion                          no
    1633829993
    1633929994=head3 RIFF Hdrl Tags
     
    1634129996  Tag ID               Tag Name                 Writable
    1634229997  ------               --------                 --------
    16343   'IDIT'               DateTimeOriginal         N
    16344   'ISMP'               Timecode                 N
     29998  'IDIT'               DateTimeOriginal         no
     29999  'ISMP'               TimeCode                 no
    1634530000  'LIST_odml'          OpenDML                  RIFF OpenDML
    1634630001  'LIST_strl'          Stream                   RIFF Stream
     
    1635530010=head3 RIFF ExtAVIHdr Tags
    1635630011
    16357    Index   Tag Name                             Writable
    16358    -----   --------                             --------
    16359       0    TotalFrameCount                      N
     30012  Index4   Tag Name                             Writable
     30013  ------   --------                             --------
     30014      0    TotalFrameCount                      no
    1636030015
    1636130016=head3 RIFF Stream Tags
     
    1636730022           VideoFormat                          BMP
    1636830023  'strh'   StreamHeader                         RIFF StreamHeader
    16369   'strn'   StreamName                           N
     30024  'strn'   StreamName                           no
    1637030025
    1637130026=head3 RIFF StreamData Tags
     
    1637830033  'AVIF'       AVIF                             EXIF
    1637930034  'CASI'       CasioData                        Casio AVI
    16380   'Zora'       VendorName                       N
    16381   'unknown'    UnknownData                      N
     30035  'Zora'       VendorName                       no
     30036  'unknown'    UnknownData                      no
    1638230037
    1638330038=head3 RIFF AudioFormat Tags
    1638430039
    16385    Index   Tag Name                             Writable
    16386    -----   --------                             --------
    16387       0    Encoding                             N
    16388       1    NumChannels                          N
    16389       2    SampleRate                           N
    16390       4    AvgBytesPerSec                       N
    16391       7    BitsPerSample                        N
     30040  Index2   Tag Name                             Writable
     30041  ------   --------                             --------
     30042      0    Encoding                             no
     30043      1    NumChannels                          no
     30044      2    SampleRate                           no
     30045      4    AvgBytesPerSec                       no
     30046      7    BitsPerSample                        no
    1639230047
    1639330048=head3 RIFF StreamHeader Tags
    1639430049
    16395    Index   Tag Name                             Writable
    16396    -----   --------                             --------
    16397       0    StreamType                           N
    16398       1    AudioCodec                           N
    16399            VideoCodec                           N
    16400            Codec                                N
    16401       5    AudioSampleRate                      N
    16402            VideoFrameRate                       N
    16403            StreamSampleRate                     N
    16404       8    AudioSampleCount                     N
    16405            VideoFrameCount                      N
    16406            StreamSampleCount                    N
    16407      10    Quality                              N
    16408      11    SampleSize                           N
     30050  Index4   Tag Name                             Writable
     30051  ------   --------                             --------
     30052      0    StreamType                           no
     30053      1    AudioCodec                           no
     30054           VideoCodec                           no
     30055           Codec                                no
     30056      5    AudioSampleRate                      no
     30057           VideoFrameRate                       no
     30058           StreamSampleRate                     no
     30059      8    AudioSampleCount                     no
     30060           VideoFrameCount                      no
     30061           StreamSampleCount                    no
     30062     10    Quality                              no
     30063     11    SampleSize                           no
    1640930064
    1641030065=head3 RIFF AVIHeader Tags
    1641130066
    16412    Index   Tag Name                             Writable
    16413    -----   --------                             --------
    16414       0    FrameRate                            N
    16415       1    MaxDataRate                          N
    16416       4    FrameCount                           N
    16417       6    StreamCount                          N
    16418       8    ImageWidth                           N
    16419       9    ImageHeight                          N
     30067  Index4   Tag Name                             Writable
     30068  ------   --------                             --------
     30069      0    FrameRate                            no
     30070      1    MaxDataRate                          no
     30071      4    FrameCount                           no
     30072      6    StreamCount                          no
     30073      8    ImageWidth                           no
     30074      9    ImageHeight                          no
     30075
     30076=head3 RIFF VP8 Tags
     30077
     30078This chunk is found in simple-format (lossy) WebP files. See
     30079L<https://developers.google.com/speed/webp/docs/riff_container> for the WebP
     30080container specification.
     30081
     30082  Index1   Tag Name                             Writable
     30083  ------   --------                             --------
     30084      0    VP8Version                           no
     30085      6    ImageWidth                           no
     30086    6.1    HorizontalScale                      no
     30087      8    ImageHeight                          no
     30088    8.1    VerticalScale                        no
     30089
     30090=head3 RIFF VP8L Tags
     30091
     30092This chunk is found in lossless WebP files.
     30093
     30094  Index1   Tag Name                             Writable
     30095  ------   --------                             --------
     30096      1    ImageWidth                           no
     30097      2    ImageHeight                          no
     30098
     30099=head3 RIFF VP8X Tags
     30100
     30101This chunk is found in extended WebP files.
     30102
     30103  Index1   Tag Name                             Writable
     30104  ------   --------                             --------
     30105      4    ImageWidth                           no
     30106      6    ImageHeight                          no
    1642030107
    1642130108=head3 RIFF BroadcastExt Tags
     
    1642430111L<http://tech.ebu.ch/docs/tech/tech3285.pdf>).
    1642530112
    16426    Index   Tag Name                             Writable
    16427    -----   --------                             --------
    16428       0    Description                          N
    16429     256    Originator                           N
    16430     288    OriginatorReference                  N
    16431     320    DateTimeOriginal                     N
    16432     338    TimeReference                        N
    16433     346    BWFVersion                           N
    16434     602    CodingHistory                        N
     30113  Index1   Tag Name                             Writable
     30114  ------   --------                             --------
     30115      0    Description                          no
     30116    256    Originator                           no
     30117    288    OriginatorReference                  no
     30118    320    DateTimeOriginal                     no
     30119    338    TimeReference                        no
     30120    346    BWFVersion                           no
     30121    348    BWF_UMID                             no
     30122    602    CodingHistory                        no
     30123
     30124=head3 RIFF DS64 Tags
     30125
     3012664-bit data sizes for MBWF/RF64 files.  See
     30127L<https://tech.ebu.ch/docs/tech/tech3306-2009.pdf> for the specification.
     30128
     30129  Index8   Tag Name                             Writable
     30130  ------   --------                             --------
     30131      0    RIFFSize64                           no
     30132      1    DataSize64                           no
     30133      2    NumberOfSamples64                    no
     30134
     30135=head3 RIFF Label Tags
     30136
     30137  Index4   Tag Name                             Writable
     30138  ------   --------                             --------
     30139      0    LabelID                              no
     30140      1    LabelText                            no
     30141
     30142=head3 RIFF UserText Tags
     30143
     30144Tags decoded from the USER-format txts stream written by Momento M6 dashcam.
     30145Extracted only if the ExtractEmbedded option is used.
     30146
     30147  Index1   Tag Name                             Writable
     30148  ------   --------                             --------
     30149     28    GPSAltitude                          no
     30150     40    Accelerometer                        no
     30151     56    GPSSpeed                             no
     30152     60    GPSLatitude                          no
     30153     64    GPSLongitude                         no
     30154     68    GPSDateTime                          no
    1643530155
    1643630156=head2 AIFF Tags
    1643730157
    16438 Only the tags decoded by ExifTool are listed in this table.
     30158Tags extracted from Audio Interchange File Format (AIFF) files.  See
     30159L<http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/AIFF/AIFF.html> for
     30160the AIFF specification.
    1643930161
    1644030162  Tag ID   Tag Name                             Writable
    1644130163  ------   --------                             --------
    16442   '(c) '   Copyright                            N
    16443   'ANNO'   Annotation                           N
    16444   'AUTH'   Author                               N
     30164  '(c) '   Copyright                            no
     30165  'ANNO'   Annotation                           no
     30166  'APPL'   ApplicationData                      no
     30167  'AUTH'   Author                               no
    1644530168  'COMM'   Common                               AIFF Common
    1644630169  'COMT'   Comment                              AIFF Comment
    1644730170  'FVER'   FormatVersion                        AIFF FormatVers
    1644830171  'ID3 '   ID3                                  ID3
    16449   'NAME'   Name                                 N
     30172  'NAME'   Name                                 no
    1645030173
    1645130174=head3 AIFF Common Tags
    1645230175
    16453    Index   Tag Name                             Writable
    16454    -----   --------                             --------
    16455       0    NumChannels                          N
    16456       1    NumSampleFrames                      N
    16457       3    SampleSize                           N
    16458       4    SampleRate                           N
    16459       9    CompressionType                      N
     30176  Index2   Tag Name                             Writable
     30177  ------   --------                             --------
     30178      0    NumChannels                          no
     30179      1    NumSampleFrames                      no
     30180      3    SampleSize                           no
     30181      4    SampleRate                           no
     30182      9    CompressionType                      no
     30183     11    CompressorName                       no
    1646030184
    1646130185=head3 AIFF Comment Tags
     
    1646330187  Tag ID   Tag Name                             Writable
    1646430188  ------   --------                             --------
    16465   0x0000   CommentTime                          N
    16466   0x0001   MarkerID                             N
    16467   0x0002   Comment                              N
     30189  0x0000   CommentTime                          no
     30190  0x0001   MarkerID                             no
     30191  0x0002   Comment                              no
    1646830192
    1646930193=head3 AIFF FormatVers Tags
    1647030194
    16471    Index   Tag Name                             Writable
    16472    -----   --------                             --------
    16473       0    FormatVersionTime                    N
     30195  Index4   Tag Name                             Writable
     30196  ------   --------                             --------
     30197      0    FormatVersionTime                    no
    1647430198
    1647530199=head2 ASF Tags
     
    1648130205  Tag Name                                      Writable
    1648230206  --------                                      --------
    16483   SimpleIndex                                   N
    16484   TimecodeIndex                                 N
     30207  SimpleIndex                                   no
     30208  TimecodeIndex                                 no
    1648530209  Header                                        ASF Header
    16486   Data                                          N
     30210  Data                                          no
    1648730211  XMP                                           XMP
    16488   Index                                         N
    16489   MediaIndex                                    N
     30212  Index                                         no
     30213  MediaIndex                                    no
    1649030214
    1649130215=head3 ASF Header Tags
     
    1649330217  Tag Name                                      Writable
    1649430218  --------                                      --------
    16495   Padding                                       N
    16496   ScriptCommand                                 N
     30219  Padding                                       no
     30220  ScriptCommand                                 no
    1649730221  ContentBranding                               ASF ContentBranding
    16498   ContentEncryption                             N
    16499   DigitalSignature                              N
    16500   ExtendedContentEncryption                     N
     30222  ContentEncryption                             no
     30223  DigitalSignature                              no
     30224  ExtendedContentEncryption                     no
    1650130225  HeaderExtension                               ASF HeaderExtension
    1650230226  ContentDescription                            ASF ContentDescr
    16503   ErrorCorrection                               N
    16504   StreamBitrateProps                            N
     30227  ErrorCorrection                               no
     30228  StreamBitrateProps                            no
    1650530229  CodecList                                     ASF CodecList
    1650630230  FileProperties                                ASF FileProperties
    1650730231  StreamProperties                              ASF StreamProperties
    1650830232  ExtendedContentDescr                          ASF ExtendedDescr
    16509   BitrateMutualExclusion                        N
    16510   Marker                                        N
     30233  BitrateMutualExclusion                        no
     30234  Marker                                        no
    1651130235
    1651230236=head3 ASF ContentBranding Tags
     
    1651430238  Tag Name                                      Writable
    1651530239  --------                                      --------
    16516   BannerImageType                               N
    16517   BannerImage                                   N
    16518   BannerImageURL                                N
    16519   CopyrightURL                                  N
     30240  BannerImageType                               no
     30241  BannerImage                                   no
     30242  BannerImageURL                                no
     30243  CopyrightURL                                  no
    1652030244
    1652130245=head3 ASF HeaderExtension Tags
     
    1652330247  Tag Name                                      Writable
    1652430248  --------                                      --------
    16525   ExtendedStreamProps                           N
    16526   AdvancedContentEncryption                     N
    16527   MetadataLibrary                               ASF Metadata
    16528   TimecodeIndexParms                            N
    16529   Compatibility                                 N
    16530   LanguageList                                  N
    16531   AdvancedMutualExcl                            N
    16532   BandwidthSharing                              N
    16533   Reserved1                                     N
    16534   Metadata                                      ASF Metadata
    16535   GroupMutualExclusion                          N
    16536   StreamPrioritization                          N
    16537   IndexParameters                               N
    16538 
    16539 =head3 ASF Metadata Tags
     30249  ExtendedStreamProps                           no
     30250  AdvancedContentEncryption                     no
     30251  MetadataLibrary                               ASF ExtendedDescr
     30252  TimecodeIndexParms                            no
     30253  Compatibility                                 no
     30254  LanguageList                                  no
     30255  AdvancedMutualExcl                            no
     30256  BandwidthSharing                              no
     30257  Reserved1                                     no
     30258  Metadata                                      ASF ExtendedDescr
     30259  GroupMutualExclusion                          no
     30260  StreamPrioritization                          no
     30261  IndexParameters                               no
     30262
     30263=head3 ASF ExtendedDescr Tags
    1654030264
    1654130265  Tag Name                                      Writable
    1654230266  --------                                      --------
    16543   [no tags known]
    16544 
    16545 =head3 ASF ContentDescr Tags
     30267  ASFLeakyBucketPairs                           no
     30268  ASFPacketCount                                no
     30269  ASFSecurityObjectsSize                        no
     30270  AlbumArtist                                   no
     30271  AlbumCoverURL                                 no
     30272  AlbumTitle                                    no
     30273  AspectRatioX                                  no
     30274  AspectRatioY                                  no
     30275  AudioFileURL                                  no
     30276  AudioSourceURL                                no
     30277  Author                                        no
     30278  AuthorURL                                     no
     30279  AverageLevel                                  no
     30280  BannerImageData                               no
     30281  BannerImageType                               no
     30282  BannerImageURL                                no
     30283  BeatsPerMinute                                no
     30284  Bitrate                                       no
     30285  Broadcast                                     no
     30286  BufferAverage                                 no
     30287  Can_Skip_Backward                             no
     30288  Can_Skip_Forward                              no
     30289  Category                                      no
     30290  Codec                                         no
     30291  Composer                                      no
     30292  Conductor                                     no
     30293  ContainerFormat                               no
     30294  ContentDistributor                            no
     30295  ContentGroupDescription                       no
     30296  Copyright                                     no
     30297  CopyrightURL                                  no
     30298  CurrentBitrate                                no
     30299  DRM                                           no
     30300  DRM_ContentID                                 no
     30301  DRM_DRMHeader                                 no
     30302  DRM_DRMHeader_ContentDistributor              no
     30303  DRM_DRMHeader_ContentID                       no
     30304  DRM_DRMHeader_IndividualizedVersion           no
     30305  DRM_DRMHeader_KeyID                           no
     30306  DRM_DRMHeader_LicenseAcqURL                   no
     30307  DRM_DRMHeader_SubscriptionContentID           no
     30308  DRM_IndividualizedVersion                     no
     30309  DRM_KeyID                                     no
     30310  DRM_LASignatureCert                           no
     30311  DRM_LASignatureLicSrvCert                     no
     30312  DRM_LASignaturePrivKey                        no
     30313  DRM_LASignatureRootCert                       no
     30314  DRM_LicenseAcqURL                             no
     30315  DRM_V1LicenseAcqURL                           no
     30316  DVDID                                         no
     30317  Description                                   no
     30318  Director                                      no
     30319  Duration                                      no
     30320  EncodedBy                                     no
     30321  EncodingSettings                              no
     30322  EncodingTime                                  no
     30323  FileSize                                      no
     30324  Genre                                         no
     30325  GenreID                                       no
     30326  HasArbitraryDataStream                        no
     30327  HasAttachedImages                             no
     30328  HasAudio                                      no
     30329  HasFileTransferStream                         no
     30330  HasImage                                      no
     30331  HasScript                                     no
     30332  HasVideo                                      no
     30333  ISRC                                          no
     30334  InitialKey                                    no
     30335  IsVBR                                         no
     30336  Is_Protected                                  no
     30337  Is_Trusted                                    no
     30338  Language                                      no
     30339  Lyrics                                        no
     30340  Lyrics_Synchronised                           no
     30341  MCDI                                          no
     30342  MediaClassPrimaryID                           no
     30343  MediaClassSecondaryID                         no
     30344  MediaCredits                                  no
     30345  MediaIsDelay                                  no
     30346  MediaIsFinale                                 no
     30347  MediaIsLive                                   no
     30348  MediaIsPremiere                               no
     30349  MediaIsRepeat                                 no
     30350  MediaIsSAP                                    no
     30351  MediaIsStereo                                 no
     30352  MediaIsSubtitled                              no
     30353  MediaIsTape                                   no
     30354  MediaNetworkAffiliation                       no
     30355  MediaOriginalBroadcastDateTime                no
     30356  MediaOriginalChannel                          no
     30357  MediaStationCallSign                          no
     30358  MediaStationName                              no
     30359  ModifiedBy                                    no
     30360  Mood                                          no
     30361  NSC_Address                                   no
     30362  NSC_Description                               no
     30363  NSC_Email                                     no
     30364  NSC_Name                                      no
     30365  NSC_Phone                                     no
     30366  NumberOfFrames                                no
     30367  OptimalBitrate                                no
     30368  OriginalAlbumTitle                            no
     30369  OriginalArtist                                no
     30370  OriginalFileName                              no
     30371  OriginalLyricist                              no
     30372  OriginalReleaseTime                           no
     30373  OriginalReleaseYear                           no
     30374  ParentalRating                                no
     30375  ParentalRatingReason                          no
     30376  PartOfSet                                     no
     30377  PeakBitrate                                   no
     30378  PeakValue                                     no
     30379  Period                                        no
     30380  Picture                                       ASF Picture
     30381  PlaylistDelay                                 no
     30382  Producer                                      no
     30383  PromotionURL                                  no
     30384  ProtectionType                                no
     30385  Provider                                      no
     30386  ProviderCopyright                             no
     30387  ProviderRating                                no
     30388  ProviderStyle                                 no
     30389  Publisher                                     no
     30390  RadioStationName                              no
     30391  RadioStationOwner                             no
     30392  Rating                                        no
     30393  Seekable                                      no
     30394  SharedUserRating                              no
     30395  Signature_Name                                no
     30396  StreamTypeInfo                                no
     30397  Stridable                                     no
     30398  Subtitle                                      no
     30399  SubtitleDescription                           no
     30400  SubscriptionContentID                         no
     30401  Text                                          no
     30402  Title                                         no
     30403  ToolName                                      no
     30404  ToolVersion                                   no
     30405  Track                                         no
     30406  TrackNumber                                   no
     30407  UniqueFileIdentifier                          no
     30408  UserWebURL                                    no
     30409  VBRPeak                                       no
     30410  VideoClosedCaptioning                         no
     30411  VideoFrameRate                                no
     30412  VideoHeight                                   no
     30413  VideoWidth                                    no
     30414  WMADRCAverageReference                        no
     30415  WMADRCAverageTarget                           no
     30416  WMADRCPeakReference                           no
     30417  WMADRCPeakTarget                              no
     30418  WMCollectionGroupID                           no
     30419  WMCollectionID                                no
     30420  WMContentID                                   no
     30421  Writer                                        no
     30422  Year                                          no
     30423
     30424=head3 ASF Picture Tags
    1654630425
    1654730426  Tag Name                                      Writable
    1654830427  --------                                      --------
    16549   Title                                         N
    16550   Author                                        N
    16551   Copyright                                     N
    16552   Description                                   N
    16553   Rating                                        N
    16554 
    16555 =head3 ASF CodecList Tags
     30428  PictureType                                   no
     30429  PictureMIMEType                               no
     30430  PictureDescription                            no
     30431  Picture                                       no
     30432
     30433=head3 ASF ContentDescr Tags
    1655630434
    1655730435  Tag Name                                      Writable
    1655830436  --------                                      --------
    16559   AudioCodecDescription                         N
    16560   AudioCodecName                                N
    16561   OtherCodecDescription                         N
    16562   OtherCodecName                                N
    16563   VideoCodecDescription                         N
    16564   VideoCodecName                                N
    16565 
    16566 =head3 ASF FileProperties Tags
    16567 
    16568    Index   Tag Name                             Writable
    16569    -----   --------                             --------
    16570       0    FileID                               N
    16571      16    FileLength                           N
    16572      24    CreationDate                         N
    16573      32    DataPackets                          N
    16574      40    PlayDuration                         N
    16575      48    SendDuration                         N
    16576      56    Preroll                              N
    16577      64    Flags                                N
    16578      68    MinPacketSize                        N
    16579      72    MaxPacketSize                        N
    16580      76    MaxBitrate                           N
    16581 
    16582 =head3 ASF StreamProperties Tags
    16583 
    16584 Tags with index 54 and greater are conditional based on the StreamType.
    16585 
    16586    Index   Tag Name                             Writable
    16587    -----   --------                             --------
    16588       0    StreamType                           N
    16589      16    ErrorCorrectionType                  N
    16590      32    TimeOffset                           N
    16591      48    StreamNumber                         N
    16592      54    AudioCodecID                         N
    16593            ImageWidth                           N
    16594      56    AudioChannels                        N
    16595      58    AudioSampleRate                      N
    16596            ImageHeight                          N
    16597 
    16598 =head3 ASF ExtendedDescr Tags
     30437  Title                                         no
     30438  Author                                        no
     30439  Copyright                                     no
     30440  Description                                   no
     30441  Rating                                        no
     30442
     30443=head3 ASF CodecList Tags
    1659930444
    1660030445  Tag Name                                      Writable
    1660130446  --------                                      --------
    16602   ASFLeakyBucketPairs                           N
    16603   ASFPacketCount                                N
    16604   ASFSecurityObjectsSize                        N
    16605   AlbumArtist                                   N
    16606   AlbumCoverURL                                 N
    16607   AlbumTitle                                    N
    16608   AspectRatioX                                  N
    16609   AspectRatioY                                  N
    16610   AudioFileURL                                  N
    16611   AudioSourceURL                                N
    16612   Author                                        N
    16613   AuthorURL                                     N
    16614   AverageLevel                                  N
    16615   BannerImageData                               N
    16616   BannerImageType                               N
    16617   BannerImageURL                                N
    16618   BeatsPerMinute                                N
    16619   Bitrate                                       N
    16620   Broadcast                                     N
    16621   BufferAverage                                 N
    16622   Can_Skip_Backward                             N
    16623   Can_Skip_Forward                              N
    16624   Category                                      N
    16625   Codec                                         N
    16626   Composer                                      N
    16627   Conductor                                     N
    16628   ContainerFormat                               N
    16629   ContentDistributor                            N
    16630   ContentGroupDescription                       N
    16631   Copyright                                     N
    16632   CopyrightURL                                  N
    16633   CurrentBitrate                                N
    16634   DRM                                           N
    16635   DRM_ContentID                                 N
    16636   DRM_DRMHeader                                 N
    16637   DRM_DRMHeader_ContentDistributor              N
    16638   DRM_DRMHeader_ContentID                       N
    16639   DRM_DRMHeader_IndividualizedVersion           N
    16640   DRM_DRMHeader_KeyID                           N
    16641   DRM_DRMHeader_LicenseAcqURL                   N
    16642   DRM_DRMHeader_SubscriptionContentID           N
    16643   DRM_IndividualizedVersion                     N
    16644   DRM_KeyID                                     N
    16645   DRM_LASignatureCert                           N
    16646   DRM_LASignatureLicSrvCert                     N
    16647   DRM_LASignaturePrivKey                        N
    16648   DRM_LASignatureRootCert                       N
    16649   DRM_LicenseAcqURL                             N
    16650   DRM_V1LicenseAcqURL                           N
    16651   DVDID                                         N
    16652   Description                                   N
    16653   Director                                      N
    16654   Duration                                      N
    16655   EncodedBy                                     N
    16656   EncodingSettings                              N
    16657   EncodingTime                                  N
    16658   FileSize                                      N
    16659   Genre                                         N
    16660   GenreID                                       N
    16661   HasArbitraryDataStream                        N
    16662   HasAttachedImages                             N
    16663   HasAudio                                      N
    16664   HasFileTransferStream                         N
    16665   HasImage                                      N
    16666   HasScript                                     N
    16667   HasVideo                                      N
    16668   ISRC                                          N
    16669   InitialKey                                    N
    16670   IsVBR                                         N
    16671   Is_Protected                                  N
    16672   Is_Trusted                                    N
    16673   Language                                      N
    16674   Lyrics                                        N
    16675   Lyrics_Synchronised                           N
    16676   MCDI                                          N
    16677   MediaClassPrimaryID                           N
    16678   MediaClassSecondaryID                         N
    16679   MediaCredits                                  N
    16680   MediaIsDelay                                  N
    16681   MediaIsFinale                                 N
    16682   MediaIsLive                                   N
    16683   MediaIsPremiere                               N
    16684   MediaIsRepeat                                 N
    16685   MediaIsSAP                                    N
    16686   MediaIsStereo                                 N
    16687   MediaIsSubtitled                              N
    16688   MediaIsTape                                   N
    16689   MediaNetworkAffiliation                       N
    16690   MediaOriginalBroadcastDateTime                N
    16691   MediaOriginalChannel                          N
    16692   MediaStationCallSign                          N
    16693   MediaStationName                              N
    16694   ModifiedBy                                    N
    16695   Mood                                          N
    16696   NSC_Address                                   N
    16697   NSC_Description                               N
    16698   NSC_Email                                     N
    16699   NSC_Name                                      N
    16700   NSC_Phone                                     N
    16701   NumberOfFrames                                N
    16702   OptimalBitrate                                N
    16703   OriginalAlbumTitle                            N
    16704   OriginalArtist                                N
    16705   OriginalFilename                              N
    16706   OriginalLyricist                              N
    16707   OriginalReleaseTime                           N
    16708   OriginalReleaseYear                           N
    16709   ParentalRating                                N
    16710   ParentalRatingReason                          N
    16711   PartOfSet                                     N
    16712   PeakBitrate                                   N
    16713   PeakValue                                     N
    16714   Period                                        N
    16715   Picture                                       ASF Picture
    16716   PlaylistDelay                                 N
    16717   Producer                                      N
    16718   PromotionURL                                  N
    16719   ProtectionType                                N
    16720   Provider                                      N
    16721   ProviderCopyright                             N
    16722   ProviderRating                                N
    16723   ProviderStyle                                 N
    16724   Publisher                                     N
    16725   RadioStationName                              N
    16726   RadioStationOwner                             N
    16727   Rating                                        N
    16728   Seekable                                      N
    16729   SharedUserRating                              N
    16730   Signature_Name                                N
    16731   StreamTypeInfo                                N
    16732   Stridable                                     N
    16733   SubTitle                                      N
    16734   SubTitleDescription                           N
    16735   SubscriptionContentID                         N
    16736   Text                                          N
    16737   Title                                         N
    16738   ToolName                                      N
    16739   ToolVersion                                   N
    16740   Track                                         N
    16741   TrackNumber                                   N
    16742   UniqueFileIdentifier                          N
    16743   UserWebURL                                    N
    16744   VBRPeak                                       N
    16745   VideoClosedCaptioning                         N
    16746   VideoFrameRate                                N
    16747   VideoHeight                                   N
    16748   VideoWidth                                    N
    16749   WMADRCAverageReference                        N
    16750   WMADRCAverageTarget                           N
    16751   WMADRCPeakReference                           N
    16752   WMADRCPeakTarget                              N
    16753   WMCollectionGroupID                           N
    16754   WMCollectionID                                N
    16755   WMContentID                                   N
    16756   Writer                                        N
    16757   Year                                          N
    16758 
    16759 =head3 ASF Picture Tags
     30447  AudioCodecDescription                         no
     30448  AudioCodecName                                no
     30449  OtherCodecDescription                         no
     30450  OtherCodecName                                no
     30451  VideoCodecDescription                         no
     30452  VideoCodecName                                no
     30453
     30454=head3 ASF FileProperties Tags
     30455
     30456  Index1   Tag Name                             Writable
     30457  ------   --------                             --------
     30458      0    FileID                               no
     30459     16    FileLength                           no
     30460     24    CreationDate                         no
     30461     32    DataPackets                          no
     30462     40    Duration                             no
     30463     48    SendDuration                         no
     30464     56    Preroll                              no
     30465     64    Flags                                no
     30466     68    MinPacketSize                        no
     30467     72    MaxPacketSize                        no
     30468     76    MaxBitrate                           no
     30469
     30470=head3 ASF StreamProperties Tags
     30471
     30472Tags with index 54 and greater are conditional based on the StreamType.
     30473
     30474  Index1   Tag Name                             Writable
     30475  ------   --------                             --------
     30476      0    StreamType                           no
     30477     16    ErrorCorrectionType                  no
     30478     32    TimeOffset                           no
     30479     48    StreamNumber                         no
     30480     54    AudioCodecID                         no
     30481           ImageWidth                           no
     30482     56    AudioChannels                        no
     30483     58    AudioSampleRate                      no
     30484           ImageHeight                          no
     30485
     30486=head2 WTV Tags
     30487
     30488Tags found in Windows recorded TV (WTV) videos.
     30489
     30490  Tag ID                          Tag Name      Writable
     30491  ------                          --------      --------
     30492  'table.0.entries.legacy_attrib' Metdata       WTV Metadata
     30493
     30494=head3 WTV Metadata Tags
     30495
     30496ExifTool will extract any tag found, even if not in this table.
    1676030497
    1676130498  Tag Name                                      Writable
    1676230499  --------                                      --------
    16763   PictureType                                   N
    16764   PictureMimeType                               N
    16765   PictureDescription                            N
    16766   Picture                                       N
     30500  ATSCContent                                   no
     30501  ActualSoftPostPadding                         no
     30502  ActualSoftPrePadding                          no
     30503  Bitrate?                                      no
     30504  BrandingImageID                               no
     30505  BrandingName                                  no
     30506  ContentProtected                              no
     30507  ContentProtectedPercent                       no
     30508  DTVContent                                    no
     30509  Duration                                      no
     30510  EncodeTime                                    no
     30511  EndTime                                       no
     30512  ExpirationDate?                               no
     30513  ExpirationSpan?                               no
     30514  Genre                                         no
     30515  HDContent                                     no
     30516  HardPostPadding                               no
     30517  HardPrePadding                                no
     30518  InBandRatingAttributes                        no
     30519  InBandRatingLevel                             no
     30520  InBandRatingSystem                            no
     30521  KeepUntil                                     no
     30522  Language                                      no
     30523  MediaClassPrimaryID                           no
     30524  MediaClassSecondaryID                         no
     30525  MediaCredits                                  no
     30526  MediaIsDelay                                  no
     30527  MediaIsFinale                                 no
     30528  MediaIsLive                                   no
     30529  MediaIsMovie                                  no
     30530  MediaIsPremiere                               no
     30531  MediaIsRepeat                                 no
     30532  MediaIsSAP                                    no
     30533  MediaIsSport                                  no
     30534  MediaIsStereo                                 no
     30535  MediaIsSubtitled                              no
     30536  MediaIsTape                                   no
     30537  MediaNetworkAffiliation                       no
     30538  MediaOriginalBroadcastDateTime                no
     30539  MediaOriginalChannel                          no
     30540  MediaOriginalChannelSubNumber                 no
     30541  MediaOriginalRunTime                          no
     30542  MediaStationCallSign                          no
     30543  MediaStationName                              no
     30544  MediaThumbAspectRatioX                        no
     30545  MediaThumbAspectRatioY                        no
     30546  MediaThumbHeight                              no
     30547  MediaThumbRatingAttributes                    no
     30548  MediaThumbRatingLevel                         no
     30549  MediaThumbRatingSystem                        no
     30550  MediaThumbRet                                 no
     30551  MediaThumbStride                              no
     30552  MediaThumbTimeStamp?                          no
     30553  MediaThumbWidth                               no
     30554  OriginalReleaseTime                           no
     30555  OriginalSoftPostPadding                       no
     30556  OriginalSoftPrePadding                        no
     30557  ParentalRating                                no
     30558  ParentalRatingReason                          no
     30559  ProgramID                                     no
     30560  Provider                                      no
     30561  ProviderCopyright                             no
     30562  ProviderRating                                no
     30563  Quality                                       no
     30564  RequestID                                     no
     30565  ScheduleItemID                                no
     30566  SeriesUID                                     no
     30567  ServiceID                                     no
     30568  Subtitle                                      no
     30569  SubtitleDescription                           no
     30570  Title                                         no
     30571  VideoClosedCaptioning                         no
     30572  Watched                                       no
    1676730573
    1676830574=head2 DICOM Tags
     
    16775305812009 and earlier specifications plus some vendor-specific private tags.
    1677630582
     30583Note that DICOM information may be saved in other file formats using the
     30584L<XMP DICOM Tags|Image::ExifTool::TagNames/XMP DICOM Tags>.
     30585
    1677730586  Tag ID     Tag Name                           Writable
    1677830587  ------     --------                           --------
    16779   0002,0000  FileMetaInfoGroupLength            N
    16780   0002,0001  FileMetaInfoVersion                N
    16781   0002,0002  MediaStorageSOPClassUID            N
    16782   0002,0003  MediaStorageSOPInstanceUID         N
    16783   0002,0010  TransferSyntaxUID                  N
    16784   0002,0012  ImplementationClassUID             N
    16785   0002,0013  ImplementationVersionName          N
    16786   0002,0016  SourceApplicationEntityTitle       N
    16787   0002,0100  PrivateInformationCreatorUID       N
    16788   0002,0102  PrivateInformation                 N
    16789   0004,1130  FileSetID                          N
    16790   0004,1141  FileSetDescriptorFileID            N
    16791   0004,1142  SpecificCharacterSetOfFile         N
    16792   0004,1200  FirstDirectoryRecordOffset         N
    16793   0004,1202  LastDirectoryRecordOffset          N
    16794   0004,1212  FileSetConsistencyFlag             N
    16795   0004,1220  DirectoryRecordSequence            N
    16796   0004,1400  OffsetOfNextDirectoryRecord        N
    16797   0004,1410  RecordInUseFlag                    N
    16798   0004,1420  LowerLevelDirectoryEntityOffset    N
    16799   0004,1430  DirectoryRecordType                N
    16800   0004,1432  PrivateRecordUID                   N
    16801   0004,1500  ReferencedFileID                   N
    16802   0004,1504  MRDRDirectoryRecordOffset          N
    16803   0004,1510  ReferencedSOPClassUIDInFile        N
    16804   0004,1511  ReferencedSOPInstanceUIDInFile     N
    16805   0004,1512  ReferencedTransferSyntaxUIDInFile  N
    16806   0004,151A  ReferencedRelatedSOPClassUIDInFile N
    16807   0004,1600  NumberOfReferences                 N
    16808   0008,0000  IdentifyingGroupLength             N
    16809   0008,0001  LengthToEnd                        N
    16810   0008,0005  SpecificCharacterSet               N
    16811   0008,0006  LanguageCodeSequence               N
    16812   0008,0008  ImageType                          N
    16813   0008,0010  RecognitionCode                    N
    16814   0008,0012  InstanceCreationDate               N
    16815   0008,0013  InstanceCreationTime               N
    16816   0008,0014  InstanceCreatorUID                 N
    16817   0008,0016  SOPClassUID                        N
    16818   0008,0018  SOPInstanceUID                     N
    16819   0008,001A  RelatedGeneralSOPClassUID          N
    16820   0008,001B  OriginalSpecializedSOPClassUID     N
    16821   0008,0020  StudyDate                          N
    16822   0008,0021  SeriesDate                         N
    16823   0008,0022  AcquisitionDate                    N
    16824   0008,0023  ContentDate                        N
    16825   0008,0024  OverlayDate                        N
    16826   0008,0025  CurveDate                          N
    16827   0008,002A  AcquisitionDateTime                N
    16828   0008,0030  StudyTime                          N
    16829   0008,0031  SeriesTime                         N
    16830   0008,0032  AcquisitionTime                    N
    16831   0008,0033  ContentTime                        N
    16832   0008,0034  OverlayTime                        N
    16833   0008,0035  CurveTime                          N
    16834   0008,0040  DataSetType                        N
    16835   0008,0041  DataSetSubtype                     N
    16836   0008,0042  NuclearMedicineSeriesType          N
    16837   0008,0050  AccessionNumber                    N
    16838   0008,0052  QueryRetrieveLevel                 N
    16839   0008,0054  RetrieveAETitle                    N
    16840   0008,0056  InstanceAvailability               N
    16841   0008,0058  FailedSOPInstanceUIDList           N
    16842   0008,0060  Modality                           N
    16843   0008,0061  ModalitiesInStudy                  N
    16844   0008,0062  SOPClassesInStudy                  N
    16845   0008,0064  ConversionType                     N
    16846   0008,0068  PresentationIntentType             N
    16847   0008,0070  Manufacturer                       N
    16848   0008,0080  InstitutionName                    N
    16849   0008,0081  InstitutionAddress                 N
    16850   0008,0082  InstitutionCodeSequence            N
    16851   0008,0090  ReferringPhysicianName             N
    16852   0008,0092  ReferringPhysicianAddress          N
    16853   0008,0094  ReferringPhysicianTelephoneNumber  N
    16854   0008,0096  ReferringPhysicianIDSequence       N
    16855   0008,0100  CodeValue                          N
    16856   0008,0102  CodingSchemeDesignator             N
    16857   0008,0103  CodingSchemeVersion                N
    16858   0008,0104  CodeMeaning                        N
    16859   0008,0105  MappingResource                    N
    16860   0008,0106  ContextGroupVersion                N
    16861   0008,0107  ContextGroupLocalVersion           N
    16862   0008,010B  ContextGroupExtensionFlag          N
    16863   0008,010C  CodingSchemeUID                    N
    16864   0008,010D  ContextGroupExtensionCreatorUID    N
    16865   0008,010F  ContextIdentifier                  N
    16866   0008,0110  CodingSchemeIDSequence             N
    16867   0008,0112  CodingSchemeRegistry               N
    16868   0008,0114  CodingSchemeExternalID             N
    16869   0008,0115  CodingSchemeName                   N
    16870   0008,0116  ResponsibleOrganization            N
    16871   0008,0117  ContextUID                         N
    16872   0008,0201  TimezoneOffsetFromUTC              N
    16873   0008,1000  NetworkID                          N
    16874   0008,1010  StationName                        N
    16875   0008,1030  StudyDescription                   N
    16876   0008,1032  ProcedureCodeSequence              N
    16877   0008,103E  SeriesDescription                  N
    16878   0008,1040  InstitutionalDepartmentName        N
    16879   0008,1048  PhysiciansOfRecord                 N
    16880   0008,1049  PhysiciansOfRecordIDSequence       N
    16881   0008,1050  PerformingPhysicianName            N
    16882   0008,1052  PerformingPhysicianIDSequence      N
    16883   0008,1060  NameOfPhysicianReadingStudy        N
    16884   0008,1062  PhysicianReadingStudyIDSequence    N
    16885   0008,1070  OperatorsName                      N
    16886   0008,1072  OperatorIDSequence                 N
    16887   0008,1080  AdmittingDiagnosesDescription      N
    16888   0008,1084  AdmittingDiagnosesCodeSequence     N
    16889   0008,1090  ManufacturersModelName             N
    16890   0008,1100  ReferencedResultsSequence          N
    16891   0008,1110  ReferencedStudySequence            N
    16892   0008,1111  ReferencedProcedureStepSequence    N
    16893   0008,1115  ReferencedSeriesSequence           N
    16894   0008,1120  ReferencedPatientSequence          N
    16895   0008,1125  ReferencedVisitSequence            N
    16896   0008,1130  ReferencedOverlaySequence          N
    16897   0008,113A  ReferencedWaveformSequence         N
    16898   0008,1140  ReferencedImageSequence            N
    16899   0008,1145  ReferencedCurveSequence            N
    16900   0008,114A  ReferencedInstanceSequence         N
    16901   0008,1150  ReferencedSOPClassUID              N
    16902   0008,1155  ReferencedSOPInstanceUID           N
    16903   0008,115A  SOPClassesSupported                N
    16904   0008,1160  ReferencedFrameNumber              N
    16905   0008,1161  SimpleFrameList                    N
    16906   0008,1162  CalculatedFrameList                N
    16907   0008,1163  TimeRange                          N
    16908   0008,1164  FrameExtractionSequence            N
    16909   0008,1195  TransactionUID                     N
    16910   0008,1197  FailureReason                      N
    16911   0008,1198  FailedSOPSequence                  N
    16912   0008,1199  ReferencedSOPSequence              N
    16913   0008,1200  OtherReferencedStudiesSequence     N
    16914   0008,1250  RelatedSeriesSequence              N
    16915   0008,2110  LossyImageCompression              N
    16916   0008,2111  DerivationDescription              N
    16917   0008,2112  SourceImageSequence                N
    16918   0008,2120  StageName                          N
    16919   0008,2122  StageNumber                        N
    16920   0008,2124  NumberOfStages                     N
    16921   0008,2127  ViewName                           N
    16922   0008,2128  ViewNumber                         N
    16923   0008,2129  NumberOfEventTimers                N
    16924   0008,212A  NumberOfViewsInStage               N
    16925   0008,2130  EventElapsedTimes                  N
    16926   0008,2132  EventTimerNames                    N
    16927   0008,2133  EventTimerSequence                 N
    16928   0008,2134  EventTimeOffset                    N
    16929   0008,2135  EventCodeSequence                  N
    16930   0008,2142  StartTrim                          N
    16931   0008,2143  StopTrim                           N
    16932   0008,2144  RecommendedDisplayFrameRate        N
    16933   0008,2200  TransducerPosition                 N
    16934   0008,2204  TransducerOrientation              N
    16935   0008,2208  AnatomicStructure                  N
    16936   0008,2218  AnatomicRegionSequence             N
    16937   0008,2220  AnatomicRegionModifierSequence     N
    16938   0008,2228  PrimaryAnatomicStructureSequence   N
    16939   0008,2229  AnatomicStructureOrRegionSequence  N
    16940   0008,2230  AnatomicStructureModifierSequence  N
    16941   0008,2240  TransducerPositionSequence         N
    16942   0008,2242  TransducerPositionModifierSequence N
    16943   0008,2244  TransducerOrientationSequence      N
    16944   0008,2246  TransducerOrientationModifierSeq   N
    16945   0008,2253  AnatomicEntrancePortalCodeSeqTrial N
    16946   0008,2255  AnatomicApproachDirCodeSeqTrial    N
    16947   0008,2256  AnatomicPerspectiveDescrTrial      N
    16948   0008,2257  AnatomicPerspectiveCodeSeqTrial    N
    16949   0008,3001  AlternateRepresentationSequence    N
    16950   0008,3010  IrradiationEventUID                N
    16951   0008,4000  IdentifyingComments                N
    16952   0008,9007  FrameType                          N
    16953   0008,9092  ReferencedImageEvidenceSequence    N
    16954   0008,9121  ReferencedRawDataSequence          N
    16955   0008,9123  CreatorVersionUID                  N
    16956   0008,9124  DerivationImageSequence            N
    16957   0008,9154  SourceImageEvidenceSequence        N
    16958   0008,9205  PixelPresentation                  N
    16959   0008,9206  VolumetricProperties               N
    16960   0008,9207  VolumeBasedCalculationTechnique    N
    16961   0008,9208  ComplexImageComponent              N
    16962   0008,9209  AcquisitionContrast                N
    16963   0008,9215  DerivationCodeSequence             N
    16964   0008,9237  GrayscalePresentationStateSequence N
    16965   0008,9410  ReferencedOtherPlaneSequence       N
    16966   0008,9458  FrameDisplaySequence               N
    16967   0008,9459  RecommendedDisplayFrameRateInFloat N
    16968   0008,9460  SkipFrameRangeFlag                 N
    16969   0009,1001  FullFidelity                       N
    16970   0009,1002  SuiteID                            N
    16971   0009,1004  ProductID                          N
    16972   0009,1027  ImageActualDate                    N
    16973   0009,1030  ServiceID                          N
    16974   0009,1031  MobileLocationNumber               N
    16975   0009,10E3  EquipmentUID                       N
    16976   0009,10E6  GenesisVersionNow                  N
    16977   0009,10E7  ExamRecordChecksum                 N
    16978   0009,10E9  ActualSeriesDataTimeStamp          N
    16979   0010,0000  PatientGroupLength                 N
    16980   0010,0010  PatientName                        N
    16981   0010,0020  PatientID                          N
    16982   0010,0021  IssuerOfPatientID                  N
    16983   0010,0022  TypeOfPatientID                    N
    16984   0010,0030  PatientBirthDate                   N
    16985   0010,0032  PatientBirthTime                   N
    16986   0010,0040  PatientSex                         N
    16987   0010,0050  PatientInsurancePlanCodeSequence   N
    16988   0010,0101  PatientPrimaryLanguageCodeSeq      N
    16989   0010,0102  PatientPrimaryLanguageCodeModSeq   N
    16990   0010,1000  OtherPatientIDs                    N
    16991   0010,1001  OtherPatientNames                  N
    16992   0010,1002  OtherPatientIDsSequence            N
    16993   0010,1005  PatientBirthName                   N
    16994   0010,1010  PatientAge                         N
    16995   0010,1020  PatientSize                        N
    16996   0010,1030  PatientWeight                      N
    16997   0010,1040  PatientAddress                     N
    16998   0010,1050  InsurancePlanIdentification        N
    16999   0010,1060  PatientMotherBirthName             N
    17000   0010,1080  MilitaryRank                       N
    17001   0010,1081  BranchOfService                    N
    17002   0010,1090  MedicalRecordLocator               N
    17003   0010,2000  MedicalAlerts                      N
    17004   0010,2110  Allergies                          N
    17005   0010,2150  CountryOfResidence                 N
    17006   0010,2152  RegionOfResidence                  N
    17007   0010,2154  PatientTelephoneNumbers            N
    17008   0010,2160  EthnicGroup                        N
    17009   0010,2180  Occupation                         N
    17010   0010,21A0  SmokingStatus                      N
    17011   0010,21B0  AdditionalPatientHistory           N
    17012   0010,21C0  PregnancyStatus                    N
    17013   0010,21D0  LastMenstrualDate                  N
    17014   0010,21F0  PatientReligiousPreference         N
    17015   0010,2201  PatientSpeciesDescription          N
    17016   0010,2202  PatientSpeciesCodeSequence         N
    17017   0010,2203  PatientSexNeutered                 N
    17018   0010,2210  AnatomicalOrientationType          N
    17019   0010,2292  PatientBreedDescription            N
    17020   0010,2293  PatientBreedCodeSequence           N
    17021   0010,2294  BreedRegistrationSequence          N
    17022   0010,2295  BreedRegistrationNumber            N
    17023   0010,2296  BreedRegistryCodeSequence          N
    17024   0010,2297  ResponsiblePerson                  N
    17025   0010,2298  ResponsiblePersonRole              N
    17026   0010,2299  ResponsibleOrganization            N
    17027   0010,4000  PatientComments                    N
    17028   0010,9431  ExaminedBodyThickness              N
    17029   0011,1010  PatientStatus                      N
    17030   0012,0010  ClinicalTrialSponsorName           N
    17031   0012,0020  ClinicalTrialProtocolID            N
    17032   0012,0021  ClinicalTrialProtocolName          N
    17033   0012,0030  ClinicalTrialSiteID                N
    17034   0012,0031  ClinicalTrialSiteName              N
    17035   0012,0040  ClinicalTrialSubjectID             N
    17036   0012,0042  ClinicalTrialSubjectReadingID      N
    17037   0012,0050  ClinicalTrialTimePointID           N
    17038   0012,0051  ClinicalTrialTimePointDescription  N
    17039   0012,0060  ClinicalTrialCoordinatingCenter    N
    17040   0012,0062  PatientIdentityRemoved             N
    17041   0012,0063  DeidentificationMethod             N
    17042   0012,0064  DeidentificationMethodCodeSequence N
    17043   0012,0071  ClinicalTrialSeriesID              N
    17044   0012,0072  ClinicalTrialSeriesDescription     N
    17045   0012,0084  DistributionType                   N
    17046   0012,0085  ConsentForDistributionFlag         N
    17047   0018,0000  AcquisitionGroupLength             N
    17048   0018,0010  ContrastBolusAgent                 N
    17049   0018,0012  ContrastBolusAgentSequence         N
    17050   0018,0014  ContrastBolusAdministrationRoute   N
    17051   0018,0015  BodyPartExamined                   N
    17052   0018,0020  ScanningSequence                   N
    17053   0018,0021  SequenceVariant                    N
    17054   0018,0022  ScanOptions                        N
    17055   0018,0023  MRAcquisitionType                  N
    17056   0018,0024  SequenceName                       N
    17057   0018,0025  AngioFlag                          N
    17058   0018,0026  InterventionDrugInformationSeq     N
    17059   0018,0027  InterventionDrugStopTime           N
    17060   0018,0028  InterventionDrugDose               N
    17061   0018,0029  InterventionDrugSequence           N
    17062   0018,002A  AdditionalDrugSequence             N
    17063   0018,0030  Radionuclide                       N
    17064   0018,0031  Radiopharmaceutical                N
    17065   0018,0032  EnergyWindowCenterline             N
    17066   0018,0033  EnergyWindowTotalWidth             N
    17067   0018,0034  InterventionDrugName               N
    17068   0018,0035  InterventionDrugStartTime          N
    17069   0018,0036  InterventionSequence               N
    17070   0018,0037  TherapyType                        N
    17071   0018,0038  InterventionStatus                 N
    17072   0018,0039  TherapyDescription                 N
    17073   0018,003A  InterventionDescription            N
    17074   0018,0040  CineRate                           N
    17075   0018,0042  InitialCineRunState                N
    17076   0018,0050  SliceThickness                     N
    17077   0018,0060  KVP                                N
    17078   0018,0070  CountsAccumulated                  N
    17079   0018,0071  AcquisitionTerminationCondition    N
    17080   0018,0072  EffectiveDuration                  N
    17081   0018,0073  AcquisitionStartCondition          N
    17082   0018,0074  AcquisitionStartConditionData      N
    17083   0018,0075  AcquisitionEndConditionData        N
    17084   0018,0080  RepetitionTime                     N
    17085   0018,0081  EchoTime                           N
    17086   0018,0082  InversionTime                      N
    17087   0018,0083  NumberOfAverages                   N
    17088   0018,0084  ImagingFrequency                   N
    17089   0018,0085  ImagedNucleus                      N
    17090   0018,0086  EchoNumber                         N
    17091   0018,0087  MagneticFieldStrength              N
    17092   0018,0088  SpacingBetweenSlices               N
    17093   0018,0089  NumberOfPhaseEncodingSteps         N
    17094   0018,0090  DataCollectionDiameter             N
    17095   0018,0091  EchoTrainLength                    N
    17096   0018,0093  PercentSampling                    N
    17097   0018,0094  PercentPhaseFieldOfView            N
    17098   0018,0095  PixelBandwidth                     N
    17099   0018,1000  DeviceSerialNumber                 N
    17100   0018,1002  DeviceUID                          N
    17101   0018,1003  DeviceID                           N
    17102   0018,1004  PlateID                            N
    17103   0018,1005  GeneratorID                        N
    17104   0018,1006  GridID                             N
    17105   0018,1007  CassetteID                         N
    17106   0018,1008  GantryID                           N
    17107   0018,1010  SecondaryCaptureDeviceID           N
    17108   0018,1011  HardcopyCreationDeviceID           N
    17109   0018,1012  DateOfSecondaryCapture             N
    17110   0018,1014  TimeOfSecondaryCapture             N
    17111   0018,1016  SecondaryCaptureDeviceManufacturer N
    17112   0018,1017  HardcopyDeviceManufacturer         N
    17113   0018,1018  SecondaryCaptureDeviceModelName    N
    17114   0018,1019  SecondaryCaptureDeviceSoftwareVers N
    17115   0018,101A  HardcopyDeviceSoftwareVersion      N
    17116   0018,101B  HardcopyDeviceModelName            N
    17117   0018,1020  SoftwareVersion                    N
    17118   0018,1022  VideoImageFormatAcquired           N
    17119   0018,1023  DigitalImageFormatAcquired         N
    17120   0018,1030  ProtocolName                       N
    17121   0018,1040  ContrastBolusRoute                 N
    17122   0018,1041  ContrastBolusVolume                N
    17123   0018,1042  ContrastBolusStartTime             N
    17124   0018,1043  ContrastBolusStopTime              N
    17125   0018,1044  ContrastBolusTotalDose             N
    17126   0018,1045  SyringeCounts                      N
    17127   0018,1046  ContrastFlowRate                   N
    17128   0018,1047  ContrastFlowDuration               N
    17129   0018,1048  ContrastBolusIngredient            N
    17130   0018,1049  ContrastBolusConcentration         N
    17131   0018,1050  SpatialResolution                  N
    17132   0018,1060  TriggerTime                        N
    17133   0018,1061  TriggerSourceOrType                N
    17134   0018,1062  NominalInterval                    N
    17135   0018,1063  FrameTime                          N
    17136   0018,1064  CardiacFramingType                 N
    17137   0018,1065  FrameTimeVector                    N
    17138   0018,1066  FrameDelay                         N
    17139   0018,1067  ImageTriggerDelay                  N
    17140   0018,1068  MultiplexGroupTimeOffset           N
    17141   0018,1069  TriggerTimeOffset                  N
    17142   0018,106A  SynchronizationTrigger             N
    17143   0018,106C  SynchronizationChannel             N
    17144   0018,106E  TriggerSamplePosition              N
    17145   0018,1070  RadiopharmaceuticalRoute           N
    17146   0018,1071  RadiopharmaceuticalVolume          N
    17147   0018,1072  RadiopharmaceuticalStartTime       N
    17148   0018,1073  RadiopharmaceuticalStopTime        N
    17149   0018,1074  RadionuclideTotalDose              N
    17150   0018,1075  RadionuclideHalfLife               N
    17151   0018,1076  RadionuclidePositronFraction       N
    17152   0018,1077  RadiopharmaceuticalSpecActivity    N
    17153   0018,1078  RadiopharmaceuticalStartDateTime   N
    17154   0018,1079  RadiopharmaceuticalStopDateTime    N
    17155   0018,1080  BeatRejectionFlag                  N
    17156   0018,1081  LowRRValue                         N
    17157   0018,1082  HighRRValue                        N
    17158   0018,1083  IntervalsAcquired                  N
    17159   0018,1084  IntervalsRejected                  N
    17160   0018,1085  PVCRejection                       N
    17161   0018,1086  SkipBeats                          N
    17162   0018,1088  HeartRate                          N
    17163   0018,1090  CardiacNumberOfImages              N
    17164   0018,1094  TriggerWindow                      N
    17165   0018,1100  ReconstructionDiameter             N
    17166   0018,1110  DistanceSourceToDetector           N
    17167   0018,1111  DistanceSourceToPatient            N
    17168   0018,1114  EstimatedRadiographicMagnification N
    17169   0018,1120  GantryDetectorTilt                 N
    17170   0018,1121  GantryDetectorSlew                 N
    17171   0018,1130  TableHeight                        N
    17172   0018,1131  TableTraverse                      N
    17173   0018,1134  TableMotion                        N
    17174   0018,1135  TableVerticalIncrement             N
    17175   0018,1136  TableLateralIncrement              N
    17176   0018,1137  TableLongitudinalIncrement         N
    17177   0018,1138  TableAngle                         N
    17178   0018,113A  TableType                          N
    17179   0018,1140  RotationDirection                  N
    17180   0018,1141  AngularPosition                    N
    17181   0018,1142  RadialPosition                     N
    17182   0018,1143  ScanArc                            N
    17183   0018,1144  AngularStep                        N
    17184   0018,1145  CenterOfRotationOffset             N
    17185   0018,1146  RotationOffset                     N
    17186   0018,1147  FieldOfViewShape                   N
    17187   0018,1149  FieldOfViewDimensions              N
    17188   0018,1150  ExposureTime                       N
    17189   0018,1151  XRayTubeCurrent                    N
    17190   0018,1152  Exposure                           N
    17191   0018,1153  ExposureInMicroAmpSec              N
    17192   0018,1154  AveragePulseWidth                  N
    17193   0018,1155  RadiationSetting                   N
    17194   0018,1156  RectificationType                  N
    17195   0018,115A  RadiationMode                      N
    17196   0018,115E  ImageAreaDoseProduct               N
    17197   0018,1160  FilterType                         N
    17198   0018,1161  TypeOfFilters                      N
    17199   0018,1162  IntensifierSize                    N
    17200   0018,1164  ImagerPixelSpacing                 N
    17201   0018,1166  Grid                               N
    17202   0018,1170  GeneratorPower                     N
    17203   0018,1180  CollimatorGridName                 N
    17204   0018,1181  CollimatorType                     N
    17205   0018,1182  FocalDistance                      N
    17206   0018,1183  XFocusCenter                       N
    17207   0018,1184  YFocusCenter                       N
    17208   0018,1190  FocalSpots                         N
    17209   0018,1191  AnodeTargetMaterial                N
    17210   0018,11A0  BodyPartThickness                  N
    17211   0018,11A2  CompressionForce                   N
    17212   0018,1200  DateOfLastCalibration              N
    17213   0018,1201  TimeOfLastCalibration              N
    17214   0018,1210  ConvolutionKernel                  N
    17215   0018,1240  UpperLowerPixelValues              N
    17216   0018,1242  ActualFrameDuration                N
    17217   0018,1243  CountRate                          N
    17218   0018,1244  PreferredPlaybackSequencing        N
    17219   0018,1250  ReceiveCoilName                    N
    17220   0018,1251  TransmitCoilName                   N
    17221   0018,1260  PlateType                          N
    17222   0018,1261  PhosphorType                       N
    17223   0018,1300  ScanVelocity                       N
    17224   0018,1301  WholeBodyTechnique                 N
    17225   0018,1302  ScanLength                         N
    17226   0018,1310  AcquisitionMatrix                  N
    17227   0018,1312  InPlanePhaseEncodingDirection      N
    17228   0018,1314  FlipAngle                          N
    17229   0018,1315  VariableFlipAngleFlag              N
    17230   0018,1316  SAR                                N
    17231   0018,1318  DB-Dt                              N
    17232   0018,1400  AcquisitionDeviceProcessingDescr   N
    17233   0018,1401  AcquisitionDeviceProcessingCode    N
    17234   0018,1402  CassetteOrientation                N
    17235   0018,1403  CassetteSize                       N
    17236   0018,1404  ExposuresOnPlate                   N
    17237   0018,1405  RelativeXRayExposure               N
    17238   0018,1450  ColumnAngulation                   N
    17239   0018,1460  TomoLayerHeight                    N
    17240   0018,1470  TomoAngle                          N
    17241   0018,1480  TomoTime                           N
    17242   0018,1490  TomoType                           N
    17243   0018,1491  TomoClass                          N
    17244   0018,1495  NumberOfTomosynthesisSourceImages  N
    17245   0018,1500  PositionerMotion                   N
    17246   0018,1508  PositionerType                     N
    17247   0018,1510  PositionerPrimaryAngle             N
    17248   0018,1511  PositionerSecondaryAngle           N
    17249   0018,1520  PositionerPrimaryAngleIncrement    N
    17250   0018,1521  PositionerSecondaryAngleIncrement  N
    17251   0018,1530  DetectorPrimaryAngle               N
    17252   0018,1531  DetectorSecondaryAngle             N
    17253   0018,1600  ShutterShape                       N
    17254   0018,1602  ShutterLeftVerticalEdge            N
    17255   0018,1604  ShutterRightVerticalEdge           N
    17256   0018,1606  ShutterUpperHorizontalEdge         N
    17257   0018,1608  ShutterLowerHorizontalEdge         N
    17258   0018,1610  CenterOfCircularShutter            N
    17259   0018,1612  RadiusOfCircularShutter            N
    17260   0018,1620  VerticesOfPolygonalShutter         N
    17261   0018,1622  ShutterPresentationValue           N
    17262   0018,1623  ShutterOverlayGroup                N
    17263   0018,1624  ShutterPresentationColorCIELabVal  N
    17264   0018,1700  CollimatorShape                    N
    17265   0018,1702  CollimatorLeftVerticalEdge         N
    17266   0018,1704  CollimatorRightVerticalEdge        N
    17267   0018,1706  CollimatorUpperHorizontalEdge      N
    17268   0018,1708  CollimatorLowerHorizontalEdge      N
    17269   0018,1710  CenterOfCircularCollimator         N
    17270   0018,1712  RadiusOfCircularCollimator         N
    17271   0018,1720  VerticesOfPolygonalCollimator      N
    17272   0018,1800  AcquisitionTimeSynchronized        N
    17273   0018,1801  TimeSource                         N
    17274   0018,1802  TimeDistributionProtocol           N
    17275   0018,1803  NTPSourceAddress                   N
    17276   0018,2001  PageNumberVector                   N
    17277   0018,2002  FrameLabelVector                   N
    17278   0018,2003  FramePrimaryAngleVector            N
    17279   0018,2004  FrameSecondaryAngleVector          N
    17280   0018,2005  SliceLocationVector                N
    17281   0018,2006  DisplayWindowLabelVector           N
    17282   0018,2010  NominalScannedPixelSpacing         N
    17283   0018,2020  DigitizingDeviceTransportDirection N
    17284   0018,2030  RotationOfScannedFilm              N
    17285   0018,3100  IVUSAcquisition                    N
    17286   0018,3101  IVUSPullbackRate                   N
    17287   0018,3102  IVUSGatedRate                      N
    17288   0018,3103  IVUSPullbackStartFrameNumber       N
    17289   0018,3104  IVUSPullbackStopFrameNumber        N
    17290   0018,3105  LesionNumber                       N
    17291   0018,4000  AcquisitionComments                N
    17292   0018,5000  OutputPower                        N
    17293   0018,5010  TransducerData                     N
    17294   0018,5012  FocusDepth                         N
    17295   0018,5020  ProcessingFunction                 N
    17296   0018,5021  PostprocessingFunction             N
    17297   0018,5022  MechanicalIndex                    N
    17298   0018,5024  BoneThermalIndex                   N
    17299   0018,5026  CranialThermalIndex                N
    17300   0018,5027  SoftTissueThermalIndex             N
    17301   0018,5028  SoftTissueFocusThermalIndex        N
    17302   0018,5029  SoftTissueSurfaceThermalIndex      N
    17303   0018,5030  DynamicRange                       N
    17304   0018,5040  TotalGain                          N
    17305   0018,5050  DepthOfScanField                   N
    17306   0018,5100  PatientPosition                    N
    17307   0018,5101  ViewPosition                       N
    17308   0018,5104  ProjectionEponymousNameCodeSeq     N
    17309   0018,5210  ImageTransformationMatrix          N
    17310   0018,5212  ImageTranslationVector             N
    17311   0018,6000  Sensitivity                        N
    17312   0018,6011  SequenceOfUltrasoundRegions        N
    17313   0018,6012  RegionSpatialFormat                N
    17314   0018,6014  RegionDataType                     N
    17315   0018,6016  RegionFlags                        N
    17316   0018,6018  RegionLocationMinX0                N
    17317   0018,601A  RegionLocationMinY0                N
    17318   0018,601C  RegionLocationMaxX1                N
    17319   0018,601E  RegionLocationMaxY1                N
    17320   0018,6020  ReferencePixelX0                   N
    17321   0018,6022  ReferencePixelY0                   N
    17322   0018,6024  PhysicalUnitsXDirection            N
    17323   0018,6026  PhysicalUnitsYDirection            N
    17324   0018,6028  ReferencePixelPhysicalValueX       N
    17325   0018,602A  ReferencePixelPhysicalValueY       N
    17326   0018,602C  PhysicalDeltaX                     N
    17327   0018,602E  PhysicalDeltaY                     N
    17328   0018,6030  TransducerFrequency                N
    17329   0018,6031  TransducerType                     N
    17330   0018,6032  PulseRepetitionFrequency           N
    17331   0018,6034  DopplerCorrectionAngle             N
    17332   0018,6036  SteeringAngle                      N
    17333   0018,6038  DopplerSampleVolumeXPosRetired     N
    17334   0018,6039  DopplerSampleVolumeXPosition       N
    17335   0018,603A  DopplerSampleVolumeYPosRetired     N
    17336   0018,603B  DopplerSampleVolumeYPosition       N
    17337   0018,603C  TMLinePositionX0Retired            N
    17338   0018,603D  TMLinePositionX0                   N
    17339   0018,603E  TMLinePositionY0Retired            N
    17340   0018,603F  TMLinePositionY0                   N
    17341   0018,6040  TMLinePositionX1Retired            N
    17342   0018,6041  TMLinePositionX1                   N
    17343   0018,6042  TMLinePositionY1Retired            N
    17344   0018,6043  TMLinePositionY1                   N
    17345   0018,6044  PixelComponentOrganization         N
    17346   0018,6046  PixelComponentMask                 N
    17347   0018,6048  PixelComponentRangeStart           N
    17348   0018,604A  PixelComponentRangeStop            N
    17349   0018,604C  PixelComponentPhysicalUnits        N
    17350   0018,604E  PixelComponentDataType             N
    17351   0018,6050  NumberOfTableBreakPoints           N
    17352   0018,6052  TableOfXBreakPoints                N
    17353   0018,6054  TableOfYBreakPoints                N
    17354   0018,6056  NumberOfTableEntries               N
    17355   0018,6058  TableOfPixelValues                 N
    17356   0018,605A  TableOfParameterValues             N
    17357   0018,6060  RWaveTimeVector                    N
    17358   0018,7000  DetectorConditionsNominalFlag      N
    17359   0018,7001  DetectorTemperature                N
    17360   0018,7004  DetectorType                       N
    17361   0018,7005  DetectorConfiguration              N
    17362   0018,7006  DetectorDescription                N
    17363   0018,7008  DetectorMode                       N
    17364   0018,700A  DetectorID                         N
    17365   0018,700C  DateOfLastDetectorCalibration      N
    17366   0018,700E  TimeOfLastDetectorCalibration      N
    17367   0018,7010  DetectorExposuresSinceCalibration  N
    17368   0018,7011  DetectorExposuresSinceManufactured N
    17369   0018,7012  DetectorTimeSinceLastExposure      N
    17370   0018,7014  DetectorActiveTime                 N
    17371   0018,7016  DetectorActiveOffsetFromExposure   N
    17372   0018,701A  DetectorBinning                    N
    17373   0018,7020  DetectorElementPhysicalSize        N
    17374   0018,7022  DetectorElementSpacing             N
    17375   0018,7024  DetectorActiveShape                N
    17376   0018,7026  DetectorActiveDimensions           N
    17377   0018,7028  DetectorActiveOrigin               N
    17378   0018,702A  DetectorManufacturerName           N
    17379   0018,702B  DetectorManufacturersModelName     N
    17380   0018,7030  FieldOfViewOrigin                  N
    17381   0018,7032  FieldOfViewRotation                N
    17382   0018,7034  FieldOfViewHorizontalFlip          N
    17383   0018,7040  GridAbsorbingMaterial              N
    17384   0018,7041  GridSpacingMaterial                N
    17385   0018,7042  GridThickness                      N
    17386   0018,7044  GridPitch                          N
    17387   0018,7046  GridAspectRatio                    N
    17388   0018,7048  GridPeriod                         N
    17389   0018,704C  GridFocalDistance                  N
    17390   0018,7050  FilterMaterial                     N
    17391   0018,7052  FilterThicknessMinimum             N
    17392   0018,7054  FilterThicknessMaximum             N
    17393   0018,7060  ExposureControlMode                N
    17394   0018,7062  ExposureControlModeDescription     N
    17395   0018,7064  ExposureStatus                     N
    17396   0018,7065  PhototimerSetting                  N
    17397   0018,8150  ExposureTimeInMicroSec             N
    17398   0018,8151  XRayTubeCurrentInMicroAmps         N
    17399   0018,9004  ContentQualification               N
    17400   0018,9005  PulseSequenceName                  N
    17401   0018,9006  MRImagingModifierSequence          N
    17402   0018,9008  EchoPulseSequence                  N
    17403   0018,9009  InversionRecovery                  N
    17404   0018,9010  FlowCompensation                   N
    17405   0018,9011  MultipleSpinEcho                   N
    17406   0018,9012  MultiPlanarExcitation              N
    17407   0018,9014  PhaseContrast                      N
    17408   0018,9015  TimeOfFlightContrast               N
    17409   0018,9016  Spoiling                           N
    17410   0018,9017  SteadyStatePulseSequence           N
    17411   0018,9018  EchoPlanarPulseSequence            N
    17412   0018,9019  TagAngleFirstAxis                  N
    17413   0018,9020  MagnetizationTransfer              N
    17414   0018,9021  T2Preparation                      N
    17415   0018,9022  BloodSignalNulling                 N
    17416   0018,9024  SaturationRecovery                 N
    17417   0018,9025  SpectrallySelectedSuppression      N
    17418   0018,9026  SpectrallySelectedExcitation       N
    17419   0018,9027  SpatialPresaturation               N
    17420   0018,9028  Tagging                            N
    17421   0018,9029  OversamplingPhase                  N
    17422   0018,9030  TagSpacingFirstDimension           N
    17423   0018,9032  GeometryOfKSpaceTraversal          N
    17424   0018,9033  SegmentedKSpaceTraversal           N
    17425   0018,9034  RectilinearPhaseEncodeReordering   N
    17426   0018,9035  TagThickness                       N
    17427   0018,9036  PartialFourierDirection            N
    17428   0018,9037  CardiacSynchronizationTechnique    N
    17429   0018,9041  ReceiveCoilManufacturerName        N
    17430   0018,9042  MRReceiveCoilSequence              N
    17431   0018,9043  ReceiveCoilType                    N
    17432   0018,9044  QuadratureReceiveCoil              N
    17433   0018,9045  MultiCoilDefinitionSequence        N
    17434   0018,9046  MultiCoilConfiguration             N
    17435   0018,9047  MultiCoilElementName               N
    17436   0018,9048  MultiCoilElementUsed               N
    17437   0018,9049  MRTransmitCoilSequence             N
    17438   0018,9050  TransmitCoilManufacturerName       N
    17439   0018,9051  TransmitCoilType                   N
    17440   0018,9052  SpectralWidth                      N
    17441   0018,9053  ChemicalShiftReference             N
    17442   0018,9054  VolumeLocalizationTechnique        N
    17443   0018,9058  MRAcquisitionFrequencyEncodeSteps  N
    17444   0018,9059  Decoupling                         N
    17445   0018,9060  DecoupledNucleus                   N
    17446   0018,9061  DecouplingFrequency                N
    17447   0018,9062  DecouplingMethod                   N
    17448   0018,9063  DecouplingChemicalShiftReference   N
    17449   0018,9064  KSpaceFiltering                    N
    17450   0018,9065  TimeDomainFiltering                N
    17451   0018,9066  NumberOfZeroFills                  N
    17452   0018,9067  BaselineCorrection                 N
    17453   0018,9069  ParallelReductionFactorInPlane     N
    17454   0018,9070  CardiacRRIntervalSpecified         N
    17455   0018,9073  AcquisitionDuration                N
    17456   0018,9074  FrameAcquisitionDateTime           N
    17457   0018,9075  DiffusionDirectionality            N
    17458   0018,9076  DiffusionGradientDirectionSequence N
    17459   0018,9077  ParallelAcquisition                N
    17460   0018,9078  ParallelAcquisitionTechnique       N
    17461   0018,9079  InversionTimes                     N
    17462   0018,9080  MetaboliteMapDescription           N
    17463   0018,9081  PartialFourier                     N
    17464   0018,9082  EffectiveEchoTime                  N
    17465   0018,9083  MetaboliteMapCodeSequence          N
    17466   0018,9084  ChemicalShiftSequence              N
    17467   0018,9085  CardiacSignalSource                N
    17468   0018,9087  DiffusionBValue                    N
    17469   0018,9089  DiffusionGradientOrientation       N
    17470   0018,9090  VelocityEncodingDirection          N
    17471   0018,9091  VelocityEncodingMinimumValue       N
    17472   0018,9093  NumberOfKSpaceTrajectories         N
    17473   0018,9094  CoverageOfKSpace                   N
    17474   0018,9095  SpectroscopyAcquisitionPhaseRows   N
    17475   0018,9096  ParallelReductFactorInPlaneRetired N
    17476   0018,9098  TransmitterFrequency               N
    17477   0018,9100  ResonantNucleus                    N
    17478   0018,9101  FrequencyCorrection                N
    17479   0018,9103  MRSpectroscopyFOV-GeometrySequence N
    17480   0018,9104  SlabThickness                      N
    17481   0018,9105  SlabOrientation                    N
    17482   0018,9106  MidSlabPosition                    N
    17483   0018,9107  MRSpatialSaturationSequence        N
    17484   0018,9112  MRTimingAndRelatedParametersSeq    N
    17485   0018,9114  MREchoSequence                     N
    17486   0018,9115  MRModifierSequence                 N
    17487   0018,9117  MRDiffusionSequence                N
    17488   0018,9118  CardiacTriggerSequence             N
    17489   0018,9119  MRAveragesSequence                 N
    17490   0018,9125  MRFOV-GeometrySequence             N
    17491   0018,9126  VolumeLocalizationSequence         N
    17492   0018,9127  SpectroscopyAcquisitionDataColumns N
    17493   0018,9147  DiffusionAnisotropyType            N
    17494   0018,9151  FrameReferenceDateTime             N
    17495   0018,9152  MRMetaboliteMapSequence            N
    17496   0018,9155  ParallelReductionFactorOutOfPlane  N
    17497   0018,9159  SpectroscopyOutOfPlanePhaseSteps   N
    17498   0018,9166  BulkMotionStatus                   N
    17499   0018,9168  ParallelReductionFactSecondInPlane N
    17500   0018,9169  CardiacBeatRejectionTechnique      N
    17501   0018,9170  RespiratoryMotionCompTechnique     N
    17502   0018,9171  RespiratorySignalSource            N
    17503   0018,9172  BulkMotionCompensationTechnique    N
    17504   0018,9173  BulkMotionSignalSource             N
    17505   0018,9174  ApplicableSafetyStandardAgency     N
    17506   0018,9175  ApplicableSafetyStandardDescr      N
    17507   0018,9176  OperatingModeSequence              N
    17508   0018,9177  OperatingModeType                  N
    17509   0018,9178  OperatingMode                      N
    17510   0018,9179  SpecificAbsorptionRateDefinition   N
    17511   0018,9180  GradientOutputType                 N
    17512   0018,9181  SpecificAbsorptionRateValue        N
    17513   0018,9182  GradientOutput                     N
    17514   0018,9183  FlowCompensationDirection          N
    17515   0018,9184  TaggingDelay                       N
    17516   0018,9185  RespiratoryMotionCompTechDescr     N
    17517   0018,9186  RespiratorySignalSourceID          N
    17518   0018,9195  ChemicalShiftsMinIntegrateLimitHz  N
    17519   0018,9196  ChemicalShiftsMaxIntegrateLimitHz  N
    17520   0018,9197  MRVelocityEncodingSequence         N
    17521   0018,9198  FirstOrderPhaseCorrection          N
    17522   0018,9199  WaterReferencedPhaseCorrection     N
    17523   0018,9200  MRSpectroscopyAcquisitionType      N
    17524   0018,9214  RespiratoryCyclePosition           N
    17525   0018,9217  VelocityEncodingMaximumValue       N
    17526   0018,9218  TagSpacingSecondDimension          N
    17527   0018,9219  TagAngleSecondAxis                 N
    17528   0018,9220  FrameAcquisitionDuration           N
    17529   0018,9226  MRImageFrameTypeSequence           N
    17530   0018,9227  MRSpectroscopyFrameTypeSequence    N
    17531   0018,9231  MRAcqPhaseEncodingStepsInPlane     N
    17532   0018,9232  MRAcqPhaseEncodingStepsOutOfPlane  N
    17533   0018,9234  SpectroscopyAcqPhaseColumns        N
    17534   0018,9236  CardiacCyclePosition               N
    17535   0018,9239  SpecificAbsorptionRateSequence     N
    17536   0018,9240  RFEchoTrainLength                  N
    17537   0018,9241  GradientEchoTrainLength            N
    17538   0018,9295  ChemicalShiftsMinIntegrateLimitPPM N
    17539   0018,9296  ChemicalShiftsMaxIntegrateLimitPPM N
    17540   0018,9301  CTAcquisitionTypeSequence          N
    17541   0018,9302  AcquisitionType                    N
    17542   0018,9303  TubeAngle                          N
    17543   0018,9304  CTAcquisitionDetailsSequence       N
    17544   0018,9305  RevolutionTime                     N
    17545   0018,9306  SingleCollimationWidth             N
    17546   0018,9307  TotalCollimationWidth              N
    17547   0018,9308  CTTableDynamicsSequence            N
    17548   0018,9309  TableSpeed                         N
    17549   0018,9310  TableFeedPerRotation               N
    17550   0018,9311  SpiralPitchFactor                  N
    17551   0018,9312  CTGeometrySequence                 N
    17552   0018,9313  DataCollectionCenterPatient        N
    17553   0018,9314  CTReconstructionSequence           N
    17554   0018,9315  ReconstructionAlgorithm            N
    17555   0018,9316  ConvolutionKernelGroup             N
    17556   0018,9317  ReconstructionFieldOfView          N
    17557   0018,9318  ReconstructionTargetCenterPatient  N
    17558   0018,9319  ReconstructionAngle                N
    17559   0018,9320  ImageFilter                        N
    17560   0018,9321  CTExposureSequence                 N
    17561   0018,9322  ReconstructionPixelSpacing         N
    17562   0018,9323  ExposureModulationType             N
    17563   0018,9324  EstimatedDoseSaving                N
    17564   0018,9325  CTXRayDetailsSequence              N
    17565   0018,9326  CTPositionSequence                 N
    17566   0018,9327  TablePosition                      N
    17567   0018,9328  ExposureTimeInMilliSec             N
    17568   0018,9329  CTImageFrameTypeSequence           N
    17569   0018,9330  XRayTubeCurrentInMilliAmps         N
    17570   0018,9332  ExposureInMilliAmpSec              N
    17571   0018,9333  ConstantVolumeFlag                 N
    17572   0018,9334  FluoroscopyFlag                    N
    17573   0018,9335  SourceToDataCollectionCenterDist   N
    17574   0018,9337  ContrastBolusAgentNumber           N
    17575   0018,9338  ContrastBolusIngredientCodeSeq     N
    17576   0018,9340  ContrastAdministrationProfileSeq   N
    17577   0018,9341  ContrastBolusUsageSequence         N
    17578   0018,9342  ContrastBolusAgentAdministered     N
    17579   0018,9343  ContrastBolusAgentDetected         N
    17580   0018,9344  ContrastBolusAgentPhase            N
    17581   0018,9345  CTDIvol                            N
    17582   0018,9346  CTDIPhantomTypeCodeSequence        N
    17583   0018,9351  CalciumScoringMassFactorPatient    N
    17584   0018,9352  CalciumScoringMassFactorDevice     N
    17585   0018,9353  EnergyWeightingFactor              N
    17586   0018,9360  CTAdditionalXRaySourceSequence     N
    17587   0018,9401  ProjectionPixelCalibrationSequence N
    17588   0018,9402  DistanceSourceToIsocenter          N
    17589   0018,9403  DistanceObjectToTableTop           N
    17590   0018,9404  ObjectPixelSpacingInCenterOfBeam   N
    17591   0018,9405  PositionerPositionSequence         N
    17592   0018,9406  TablePositionSequence              N
    17593   0018,9407  CollimatorShapeSequence            N
    17594   0018,9412  XA-XRFFrameCharacteristicsSequence N
    17595   0018,9417  FrameAcquisitionSequence           N
    17596   0018,9420  XRayReceptorType                   N
    17597   0018,9423  AcquisitionProtocolName            N
    17598   0018,9424  AcquisitionProtocolDescription     N
    17599   0018,9425  ContrastBolusIngredientOpaque      N
    17600   0018,9426  DistanceReceptorPlaneToDetHousing  N
    17601   0018,9427  IntensifierActiveShape             N
    17602   0018,9428  IntensifierActiveDimensions        N
    17603   0018,9429  PhysicalDetectorSize               N
    17604   0018,9430  PositionOfIsocenterProjection      N
    17605   0018,9432  FieldOfViewSequence                N
    17606   0018,9433  FieldOfViewDescription             N
    17607   0018,9434  ExposureControlSensingRegionsSeq   N
    17608   0018,9435  ExposureControlSensingRegionShape  N
    17609   0018,9436  ExposureControlSensRegionLeftEdge  N
    17610   0018,9437  ExposureControlSensRegionRightEdge N
    17611   0018,9440  CenterOfCircExposControlSensRegion N
    17612   0018,9441  RadiusOfCircExposControlSensRegion N
    17613   0018,9447  ColumnAngulationPatient            N
    17614   0018,9449  BeamAngle                          N
    17615   0018,9451  FrameDetectorParametersSequence    N
    17616   0018,9452  CalculatedAnatomyThickness         N
    17617   0018,9455  CalibrationSequence                N
    17618   0018,9456  ObjectThicknessSequence            N
    17619   0018,9457  PlaneIdentification                N
    17620   0018,9461  FieldOfViewDimensionsInFloat       N
    17621   0018,9462  IsocenterReferenceSystemSequence   N
    17622   0018,9463  PositionerIsocenterPrimaryAngle    N
    17623   0018,9464  PositionerIsocenterSecondaryAngle  N
    17624   0018,9465  PositionerIsocenterDetRotAngle     N
    17625   0018,9466  TableXPositionToIsocenter          N
    17626   0018,9467  TableYPositionToIsocenter          N
    17627   0018,9468  TableZPositionToIsocenter          N
    17628   0018,9469  TableHorizontalRotationAngle       N
    17629   0018,9470  TableHeadTiltAngle                 N
    17630   0018,9471  TableCradleTiltAngle               N
    17631   0018,9472  FrameDisplayShutterSequence        N
    17632   0018,9473  AcquiredImageAreaDoseProduct       N
    17633   0018,9474  CArmPositionerTabletopRelationship N
    17634   0018,9476  XRayGeometrySequence               N
    17635   0018,9477  IrradiationEventIDSequence         N
    17636   0018,9504  XRay3DFrameTypeSequence            N
    17637   0018,9506  ContributingSourcesSequence        N
    17638   0018,9507  XRay3DAcquisitionSequence          N
    17639   0018,9508  PrimaryPositionerScanArc           N
    17640   0018,9509  SecondaryPositionerScanArc         N
    17641   0018,9510  PrimaryPositionerScanStartAngle    N
    17642   0018,9511  SecondaryPositionerScanStartAngle  N
    17643   0018,9514  PrimaryPositionerIncrement         N
    17644   0018,9515  SecondaryPositionerIncrement       N
    17645   0018,9516  StartAcquisitionDateTime           N
    17646   0018,9517  EndAcquisitionDateTime             N
    17647   0018,9524  ApplicationName                    N
    17648   0018,9525  ApplicationVersion                 N
    17649   0018,9526  ApplicationManufacturer            N
    17650   0018,9527  AlgorithmType                      N
    17651   0018,9528  AlgorithmDescription               N
    17652   0018,9530  XRay3DReconstructionSequence       N
    17653   0018,9531  ReconstructionDescription          N
    17654   0018,9538  PerProjectionAcquisitionSequence   N
    17655   0018,9601  DiffusionBMatrixSequence           N
    17656   0018,9602  DiffusionBValueXX                  N
    17657   0018,9603  DiffusionBValueXY                  N
    17658   0018,9604  DiffusionBValueXZ                  N
    17659   0018,9605  DiffusionBValueYY                  N
    17660   0018,9606  DiffusionBValueYZ                  N
    17661   0018,9607  DiffusionBValueZZ                  N
    17662   0018,9701  DecayCorrectionDateTime            N
    17663   0018,9715  StartDensityThreshold              N
    17664   0018,9722  TerminationTimeThreshold           N
    17665   0018,9725  DetectorGeometry                   N
    17666   0018,9727  AxialDetectorDimension             N
    17667   0018,9735  PETPositionSequence                N
    17668   0018,9739  NumberOfIterations                 N
    17669   0018,9740  NumberOfSubsets                    N
    17670   0018,9751  PETFrameTypeSequence               N
    17671   0018,9756  ReconstructionType                 N
    17672   0018,9758  DecayCorrected                     N
    17673   0018,9759  AttenuationCorrected               N
    17674   0018,9760  ScatterCorrected                   N
    17675   0018,9761  DeadTimeCorrected                  N
    17676   0018,9762  GantryMotionCorrected              N
    17677   0018,9763  PatientMotionCorrected             N
    17678   0018,9765  RandomsCorrected                   N
    17679   0018,9767  SensitivityCalibrated              N
    17680   0018,9801  DepthsOfFocus                      N
    17681   0018,9804  ExclusionStartDatetime             N
    17682   0018,9805  ExclusionDuration                  N
    17683   0018,9807  ImageDataTypeSequence              N
    17684   0018,9808  DataType                           N
    17685   0018,980B  AliasedDataType                    N
    17686   0018,A001  ContributingEquipmentSequence      N
    17687   0018,A002  ContributionDateTime               N
    17688   0018,A003  ContributionDescription            N
    17689   0019,1002  NumberOfCellsIInDetector           N
    17690   0019,1003  CellNumberAtTheta                  N
    17691   0019,1004  CellSpacing                        N
    17692   0019,100F  HorizFrameOfRef                    N
    17693   0019,1011  SeriesContrast                     N
    17694   0019,1012  LastPseq                           N
    17695   0019,1013  StartNumberForBaseline             N
    17696   0019,1014  EndNumberForBaseline               N
    17697   0019,1015  StartNumberForEnhancedScans        N
    17698   0019,1016  EndNumberForEnhancedScans          N
    17699   0019,1017  SeriesPlane                        N
    17700   0019,1018  FirstScanRas                       N
    17701   0019,1019  FirstScanLocation                  N
    17702   0019,101A  LastScanRas                        N
    17703   0019,101B  LastScanLoc                        N
    17704   0019,101E  DisplayFieldOfView                 N
    17705   0019,1023  TableSpeed                         N
    17706   0019,1024  MidScanTime                        N
    17707   0019,1025  MidScanFlag                        N
    17708   0019,1026  DegreesOfAzimuth                   N
    17709   0019,1027  GantryPeriod                       N
    17710   0019,102A  XRayOnPosition                     N
    17711   0019,102B  XRayOffPosition                    N
    17712   0019,102C  NumberOfTriggers                   N
    17713   0019,102E  AngleOfFirstView                   N
    17714   0019,102F  TriggerFrequency                   N
    17715   0019,1039  ScanFOVType                        N
    17716   0019,1040  StatReconFlag                      N
    17717   0019,1041  ComputeType                        N
    17718   0019,1042  SegmentNumber                      N
    17719   0019,1043  TotalSegmentsRequested             N
    17720   0019,1044  InterscanDelay                     N
    17721   0019,1047  ViewCompressionFactor              N
    17722   0019,104A  TotalNoOfRefChannels               N
    17723   0019,104B  DataSizeForScanData                N
    17724   0019,1052  ReconPostProcflag                  N
    17725   0019,1057  CTWaterNumber                      N
    17726   0019,1058  CTBoneNumber                       N
    17727   0019,105A  AcquisitionDuration                N
    17728   0019,105E  NumberOfChannels                   N
    17729   0019,105F  IncrementBetweenChannels           N
    17730   0019,1060  StartingView                       N
    17731   0019,1061  NumberOfViews                      N
    17732   0019,1062  IncrementBetweenViews              N
    17733   0019,106A  DependantOnNoViewsProcessed        N
    17734   0019,106B  FieldOfViewInDetectorCells         N
    17735   0019,1070  ValueOfBackProjectionButton        N
    17736   0019,1071  SetIfFatqEstimatesWereUsed         N
    17737   0019,1072  ZChanAvgOverViews                  N
    17738   0019,1073  AvgOfLeftRefChansOverViews         N
    17739   0019,1074  MaxLeftChanOverViews               N
    17740   0019,1075  AvgOfRightRefChansOverViews        N
    17741   0019,1076  MaxRightChanOverViews              N
    17742   0019,107D  SecondEcho                         N
    17743   0019,107E  NumberOfEchoes                     N
    17744   0019,107F  TableDelta                         N
    17745   0019,1081  Contiguous                         N
    17746   0019,1084  PeakSAR                            N
    17747   0019,1085  MonitorSAR                         N
    17748   0019,1087  CardiacRepetitionTime              N
    17749   0019,1088  ImagesPerCardiacCycle              N
    17750   0019,108A  ActualReceiveGainAnalog            N
    17751   0019,108B  ActualReceiveGainDigital           N
    17752   0019,108D  DelayAfterTrigger                  N
    17753   0019,108F  Swappf                             N
    17754   0019,1090  PauseInterval                      N
    17755   0019,1091  PulseTime                          N
    17756   0019,1092  SliceOffsetOnFreqAxis              N
    17757   0019,1093  CenterFrequency                    N
    17758   0019,1094  TransmitGain                       N
    17759   0019,1095  AnalogReceiverGain                 N
    17760   0019,1096  DigitalReceiverGain                N
    17761   0019,1097  BitmapDefiningCVs                  N
    17762   0019,1098  CenterFreqMethod                   N
    17763   0019,109B  PulseSeqMode                       N
    17764   0019,109C  PulseSeqName                       N
    17765   0019,109D  PulseSeqDate                       N
    17766   0019,109E  InternalPulseSeqName               N
    17767   0019,109F  TransmittingCoil                   N
    17768   0019,10A0  SurfaceCoilType                    N
    17769   0019,10A1  ExtremityCoilFlag                  N
    17770   0019,10A2  RawDataRunNumber                   N
    17771   0019,10A3  CalibratedFieldStrength            N
    17772   0019,10A4  SATFatWaterBone                    N
    17773   0019,10A5  ReceiveBandwidth                   N
    17774   0019,10A7  UserData01                         N
    17775   0019,10A8  UserData02                         N
    17776   0019,10A9  UserData03                         N
    17777   0019,10AA  UserData04                         N
    17778   0019,10AB  UserData05                         N
    17779   0019,10AC  UserData06                         N
    17780   0019,10AD  UserData07                         N
    17781   0019,10AE  UserData08                         N
    17782   0019,10AF  UserData09                         N
    17783   0019,10B0  UserData10                         N
    17784   0019,10B1  UserData11                         N
    17785   0019,10B2  UserData12                         N
    17786   0019,10B3  UserData13                         N
    17787   0019,10B4  UserData14                         N
    17788   0019,10B5  UserData15                         N
    17789   0019,10B6  UserData16                         N
    17790   0019,10B7  UserData17                         N
    17791   0019,10B8  UserData18                         N
    17792   0019,10B9  UserData19                         N
    17793   0019,10BA  UserData20                         N
    17794   0019,10BB  UserData21                         N
    17795   0019,10BC  UserData22                         N
    17796   0019,10BD  UserData23                         N
    17797   0019,10BE  ProjectionAngle                    N
    17798   0019,10C0  SaturationPlanes                   N
    17799   0019,10C1  SurfaceCoilIntensity               N
    17800   0019,10C2  SATLocationR                       N
    17801   0019,10C3  SATLocationL                       N
    17802   0019,10C4  SATLocationA                       N
    17803   0019,10C5  SATLocationP                       N
    17804   0019,10C6  SATLocationH                       N
    17805   0019,10C7  SATLocationF                       N
    17806   0019,10C8  SATThicknessR-L                    N
    17807   0019,10C9  SATThicknessA-P                    N
    17808   0019,10CA  SATThicknessH-F                    N
    17809   0019,10CB  PrescribedFlowAxis                 N
    17810   0019,10CC  VelocityEncoding                   N
    17811   0019,10CD  ThicknessDisclaimer                N
    17812   0019,10CE  PrescanType                        N
    17813   0019,10CF  PrescanStatus                      N
    17814   0019,10D0  RawDataType                        N
    17815   0019,10D2  ProjectionAlgorithm                N
    17816   0019,10D3  ProjectionAlgorithm                N
    17817   0019,10D5  FractionalEcho                     N
    17818   0019,10D6  PrepPulse                          N
    17819   0019,10D7  CardiacPhases                      N
    17820   0019,10D8  VariableEchoflag                   N
    17821   0019,10D9  ConcatenatedSAT                    N
    17822   0019,10DA  ReferenceChannelUsed               N
    17823   0019,10DB  BackProjectorCoefficient           N
    17824   0019,10DC  PrimarySpeedCorrectionUsed         N
    17825   0019,10DD  OverrangeCorrectionUsed            N
    17826   0019,10DE  DynamicZAlphaValue                 N
    17827   0019,10DF  UserData                           N
    17828   0019,10E0  UserData                           N
    17829   0019,10E2  VelocityEncodeScale                N
    17830   0019,10F2  FastPhases                         N
    17831   0019,10F9  TransmissionGain                   N
    17832   0020,0000  RelationshipGroupLength            N
    17833   0020,000D  StudyInstanceUID                   N
    17834   0020,000E  SeriesInstanceUID                  N
    17835   0020,0010  StudyID                            N
    17836   0020,0011  SeriesNumber                       N
    17837   0020,0012  AcquisitionNumber                  N
    17838   0020,0013  InstanceNumber                     N
    17839   0020,0014  IsotopeNumber                      N
    17840   0020,0015  PhaseNumber                        N
    17841   0020,0016  IntervalNumber                     N
    17842   0020,0017  TimeSlotNumber                     N
    17843   0020,0018  AngleNumber                        N
    17844   0020,0019  ItemNumber                         N
    17845   0020,0020  PatientOrientation                 N
    17846   0020,0022  OverlayNumber                      N
    17847   0020,0024  CurveNumber                        N
    17848   0020,0026  LookupTableNumber                  N
    17849   0020,0030  ImagePosition                      N
    17850   0020,0032  ImagePositionPatient               N
    17851   0020,0035  ImageOrientation                   N
    17852   0020,0037  ImageOrientationPatient            N
    17853   0020,0050  Location                           N
    17854   0020,0052  FrameOfReferenceUID                N
    17855   0020,0060  Laterality                         N
    17856   0020,0062  ImageLaterality                    N
    17857   0020,0070  ImageGeometryType                  N
    17858   0020,0080  MaskingImage                       N
    17859   0020,0100  TemporalPositionIdentifier         N
    17860   0020,0105  NumberOfTemporalPositions          N
    17861   0020,0110  TemporalResolution                 N
    17862   0020,0200  SynchronizationFrameOfReferenceUID N
    17863   0020,1000  SeriesInStudy                      N
    17864   0020,1001  AcquisitionsInSeries               N
    17865   0020,1002  ImagesInAcquisition                N
    17866   0020,1003  ImagesInSeries                     N
    17867   0020,1004  AcquisitionsInStudy                N
    17868   0020,1005  ImagesInStudy                      N
    17869   0020,1020  Reference                          N
    17870   0020,1040  PositionReferenceIndicator         N
    17871   0020,1041  SliceLocation                      N
    17872   0020,1070  OtherStudyNumbers                  N
    17873   0020,1200  NumberOfPatientRelatedStudies      N
    17874   0020,1202  NumberOfPatientRelatedSeries       N
    17875   0020,1204  NumberOfPatientRelatedInstances    N
    17876   0020,1206  NumberOfStudyRelatedSeries         N
    17877   0020,1208  NumberOfStudyRelatedInstances      N
    17878   0020,1209  NumberOfSeriesRelatedInstances     N
    17879   0020,31xx  SourceImageIDs                     N
    17880   0020,3401  ModifyingDeviceID                  N
    17881   0020,3402  ModifiedImageID                    N
    17882   0020,3403  ModifiedImageDate                  N
    17883   0020,3404  ModifyingDeviceManufacturer        N
    17884   0020,3405  ModifiedImageTime                  N
    17885   0020,3406  ModifiedImageDescription           N
    17886   0020,4000  ImageComments                      N
    17887   0020,5000  OriginalImageIdentification        N
    17888   0020,5002  OriginalImageIdentNomenclature     N
    17889   0020,9056  StackID                            N
    17890   0020,9057  InStackPositionNumber              N
    17891   0020,9071  FrameAnatomySequence               N
    17892   0020,9072  FrameLaterality                    N
    17893   0020,9111  FrameContentSequence               N
    17894   0020,9113  PlanePositionSequence              N
    17895   0020,9116  PlaneOrientationSequence           N
    17896   0020,9128  TemporalPositionIndex              N
    17897   0020,9153  TriggerDelayTime                   N
    17898   0020,9156  FrameAcquisitionNumber             N
    17899   0020,9157  DimensionIndexValues               N
    17900   0020,9158  FrameComments                      N
    17901   0020,9161  ConcatenationUID                   N
    17902   0020,9162  InConcatenationNumber              N
    17903   0020,9163  InConcatenationTotalNumber         N
    17904   0020,9164  DimensionOrganizationUID           N
    17905   0020,9165  DimensionIndexPointer              N
    17906   0020,9167  FunctionalGroupPointer             N
    17907   0020,9213  DimensionIndexPrivateCreator       N
    17908   0020,9221  DimensionOrganizationSequence      N
    17909   0020,9222  DimensionIndexSequence             N
    17910   0020,9228  ConcatenationFrameOffsetNumber     N
    17911   0020,9238  FunctionalGroupPrivateCreator      N
    17912   0020,9241  NominalPercentageOfCardiacPhase    N
    17913   0020,9245  NominalPercentOfRespiratoryPhase   N
    17914   0020,9246  StartingRespiratoryAmplitude       N
    17915   0020,9247  StartingRespiratoryPhase           N
    17916   0020,9248  EndingRespiratoryAmplitude         N
    17917   0020,9249  EndingRespiratoryPhase             N
    17918   0020,9250  RespiratoryTriggerType             N
    17919   0020,9251  RRIntervalTimeNominal              N
    17920   0020,9252  ActualCardiacTriggerDelayTime      N
    17921   0020,9253  RespiratorySynchronizationSequence N
    17922   0020,9254  RespiratoryIntervalTime            N
    17923   0020,9255  NominalRespiratoryTriggerDelayTime N
    17924   0020,9256  RespiratoryTriggerDelayThreshold   N
    17925   0020,9257  ActualRespiratoryTriggerDelayTime  N
    17926   0020,9301  ImagePositionVolume                N
    17927   0020,9302  ImageOrientationVolume             N
    17928   0020,9308  ApexPosition                       N
    17929   0020,9421  DimensionDescriptionLabel          N
    17930   0020,9450  PatientOrientationInFrameSequence  N
    17931   0020,9453  FrameLabel                         N
    17932   0020,9518  AcquisitionIndex                   N
    17933   0020,9529  ContributingSOPInstancesRefSeq     N
    17934   0020,9536  ReconstructionIndex                N
    17935   0021,1003  SeriesFromWhichPrescribed          N
    17936   0021,1005  GenesisVersionNow                  N
    17937   0021,1007  SeriesRecordChecksum               N
    17938   0021,1018  GenesisVersionNow                  N
    17939   0021,1019  AcqreconRecordChecksum             N
    17940   0021,1020  TableStartLocation                 N
    17941   0021,1035  SeriesFromWhichPrescribed          N
    17942   0021,1036  ImageFromWhichPrescribed           N
    17943   0021,1037  ScreenFormat                       N
    17944   0021,104A  AnatomicalReferenceForScout        N
    17945   0021,104F  LocationsInAcquisition             N
    17946   0021,1050  GraphicallyPrescribed              N
    17947   0021,1051  RotationFromSourceXRot             N
    17948   0021,1052  RotationFromSourceYRot             N
    17949   0021,1053  RotationFromSourceZRot             N
    17950   0021,1054  ImagePosition                      N
    17951   0021,1055  ImageOrientation                   N
    17952   0021,1056  IntegerSlop                        N
    17953   0021,1057  IntegerSlop                        N
    17954   0021,1058  IntegerSlop                        N
    17955   0021,1059  IntegerSlop                        N
    17956   0021,105A  IntegerSlop                        N
    17957   0021,105B  FloatSlop                          N
    17958   0021,105C  FloatSlop                          N
    17959   0021,105D  FloatSlop                          N
    17960   0021,105E  FloatSlop                          N
    17961   0021,105F  FloatSlop                          N
    17962   0021,1081  AutoWindowLevelAlpha               N
    17963   0021,1082  AutoWindowLevelBeta                N
    17964   0021,1083  AutoWindowLevelWindow              N
    17965   0021,1084  ToWindowLevelLevel                 N
    17966   0021,1090  TubeFocalSpotPosition              N
    17967   0021,1091  BiopsyPosition                     N
    17968   0021,1092  BiopsyTLocation                    N
    17969   0021,1093  BiopsyRefLocation                  N
    17970   0022,0001  LightPathFilterPassThroughWavelen  N
    17971   0022,0002  LightPathFilterPassBand            N
    17972   0022,0003  ImagePathFilterPassThroughWavelen  N
    17973   0022,0004  ImagePathFilterPassBand            N
    17974   0022,0005  PatientEyeMovementCommanded        N
    17975   0022,0006  PatientEyeMovementCommandCodeSeq   N
    17976   0022,0007  SphericalLensPower                 N
    17977   0022,0008  CylinderLensPower                  N
    17978   0022,0009  CylinderAxis                       N
    17979   0022,000A  EmmetropicMagnification            N
    17980   0022,000B  IntraOcularPressure                N
    17981   0022,000C  HorizontalFieldOfView              N
    17982   0022,000D  PupilDilated                       N
    17983   0022,000E  DegreeOfDilation                   N
    17984   0022,0010  StereoBaselineAngle                N
    17985   0022,0011  StereoBaselineDisplacement         N
    17986   0022,0012  StereoHorizontalPixelOffset        N
    17987   0022,0013  StereoVerticalPixelOffset          N
    17988   0022,0014  StereoRotation                     N
    17989   0022,0015  AcquisitionDeviceTypeCodeSequence  N
    17990   0022,0016  IlluminationTypeCodeSequence       N
    17991   0022,0017  LightPathFilterTypeStackCodeSeq    N
    17992   0022,0018  ImagePathFilterTypeStackCodeSeq    N
    17993   0022,0019  LensesCodeSequence                 N
    17994   0022,001A  ChannelDescriptionCodeSequence     N
    17995   0022,001B  RefractiveStateSequence            N
    17996   0022,001C  MydriaticAgentCodeSequence         N
    17997   0022,001D  RelativeImagePositionCodeSequence  N
    17998   0022,0020  StereoPairsSequence                N
    17999   0022,0021  LeftImageSequence                  N
    18000   0022,0022  RightImageSequence                 N
    18001   0022,0030  AxialLengthOfTheEye                N
    18002   0022,0031  OphthalmicFrameLocationSequence    N
    18003   0022,0032  ReferenceCoordinates               N
    18004   0022,0035  DepthSpatialResolution             N
    18005   0022,0036  MaximumDepthDistortion             N
    18006   0022,0037  AlongScanSpatialResolution         N
    18007   0022,0038  MaximumAlongScanDistortion         N
    18008   0022,0039  OphthalmicImageOrientation         N
    18009   0022,0041  DepthOfTransverseImage             N
    18010   0022,0042  MydriaticAgentConcUnitsSeq         N
    18011   0022,0048  AcrossScanSpatialResolution        N
    18012   0022,0049  MaximumAcrossScanDistortion        N
    18013   0022,004E  MydriaticAgentConcentration        N
    18014   0022,0055  IlluminationWaveLength             N
    18015   0022,0056  IlluminationPower                  N
    18016   0022,0057  IlluminationBandwidth              N
    18017   0022,0058  MydriaticAgentSequence             N
    18018   0023,1001  NumberOfSeriesInStudy              N
    18019   0023,1002  NumberOfUnarchivedSeries           N
    18020   0023,1010  ReferenceImageField                N
    18021   0023,1050  SummaryImage                       N
    18022   0023,1070  StartTimeSecsInFirstAxial          N
    18023   0023,1074  NoofUpdatesToHeader                N
    18024   0023,107D  IndicatesIfTheStudyHasCompleteInfo N
    18025   0025,1006  LastPulseSequenceUsed              N
    18026   0025,1007  ImagesInSeries                     N
    18027   0025,1010  LandmarkCounter                    N
    18028   0025,1011  NumberOfAcquisitions               N
    18029   0025,1014  IndicatesNoofUpdatesToHeader       N
    18030   0025,1017  SeriesCompleteFlag                 N
    18031   0025,1018  NumberOfImagesArchived             N
    18032   0025,1019  LastImageNumberUsed                N
    18033   0025,101A  PrimaryReceiverSuiteAndHost        N
    18034   0027,1006  ImageArchiveFlag                   N
    18035   0027,1010  ScoutType                          N
    18036   0027,101C  VmaMamp                            N
    18037   0027,101D  VmaPhase                           N
    18038   0027,101E  VmaMod                             N
    18039   0027,101F  VmaClip                            N
    18040   0027,1020  SmartScanOnOffFlag                 N
    18041   0027,1030  ForeignImageRevision               N
    18042   0027,1031  ImagingMode                        N
    18043   0027,1032  PulseSequence                      N
    18044   0027,1033  ImagingOptions                     N
    18045   0027,1035  PlaneType                          N
    18046   0027,1036  ObliquePlane                       N
    18047   0027,1040  RASLetterOfImageLocation           N
    18048   0027,1041  ImageLocation                      N
    18049   0027,1042  CenterRCoordOfPlaneImage           N
    18050   0027,1043  CenterACoordOfPlaneImage           N
    18051   0027,1044  CenterSCoordOfPlaneImage           N
    18052   0027,1045  NormalRCoord                       N
    18053   0027,1046  NormalACoord                       N
    18054   0027,1047  NormalSCoord                       N
    18055   0027,1048  RCoordOfTopRightCorner             N
    18056   0027,1049  ACoordOfTopRightCorner             N
    18057   0027,104A  SCoordOfTopRightCorner             N
    18058   0027,104B  RCoordOfBottomRightCorner          N
    18059   0027,104C  ACoordOfBottomRightCorner          N
    18060   0027,104D  SCoordOfBottomRightCorner          N
    18061   0027,1050  TableStartLocation                 N
    18062   0027,1051  TableEndLocation                   N
    18063   0027,1052  RASLetterForSideOfImage            N
    18064   0027,1053  RASLetterForAnteriorPosterior      N
    18065   0027,1054  RASLetterForScoutStartLoc          N
    18066   0027,1055  RASLetterForScoutEndLoc            N
    18067   0027,1060  ImageDimensionX                    N
    18068   0027,1061  ImageDimensionY                    N
    18069   0027,1062  NumberOfExcitations                N
    18070   0028,0000  ImagePresentationGroupLength       N
    18071   0028,0002  SamplesPerPixel                    N
    18072   0028,0003  SamplesPerPixelUsed                N
    18073   0028,0004  PhotometricInterpretation          N
    18074   0028,0005  ImageDimensions                    N
    18075   0028,0006  PlanarConfiguration                N
    18076   0028,0008  NumberOfFrames                     N
    18077   0028,0009  FrameIncrementPointer              N
    18078   0028,000A  FrameDimensionPointer              N
    18079   0028,0010  Rows                               N
    18080   0028,0011  Columns                            N
    18081   0028,0012  Planes                             N
    18082   0028,0014  UltrasoundColorDataPresent         N
    18083   0028,0030  PixelSpacing                       N
    18084   0028,0031  ZoomFactor                         N
    18085   0028,0032  ZoomCenter                         N
    18086   0028,0034  PixelAspectRatio                   N
    18087   0028,0040  ImageFormat                        N
    18088   0028,0050  ManipulatedImage                   N
    18089   0028,0051  CorrectedImage                     N
    18090   0028,005F  CompressionRecognitionCode         N
    18091   0028,0060  CompressionCode                    N
    18092   0028,0061  CompressionOriginator              N
    18093   0028,0062  CompressionLabel                   N
    18094   0028,0063  CompressionDescription             N
    18095   0028,0065  CompressionSequence                N
    18096   0028,0066  CompressionStepPointers            N
    18097   0028,0068  RepeatInterval                     N
    18098   0028,0069  BitsGrouped                        N
    18099   0028,0070  PerimeterTable                     N
    18100   0028,0071  PerimeterValue                     N
    18101   0028,0080  PredictorRows                      N
    18102   0028,0081  PredictorColumns                   N
    18103   0028,0082  PredictorConstants                 N
    18104   0028,0090  BlockedPixels                      N
    18105   0028,0091  BlockRows                          N
    18106   0028,0092  BlockColumns                       N
    18107   0028,0093  RowOverlap                         N
    18108   0028,0094  ColumnOverlap                      N
    18109   0028,0100  BitsAllocated                      N
    18110   0028,0101  BitsStored                         N
    18111   0028,0102  HighBit                            N
    18112   0028,0103  PixelRepresentation                N
    18113   0028,0104  SmallestValidPixelValue            N
    18114   0028,0105  LargestValidPixelValue             N
    18115   0028,0106  SmallestImagePixelValue            N
    18116   0028,0107  LargestImagePixelValue             N
    18117   0028,0108  SmallestPixelValueInSeries         N
    18118   0028,0109  LargestPixelValueInSeries          N
    18119   0028,0110  SmallestImagePixelValueInPlane     N
    18120   0028,0111  LargestImagePixelValueInPlane      N
    18121   0028,0120  PixelPaddingValue                  N
    18122   0028,0121  PixelPaddingRangeLimit             N
    18123   0028,0200  ImageLocation                      N
    18124   0028,0300  QualityControlImage                N
    18125   0028,0301  BurnedInAnnotation                 N
    18126   0028,0400  TransformLabel                     N
    18127   0028,0401  TransformVersionNumber             N
    18128   0028,0402  NumberOfTransformSteps             N
    18129   0028,0403  SequenceOfCompressedData           N
    18130   0028,0404  DetailsOfCoefficients              N
    18131   0028,04x2  CoefficientCoding                  N
    18132   0028,04x3  CoefficientCodingPointers          N
    18133   0028,0700  DCTLabel                           N
    18134   0028,0701  DataBlockDescription               N
    18135   0028,0702  DataBlock                          N
    18136   0028,0710  NormalizationFactorFormat          N
    18137   0028,0720  ZonalMapNumberFormat               N
    18138   0028,0721  ZonalMapLocation                   N
    18139   0028,0722  ZonalMapFormat                     N
    18140   0028,0730  AdaptiveMapFormat                  N
    18141   0028,0740  CodeNumberFormat                   N
    18142   0028,08x0  CodeLabel                          N
    18143   0028,08x2  NumberOfTables                     N
    18144   0028,08x3  CodeTableLocation                  N
    18145   0028,08x4  BitsForCodeWord                    N
    18146   0028,08x8  ImageDataLocation                  N
    18147   0028,0A02  PixelSpacingCalibrationType        N
    18148   0028,0A04  PixelSpacingCalibrationDescription N
    18149   0028,1040  PixelIntensityRelationship         N
    18150   0028,1041  PixelIntensityRelationshipSign     N
    18151   0028,1050  WindowCenter                       N
    18152   0028,1051  WindowWidth                        N
    18153   0028,1052  RescaleIntercept                   N
    18154   0028,1053  RescaleSlope                       N
    18155   0028,1054  RescaleType                        N
    18156   0028,1055  WindowCenterAndWidthExplanation    N
    18157   0028,1056  VOI_LUTFunction                    N
    18158   0028,1080  GrayScale                          N
    18159   0028,1090  RecommendedViewingMode             N
    18160   0028,1100  GrayLookupTableDescriptor          N
    18161   0028,1101  RedPaletteColorTableDescriptor     N
    18162   0028,1102  GreenPaletteColorTableDescriptor   N
    18163   0028,1103  BluePaletteColorTableDescriptor    N
    18164   0028,1111  LargeRedPaletteColorTableDescr     N
    18165   0028,1112  LargeGreenPaletteColorTableDescr   N
    18166   0028,1113  LargeBluePaletteColorTableDescr    N
    18167   0028,1199  PaletteColorTableUID               N
    18168   0028,1200  GrayLookupTableData                N
    18169   0028,1201  RedPaletteColorTableData           N
    18170   0028,1202  GreenPaletteColorTableData         N
    18171   0028,1203  BluePaletteColorTableData          N
    18172   0028,1211  LargeRedPaletteColorTableData      N
    18173   0028,1212  LargeGreenPaletteColorTableData    N
    18174   0028,1213  LargeBluePaletteColorTableData     N
    18175   0028,1214  LargePaletteColorLookupTableUID    N
    18176   0028,1221  SegmentedRedColorTableData         N
    18177   0028,1222  SegmentedGreenColorTableData       N
    18178   0028,1223  SegmentedBlueColorTableData        N
    18179   0028,1300  BreastImplantPresent               N
    18180   0028,1350  PartialView                        N
    18181   0028,1351  PartialViewDescription             N
    18182   0028,1352  PartialViewCodeSequence            N
    18183   0028,135A  SpatialLocationsPreserved          N
    18184   0028,1402  DataPathAssignment                 N
    18185   0028,1404  BlendingLUT1Sequence               N
    18186   0028,1406  BlendingWeightConstant             N
    18187   0028,1408  BlendingLookupTableData            N
    18188   0028,140C  BlendingLUT2Sequence               N
    18189   0028,140E  DataPathID                         N
    18190   0028,140F  RGBLUTTransferFunction             N
    18191   0028,1410  AlphaLUTTransferFunction           N
    18192   0028,2000  ICCProfile                         N
    18193   0028,2110  LossyImageCompression              N
    18194   0028,2112  LossyImageCompressionRatio         N
    18195   0028,2114  LossyImageCompressionMethod        N
    18196   0028,3000  ModalityLUTSequence                N
    18197   0028,3002  LUTDescriptor                      N
    18198   0028,3003  LUTExplanation                     N
    18199   0028,3004  ModalityLUTType                    N
    18200   0028,3006  LUTData                            N
    18201   0028,3010  VOILUTSequence                     N
    18202   0028,3110  SoftcopyVOILUTSequence             N
    18203   0028,4000  ImagePresentationComments          N
    18204   0028,5000  BiPlaneAcquisitionSequence         N
    18205   0028,6010  RepresentativeFrameNumber          N
    18206   0028,6020  FrameNumbersOfInterest             N
    18207   0028,6022  FrameOfInterestDescription         N
    18208   0028,6023  FrameOfInterestType                N
    18209   0028,6030  MaskPointers                       N
    18210   0028,6040  RWavePointer                       N
    18211   0028,6100  MaskSubtractionSequence            N
    18212   0028,6101  MaskOperation                      N
    18213   0028,6102  ApplicableFrameRange               N
    18214   0028,6110  MaskFrameNumbers                   N
    18215   0028,6112  ContrastFrameAveraging             N
    18216   0028,6114  MaskSubPixelShift                  N
    18217   0028,6120  TIDOffset                          N
    18218   0028,6190  MaskOperationExplanation           N
    18219   0028,7FE0  PixelDataProviderURL               N
    18220   0028,9001  DataPointRows                      N
    18221   0028,9002  DataPointColumns                   N
    18222   0028,9003  SignalDomainColumns                N
    18223   0028,9099  LargestMonochromePixelValue        N
    18224   0028,9108  DataRepresentation                 N
    18225   0028,9110  PixelMeasuresSequence              N
    18226   0028,9132  FrameVOILUTSequence                N
    18227   0028,9145  PixelValueTransformationSequence   N
    18228   0028,9235  SignalDomainRows                   N
    18229   0028,9411  DisplayFilterPercentage            N
    18230   0028,9415  FramePixelShiftSequence            N
    18231   0028,9416  SubtractionItemID                  N
    18232   0028,9422  PixelIntensityRelationshipLUTSeq   N
    18233   0028,9443  FramePixelDataPropertiesSequence   N
    18234   0028,9444  GeometricalProperties              N
    18235   0028,9445  GeometricMaximumDistortion         N
    18236   0028,9446  ImageProcessingApplied             N
    18237   0028,9454  MaskSelectionMode                  N
    18238   0028,9474  LUTFunction                        N
    18239   0028,9478  MaskVisibilityPercentage           N
    18240   0028,9501  PixelShiftSequence                 N
    18241   0028,9502  RegionPixelShiftSequence           N
    18242   0028,9503  VerticesOfTheRegion                N
    18243   0028,9506  PixelShiftFrameRange               N
    18244   0028,9507  LUTFrameRange                      N
    18245   0028,9520  ImageToEquipmentMappingMatrix      N
    18246   0028,9537  EquipmentCoordinateSystemID        N
    18247   0029,1004  LowerRangeOfPixels1a               N
    18248   0029,1005  LowerRangeOfPixels1b               N
    18249   0029,1006  LowerRangeOfPixels1c               N
    18250   0029,1007  LowerRangeOfPixels1d               N
    18251   0029,1008  LowerRangeOfPixels1e               N
    18252   0029,1009  LowerRangeOfPixels1f               N
    18253   0029,100A  LowerRangeOfPixels1g               N
    18254   0029,1015  LowerRangeOfPixels1h               N
    18255   0029,1016  LowerRangeOfPixels1i               N
    18256   0029,1017  LowerRangeOfPixels2                N
    18257   0029,1018  UpperRangeOfPixels2                N
    18258   0029,101A  LenOfTotHdrInBytes                 N
    18259   0029,1026  VersionOfTheHdrStruct              N
    18260   0029,1034  AdvantageCompOverflow              N
    18261   0029,1035  AdvantageCompUnderflow             N
    18262   0032,0000  StudyGroupLength                   N
    18263   0032,000A  StudyStatusID                      N
    18264   0032,000C  StudyPriorityID                    N
    18265   0032,0012  StudyIDIssuer                      N
    18266   0032,0032  StudyVerifiedDate                  N
    18267   0032,0033  StudyVerifiedTime                  N
    18268   0032,0034  StudyReadDate                      N
    18269   0032,0035  StudyReadTime                      N
    18270   0032,1000  ScheduledStudyStartDate            N
    18271   0032,1001  ScheduledStudyStartTime            N
    18272   0032,1010  ScheduledStudyStopDate             N
    18273   0032,1011  ScheduledStudyStopTime             N
    18274   0032,1020  ScheduledStudyLocation             N
    18275   0032,1021  ScheduledStudyLocationAETitle      N
    18276   0032,1030  ReasonForStudy                     N
    18277   0032,1031  RequestingPhysicianIDSequence      N
    18278   0032,1032  RequestingPhysician                N
    18279   0032,1033  RequestingService                  N
    18280   0032,1040  StudyArrivalDate                   N
    18281   0032,1041  StudyArrivalTime                   N
    18282   0032,1050  StudyCompletionDate                N
    18283   0032,1051  StudyCompletionTime                N
    18284   0032,1055  StudyComponentStatusID             N
    18285   0032,1060  RequestedProcedureDescription      N
    18286   0032,1064  RequestedProcedureCodeSequence     N
    18287   0032,1070  RequestedContrastAgent             N
    18288   0032,4000  StudyComments                      N
    18289   0038,0004  ReferencedPatientAliasSequence     N
    18290   0038,0008  VisitStatusID                      N
    18291   0038,0010  AdmissionID                        N
    18292   0038,0011  IssuerOfAdmissionID                N
    18293   0038,0016  RouteOfAdmissions                  N
    18294   0038,001A  ScheduledAdmissionDate             N
    18295   0038,001B  ScheduledAdmissionTime             N
    18296   0038,001C  ScheduledDischargeDate             N
    18297   0038,001D  ScheduledDischargeTime             N
    18298   0038,001E  ScheduledPatientInstitResidence    N
    18299   0038,0020  AdmittingDate                      N
    18300   0038,0021  AdmittingTime                      N
    18301   0038,0030  DischargeDate                      N
    18302   0038,0032  DischargeTime                      N
    18303   0038,0040  DischargeDiagnosisDescription      N
    18304   0038,0044  DischargeDiagnosisCodeSequence     N
    18305   0038,0050  SpecialNeeds                       N
    18306   0038,0060  ServiceEpisodeID                   N
    18307   0038,0061  IssuerOfServiceEpisodeID           N
    18308   0038,0062  ServiceEpisodeDescription          N
    18309   0038,0100  PertinentDocumentsSequence         N
    18310   0038,0300  CurrentPatientLocation             N
    18311   0038,0400  PatientInstitutionResidence        N
    18312   0038,0500  PatientState                       N
    18313   0038,0502  PatientClinicalTrialParticipSeq    N
    18314   0038,4000  VisitComments                      N
    18315   003A,0004  WaveformOriginality                N
    18316   003A,0005  NumberOfWaveformChannels           N
    18317   003A,0010  NumberOfWaveformSamples            N
    18318   003A,001A  SamplingFrequency                  N
    18319   003A,0020  MultiplexGroupLabel                N
    18320   003A,0200  ChannelDefinitionSequence          N
    18321   003A,0202  WaveformChannelNumber              N
    18322   003A,0203  ChannelLabel                       N
    18323   003A,0205  ChannelStatus                      N
    18324   003A,0208  ChannelSourceSequence              N
    18325   003A,0209  ChannelSourceModifiersSequence     N
    18326   003A,020A  SourceWaveformSequence             N
    18327   003A,020C  ChannelDerivationDescription       N
    18328   003A,0210  ChannelSensitivity                 N
    18329   003A,0211  ChannelSensitivityUnitsSequence    N
    18330   003A,0212  ChannelSensitivityCorrectionFactor N
    18331   003A,0213  ChannelBaseline                    N
    18332   003A,0214  ChannelTimeSkew                    N
    18333   003A,0215  ChannelSampleSkew                  N
    18334   003A,0218  ChannelOffset                      N
    18335   003A,021A  WaveformBitsStored                 N
    18336   003A,0220  FilterLowFrequency                 N
    18337   003A,0221  FilterHighFrequency                N
    18338   003A,0222  NotchFilterFrequency               N
    18339   003A,0223  NotchFilterBandwidth               N
    18340   003A,0230  WaveformDataDisplayScale           N
    18341   003A,0231  WaveformDisplayBkgCIELabValue      N
    18342   003A,0240  WaveformPresentationGroupSequence  N
    18343   003A,0241  PresentationGroupNumber            N
    18344   003A,0242  ChannelDisplaySequence             N
    18345   003A,0244  ChannelRecommendDisplayCIELabValue N
    18346   003A,0245  ChannelPosition                    N
    18347   003A,0246  DisplayShadingFlag                 N
    18348   003A,0247  FractionalChannelDisplayScale      N
    18349   003A,0248  AbsoluteChannelDisplayScale        N
    18350   003A,0300  MultiplexAudioChannelsDescrCodeSeq N
    18351   003A,0301  ChannelIdentificationCode          N
    18352   003A,0302  ChannelMode                        N
    18353   0040,0001  ScheduledStationAETitle            N
    18354   0040,0002  ScheduledProcedureStepStartDate    N
    18355   0040,0003  ScheduledProcedureStepStartTime    N
    18356   0040,0004  ScheduledProcedureStepEndDate      N
    18357   0040,0005  ScheduledProcedureStepEndTime      N
    18358   0040,0006  ScheduledPerformingPhysiciansName  N
    18359   0040,0007  ScheduledProcedureStepDescription  N
    18360   0040,0008  ScheduledProtocolCodeSequence      N
    18361   0040,0009  ScheduledProcedureStepID           N
    18362   0040,000A  StageCodeSequence                  N
    18363   0040,000B  ScheduledPerformingPhysicianIDSeq  N
    18364   0040,0010  ScheduledStationName               N
    18365   0040,0011  ScheduledProcedureStepLocation     N
    18366   0040,0012  PreMedication                      N
    18367   0040,0020  ScheduledProcedureStepStatus       N
    18368   0040,0031  LocalNamespaceEntityID             N
    18369   0040,0032  UniversalEntityID                  N
    18370   0040,0033  UniversalEntityIDType              N
    18371   0040,0035  IdentifierTypeCode                 N
    18372   0040,0036  AssigningFacilitySequence          N
    18373   0040,0100  ScheduledProcedureStepSequence     N
    18374   0040,0220  ReferencedNonImageCompositeSOPSeq  N
    18375   0040,0241  PerformedStationAETitle            N
    18376   0040,0242  PerformedStationName               N
    18377   0040,0243  PerformedLocation                  N
    18378   0040,0244  PerformedProcedureStepStartDate    N
    18379   0040,0245  PerformedProcedureStepStartTime    N
    18380   0040,0250  PerformedProcedureStepEndDate      N
    18381   0040,0251  PerformedProcedureStepEndTime      N
    18382   0040,0252  PerformedProcedureStepStatus       N
    18383   0040,0253  PerformedProcedureStepID           N
    18384   0040,0254  PerformedProcedureStepDescription  N
    18385   0040,0255  PerformedProcedureTypeDescription  N
    18386   0040,0260  PerformedProtocolCodeSequence      N
    18387   0040,0261  PerformedProtocolType              N
    18388   0040,0270  ScheduledStepAttributesSequence    N
    18389   0040,0275  RequestAttributesSequence          N
    18390   0040,0280  CommentsOnPerformedProcedureStep   N
    18391   0040,0281  ProcStepDiscontinueReasonCodeSeq   N
    18392   0040,0293  QuantitySequence                   N
    18393   0040,0294  Quantity                           N
    18394   0040,0295  MeasuringUnitsSequence             N
    18395   0040,0296  BillingItemSequence                N
    18396   0040,0300  TotalTimeOfFluoroscopy             N
    18397   0040,0301  TotalNumberOfExposures             N
    18398   0040,0302  EntranceDose                       N
    18399   0040,0303  ExposedArea                        N
    18400   0040,0306  DistanceSourceToEntrance           N
    18401   0040,0307  DistanceSourceToSupport            N
    18402   0040,030E  ExposureDoseSequence               N
    18403   0040,0310  CommentsOnRadiationDose            N
    18404   0040,0312  XRayOutput                         N
    18405   0040,0314  HalfValueLayer                     N
    18406   0040,0316  OrganDose                          N
    18407   0040,0318  OrganExposed                       N
    18408   0040,0320  BillingProcedureStepSequence       N
    18409   0040,0321  FilmConsumptionSequence            N
    18410   0040,0324  BillingSuppliesAndDevicesSequence  N
    18411   0040,0330  ReferencedProcedureStepSequence    N
    18412   0040,0340  PerformedSeriesSequence            N
    18413   0040,0400  CommentsOnScheduledProcedureStep   N
    18414   0040,0440  ProtocolContextSequence            N
    18415   0040,0441  ContentItemModifierSequence        N
    18416   0040,050A  SpecimenAccessionNumber            N
    18417   0040,0512  ContainerIdentifier                N
    18418   0040,051A  ContainerDescription               N
    18419   0040,0550  SpecimenSequence                   N
    18420   0040,0551  SpecimenIdentifier                 N
    18421   0040,0552  SpecimenDescriptionSequenceTrial   N
    18422   0040,0553  SpecimenDescriptionTrial           N
    18423   0040,0554  SpecimenUID                        N
    18424   0040,0555  AcquisitionContextSequence         N
    18425   0040,0556  AcquisitionContextDescription      N
    18426   0040,059A  SpecimenTypeCodeSequence           N
    18427   0040,0600  SpecimenShortDescription           N
    18428   0040,06FA  SlideIdentifier                    N
    18429   0040,071A  ImageCenterPointCoordinatesSeq     N
    18430   0040,072A  XOffsetInSlideCoordinateSystem     N
    18431   0040,073A  YOffsetInSlideCoordinateSystem     N
    18432   0040,074A  ZOffsetInSlideCoordinateSystem     N
    18433   0040,08D8  PixelSpacingSequence               N
    18434   0040,08DA  CoordinateSystemAxisCodeSequence   N
    18435   0040,08EA  MeasurementUnitsCodeSequence       N
    18436   0040,09F8  VitalStainCodeSequenceTrial        N
    18437   0040,1001  RequestedProcedureID               N
    18438   0040,1002  ReasonForRequestedProcedure        N
    18439   0040,1003  RequestedProcedurePriority         N
    18440   0040,1004  PatientTransportArrangements       N
    18441   0040,1005  RequestedProcedureLocation         N
    18442   0040,1006  PlacerOrderNumber-Procedure        N
    18443   0040,1007  FillerOrderNumber-Procedure        N
    18444   0040,1008  ConfidentialityCode                N
    18445   0040,1009  ReportingPriority                  N
    18446   0040,100A  ReasonForRequestedProcedureCodeSeq N
    18447   0040,1010  NamesOfIntendedRecipientsOfResults N
    18448   0040,1011  IntendedRecipientsOfResultsIDSeq   N
    18449   0040,1101  PersonIdentificationCodeSequence   N
    18450   0040,1102  PersonAddress                      N
    18451   0040,1103  PersonTelephoneNumbers             N
    18452   0040,1400  RequestedProcedureComments         N
    18453   0040,2001  ReasonForImagingServiceRequest     N
    18454   0040,2004  IssueDateOfImagingServiceRequest   N
    18455   0040,2005  IssueTimeOfImagingServiceRequest   N
    18456   0040,2006  PlacerOrderNum-ImagingServiceReq   N
    18457   0040,2007  FillerOrderNum-ImagingServiceReq   N
    18458   0040,2008  OrderEnteredBy                     N
    18459   0040,2009  OrderEntererLocation               N
    18460   0040,2010  OrderCallbackPhoneNumber           N
    18461   0040,2016  PlacerOrderNum-ImagingServiceReq   N
    18462   0040,2017  FillerOrderNum-ImagingServiceReq   N
    18463   0040,2400  ImagingServiceRequestComments      N
    18464   0040,3001  ConfidentialityOnPatientDataDescr  N
    18465   0040,4001  GenPurposeScheduledProcStepStatus  N
    18466   0040,4002  GenPurposePerformedProcStepStatus  N
    18467   0040,4003  GenPurposeSchedProcStepPriority    N
    18468   0040,4004  SchedProcessingApplicationsCodeSeq N
    18469   0040,4005  SchedProcedureStepStartDateAndTime N
    18470   0040,4006  MultipleCopiesFlag                 N
    18471   0040,4007  PerformedProcessingAppsCodeSeq     N
    18472   0040,4009  HumanPerformerCodeSequence         N
    18473   0040,4010  SchedProcStepModificationDateTime  N
    18474   0040,4011  ExpectedCompletionDateAndTime      N
    18475   0040,4015  ResultingGenPurposePerfProcStepSeq N
    18476   0040,4016  RefGenPurposeSchedProcStepSeq      N
    18477   0040,4018  ScheduledWorkitemCodeSequence      N
    18478   0040,4019  PerformedWorkitemCodeSequence      N
    18479   0040,4020  InputAvailabilityFlag              N
    18480   0040,4021  InputInformationSequence           N
    18481   0040,4022  RelevantInformationSequence        N
    18482   0040,4023  RefGenPurSchedProcStepTransUID     N
    18483   0040,4025  ScheduledStationNameCodeSequence   N
    18484   0040,4026  ScheduledStationClassCodeSequence  N
    18485   0040,4027  SchedStationGeographicLocCodeSeq   N
    18486   0040,4028  PerformedStationNameCodeSequence   N
    18487   0040,4029  PerformedStationClassCodeSequence  N
    18488   0040,4030  PerformedStationGeogLocCodeSeq     N
    18489   0040,4031  RequestedSubsequentWorkItemCodeSeq N
    18490   0040,4032  NonDICOMOutputCodeSequence         N
    18491   0040,4033  OutputInformationSequence          N
    18492   0040,4034  ScheduledHumanPerformersSequence   N
    18493   0040,4035  ActualHumanPerformersSequence      N
    18494   0040,4036  HumanPerformersOrganization        N
    18495   0040,4037  HumanPerformerName                 N
    18496   0040,4040  RawDataHandling                    N
    18497   0040,8302  EntranceDoseInMilliGy              N
    18498   0040,9094  RefImageRealWorldValueMappingSeq   N
    18499   0040,9096  RealWorldValueMappingSequence      N
    18500   0040,9098  PixelValueMappingCodeSequence      N
    18501   0040,9210  LUTLabel                           N
    18502   0040,9211  RealWorldValueLastValueMapped      N
    18503   0040,9212  RealWorldValueLUTData              N
    18504   0040,9216  RealWorldValueFirstValueMapped     N
    18505   0040,9224  RealWorldValueIntercept            N
    18506   0040,9225  RealWorldValueSlope                N
    18507   0040,A010  RelationshipType                   N
    18508   0040,A027  VerifyingOrganization              N
    18509   0040,A030  VerificationDateTime               N
    18510   0040,A032  ObservationDateTime                N
    18511   0040,A040  ValueType                          N
    18512   0040,A043  ConceptNameCodeSequence            N
    18513   0040,A050  ContinuityOfContent                N
    18514   0040,A073  VerifyingObserverSequence          N
    18515   0040,A075  VerifyingObserverName              N
    18516   0040,A078  AuthorObserverSequence             N
    18517   0040,A07A  ParticipantSequence                N
    18518   0040,A07C  CustodialOrganizationSequence      N
    18519   0040,A080  ParticipationType                  N
    18520   0040,A082  ParticipationDateTime              N
    18521   0040,A084  ObserverType                       N
    18522   0040,A088  VerifyingObserverIdentCodeSequence N
    18523   0040,A090  EquivalentCDADocumentSequence      N
    18524   0040,A0B0  ReferencedWaveformChannels         N
    18525   0040,A120  DateTime                           N
    18526   0040,A121  Date                               N
    18527   0040,A122  Time                               N
    18528   0040,A123  PersonName                         N
    18529   0040,A124  UID                                N
    18530   0040,A130  TemporalRangeType                  N
    18531   0040,A132  ReferencedSamplePositions          N
    18532   0040,A136  ReferencedFrameNumbers             N
    18533   0040,A138  ReferencedTimeOffsets              N
    18534   0040,A13A  ReferencedDateTime                 N
    18535   0040,A160  TextValue                          N
    18536   0040,A168  ConceptCodeSequence                N
    18537   0040,A170  PurposeOfReferenceCodeSequence     N
    18538   0040,A180  AnnotationGroupNumber              N
    18539   0040,A195  ModifierCodeSequence               N
    18540   0040,A300  MeasuredValueSequence              N
    18541   0040,A301  NumericValueQualifierCodeSequence  N
    18542   0040,A30A  NumericValue                       N
    18543   0040,A353  AddressTrial                       N
    18544   0040,A354  TelephoneNumberTrial               N
    18545   0040,A360  PredecessorDocumentsSequence       N
    18546   0040,A370  ReferencedRequestSequence          N
    18547   0040,A372  PerformedProcedureCodeSequence     N
    18548   0040,A375  CurrentRequestedProcEvidenceSeq    N
    18549   0040,A385  PertinentOtherEvidenceSequence     N
    18550   0040,A390  HL7StructuredDocumentRefSeq        N
    18551   0040,A491  CompletionFlag                     N
    18552   0040,A492  CompletionFlagDescription          N
    18553   0040,A493  VerificationFlag                   N
    18554   0040,A494  ArchiveRequested                   N
    18555   0040,A496  PreliminaryFlag                    N
    18556   0040,A504  ContentTemplateSequence            N
    18557   0040,A525  IdenticalDocumentsSequence         N
    18558   0040,A730  ContentSequence                    N
    18559   0040,B020  AnnotationSequence                 N
    18560   0040,DB00  TemplateIdentifier                 N
    18561   0040,DB06  TemplateVersion                    N
    18562   0040,DB07  TemplateLocalVersion               N
    18563   0040,DB0B  TemplateExtensionFlag              N
    18564   0040,DB0C  TemplateExtensionOrganizationUID   N
    18565   0040,DB0D  TemplateExtensionCreatorUID        N
    18566   0040,DB73  ReferencedContentItemIdentifier    N
    18567   0040,E001  HL7InstanceIdentifier              N
    18568   0040,E004  HL7DocumentEffectiveTime           N
    18569   0040,E006  HL7DocumentTypeCodeSequence        N
    18570   0040,E010  RetrieveURI                        N
    18571   0040,E011  RetrieveLocationUID                N
    18572   0042,0010  DocumentTitle                      N
    18573   0042,0011  EncapsulatedDocument               N
    18574   0042,0012  MIMETypeOfEncapsulatedDocument     N
    18575   0042,0013  SourceInstanceSequence             N
    18576   0042,0014  ListOfMIMETypes                    N
    18577   0043,1001  BitmapOfPrescanOptions             N
    18578   0043,1002  GradientOffsetInX                  N
    18579   0043,1003  GradientOffsetInY                  N
    18580   0043,1004  GradientOffsetInZ                  N
    18581   0043,1005  ImgIsOriginalOrUnoriginal          N
    18582   0043,1006  NumberOfEPIShots                   N
    18583   0043,1007  ViewsPerSegment                    N
    18584   0043,1008  RespiratoryRateBpm                 N
    18585   0043,1009  RespiratoryTriggerPoint            N
    18586   0043,100A  TypeOfReceiverUsed                 N
    18587   0043,100B  PeakRateOfChangeOfGradientField    N
    18588   0043,100C  LimitsInUnitsOfPercent             N
    18589   0043,100D  PSDEstimatedLimit                  N
    18590   0043,100E  PSDEstimatedLimitInTeslaPerSecond  N
    18591   0043,100F  Saravghead                         N
    18592   0043,1010  WindowValue                        N
    18593   0043,1011  TotalInputViews                    N
    18594   0043,1012  X-RayChain                         N
    18595   0043,1013  DeconKernelParameters              N
    18596   0043,1014  CalibrationParameters              N
    18597   0043,1015  TotalOutputViews                   N
    18598   0043,1016  NumberOfOverranges                 N
    18599   0043,1017  IBHImageScaleFactors               N
    18600   0043,1018  BBHCoefficients                    N
    18601   0043,1019  NumberOfBBHChainsToBlend           N
    18602   0043,101A  StartingChannelNumber              N
    18603   0043,101B  PpscanParameters                   N
    18604   0043,101C  GEImageIntegrity                   N
    18605   0043,101D  LevelValue                         N
    18606   0043,101E  DeltaStartTime                     N
    18607   0043,101F  MaxOverrangesInAView               N
    18608   0043,1020  AvgOverrangesAllViews              N
    18609   0043,1021  CorrectedAfterGlowTerms            N
    18610   0043,1025  ReferenceChannels                  N
    18611   0043,1026  NoViewsRefChansBlocked             N
    18612   0043,1027  ScanPitchRatio                     N
    18613   0043,1028  UniqueImageIden                    N
    18614   0043,1029  HistogramTables                    N
    18615   0043,102A  UserDefinedData                    N
    18616   0043,102B  PrivateScanOptions                 N
    18617   0043,102C  EffectiveEchoSpacing               N
    18618   0043,102D  StringSlopField1                   N
    18619   0043,102E  StringSlopField2                   N
    18620   0043,102F  RawDataType                        N
    18621   0043,1030  RawDataType                        N
    18622   0043,1031  RACordOfTargetReconCenter          N
    18623   0043,1032  RawDataType                        N
    18624   0043,1033  NegScanspacing                     N
    18625   0043,1034  OffsetFrequency                    N
    18626   0043,1035  UserUsageTag                       N
    18627   0043,1036  UserFillMapMSW                     N
    18628   0043,1037  UserFillMapLSW                     N
    18629   0043,1038  User25-48                          N
    18630   0043,1039  SlopInt6-9                         N
    18631   0043,1040  TriggerOnPosition                  N
    18632   0043,1041  DegreeOfRotation                   N
    18633   0043,1042  DASTriggerSource                   N
    18634   0043,1043  DASFpaGain                         N
    18635   0043,1044  DASOutputSource                    N
    18636   0043,1045  DASAdInput                         N
    18637   0043,1046  DASCalMode                         N
    18638   0043,1047  DASCalFrequency                    N
    18639   0043,1048  DASRegXm                           N
    18640   0043,1049  DASAutoZero                        N
    18641   0043,104A  StartingChannelOfView              N
    18642   0043,104B  DASXmPattern                       N
    18643   0043,104C  TGGCTriggerMode                    N
    18644   0043,104D  StartScanToXrayOnDelay             N
    18645   0043,104E  DurationOfXrayOn                   N
    18646   0043,1060  SlopInt10-17                       N
    18647   0043,1061  ScannerStudyEntityUID              N
    18648   0043,1062  ScannerStudyID                     N
    18649   0043,106f  ScannerTableEntry                  N
    18650   0044,0001  ProductPackageIdentifier           N
    18651   0044,0002  SubstanceAdministrationApproval    N
    18652   0044,0003  ApprovalStatusFurtherDescription   N
    18653   0044,0004  ApprovalStatusDateTime             N
    18654   0044,0007  ProductTypeCodeSequence            N
    18655   0044,0008  ProductName                        N
    18656   0044,0009  ProductDescription                 N
    18657   0044,000A  ProductLotIdentifier               N
    18658   0044,000B  ProductExpirationDateTime          N
    18659   0044,0010  SubstanceAdministrationDateTime    N
    18660   0044,0011  SubstanceAdministrationNotes       N
    18661   0044,0012  SubstanceAdministrationDeviceID    N
    18662   0044,0013  ProductParameterSequence           N
    18663   0044,0019  SubstanceAdminParameterSeq         N
    18664   0045,1001  NumberOfMacroRowsInDetector        N
    18665   0045,1002  MacroWidthAtISOCenter              N
    18666   0045,1003  DASType                            N
    18667   0045,1004  DASGain                            N
    18668   0045,1005  DASTemperature                     N
    18669   0045,1006  TableDirectionInOrOut              N
    18670   0045,1007  ZSmoothingFactor                   N
    18671   0045,1008  ViewWeightingMode                  N
    18672   0045,1009  SigmaRowNumberWhichRowsWereUsed    N
    18673   0045,100A  MinimumDasValueFoundInTheScanData  N
    18674   0045,100B  MaximumOffsetShiftValueUsed        N
    18675   0045,100C  NumberOfViewsShifted               N
    18676   0045,100D  ZTrackingFlag                      N
    18677   0045,100E  MeanZError                         N
    18678   0045,100F  ZTrackingMaximumError              N
    18679   0045,1010  StartingViewForRow2a               N
    18680   0045,1011  NumberOfViewsInRow2a               N
    18681   0045,1012  StartingViewForRow1a               N
    18682   0045,1013  SigmaMode                          N
    18683   0045,1014  NumberOfViewsInRow1a               N
    18684   0045,1015  StartingViewForRow2b               N
    18685   0045,1016  NumberOfViewsInRow2b               N
    18686   0045,1017  StartingViewForRow1b               N
    18687   0045,1018  NumberOfViewsInRow1b               N
    18688   0045,1019  AirFilterCalibrationDate           N
    18689   0045,101A  AirFilterCalibrationTime           N
    18690   0045,101B  PhantomCalibrationDate             N
    18691   0045,101C  PhantomCalibrationTime             N
    18692   0045,101D  ZSlopeCalibrationDate              N
    18693   0045,101E  ZSlopeCalibrationTime              N
    18694   0045,101F  CrosstalkCalibrationDate           N
    18695   0045,1020  CrosstalkCalibrationTime           N
    18696   0045,1021  IterboneOptionFlag                 N
    18697   0045,1022  PeristalticFlagOption              N
    18698   0046,0012  LensDescription                    N
    18699   0046,0014  RightLensSequence                  N
    18700   0046,0015  LeftLensSequence                   N
    18701   0046,0018  CylinderSequence                   N
    18702   0046,0028  PrismSequence                      N
    18703   0046,0030  HorizontalPrismPower               N
    18704   0046,0032  HorizontalPrismBase                N
    18705   0046,0034  VerticalPrismPower                 N
    18706   0046,0036  VerticalPrismBase                  N
    18707   0046,0038  LensSegmentType                    N
    18708   0046,0040  OpticalTransmittance               N
    18709   0046,0042  ChannelWidth                       N
    18710   0046,0044  PupilSize                          N
    18711   0046,0046  CornealSize                        N
    18712   0046,0060  DistancePupillaryDistance          N
    18713   0046,0062  NearPupillaryDistance              N
    18714   0046,0064  OtherPupillaryDistance             N
    18715   0046,0075  RadiusOfCurvature                  N
    18716   0046,0076  KeratometricPower                  N
    18717   0046,0077  KeratometricAxis                   N
    18718   0046,0092  BackgroundColor                    N
    18719   0046,0094  Optotype                           N
    18720   0046,0095  OptotypePresentation               N
    18721   0046,0100  AddNearSequence                    N
    18722   0046,0101  AddIntermediateSequence            N
    18723   0046,0102  AddOtherSequence                   N
    18724   0046,0104  AddPower                           N
    18725   0046,0106  ViewingDistance                    N
    18726   0046,0125  ViewingDistanceType                N
    18727   0046,0135  VisualAcuityModifiers              N
    18728   0046,0137  DecimalVisualAcuity                N
    18729   0046,0139  OptotypeDetailedDefinition         N
    18730   0046,0146  SpherePower                        N
    18731   0046,0147  CylinderPower                      N
    18732   0050,0004  CalibrationImage                   N
    18733   0050,0010  DeviceSequence                     N
    18734   0050,0014  DeviceLength                       N
    18735   0050,0015  ContainerComponentWidth            N
    18736   0050,0016  DeviceDiameter                     N
    18737   0050,0017  DeviceDiameterUnits                N
    18738   0050,0018  DeviceVolume                       N
    18739   0050,0019  InterMarkerDistance                N
    18740   0050,001B  ContainerComponentID               N
    18741   0050,0020  DeviceDescription                  N
    18742   0054,0010  EnergyWindowVector                 N
    18743   0054,0011  NumberOfEnergyWindows              N
    18744   0054,0012  EnergyWindowInformationSequence    N
    18745   0054,0013  EnergyWindowRangeSequence          N
    18746   0054,0014  EnergyWindowLowerLimit             N
    18747   0054,0015  EnergyWindowUpperLimit             N
    18748   0054,0016  RadiopharmaceuticalInformationSeq  N
    18749   0054,0017  ResidualSyringeCounts              N
    18750   0054,0018  EnergyWindowName                   N
    18751   0054,0020  DetectorVector                     N
    18752   0054,0021  NumberOfDetectors                  N
    18753   0054,0022  DetectorInformationSequence        N
    18754   0054,0030  PhaseVector                        N
    18755   0054,0031  NumberOfPhases                     N
    18756   0054,0032  PhaseInformationSequence           N
    18757   0054,0033  NumberOfFramesInPhase              N
    18758   0054,0036  PhaseDelay                         N
    18759   0054,0038  PauseBetweenFrames                 N
    18760   0054,0039  PhaseDescription                   N
    18761   0054,0050  RotationVector                     N
    18762   0054,0051  NumberOfRotations                  N
    18763   0054,0052  RotationInformationSequence        N
    18764   0054,0053  NumberOfFramesInRotation           N
    18765   0054,0060  RRIntervalVector                   N
    18766   0054,0061  NumberOfRRIntervals                N
    18767   0054,0062  GatedInformationSequence           N
    18768   0054,0063  DataInformationSequence            N
    18769   0054,0070  TimeSlotVector                     N
    18770   0054,0071  NumberOfTimeSlots                  N
    18771   0054,0072  TimeSlotInformationSequence        N
    18772   0054,0073  TimeSlotTime                       N
    18773   0054,0080  SliceVector                        N
    18774   0054,0081  NumberOfSlices                     N
    18775   0054,0090  AngularViewVector                  N
    18776   0054,0100  TimeSliceVector                    N
    18777   0054,0101  NumberOfTimeSlices                 N
    18778   0054,0200  StartAngle                         N
    18779   0054,0202  TypeOfDetectorMotion               N
    18780   0054,0210  TriggerVector                      N
    18781   0054,0211  NumberOfTriggersInPhase            N
    18782   0054,0220  ViewCodeSequence                   N
    18783   0054,0222  ViewModifierCodeSequence           N
    18784   0054,0300  RadionuclideCodeSequence           N
    18785   0054,0302  AdministrationRouteCodeSequence    N
    18786   0054,0304  RadiopharmaceuticalCodeSequence    N
    18787   0054,0306  CalibrationDataSequence            N
    18788   0054,0308  EnergyWindowNumber                 N
    18789   0054,0400  ImageID                            N
    18790   0054,0410  PatientOrientationCodeSequence     N
    18791   0054,0412  PatientOrientationModifierCodeSeq  N
    18792   0054,0414  PatientGantryRelationshipCodeSeq   N
    18793   0054,0500  SliceProgressionDirection          N
    18794   0054,1000  SeriesType                         N
    18795   0054,1001  Units                              N
    18796   0054,1002  CountsSource                       N
    18797   0054,1004  ReprojectionMethod                 N
    18798   0054,1100  RandomsCorrectionMethod            N
    18799   0054,1101  AttenuationCorrectionMethod        N
    18800   0054,1102  DecayCorrection                    N
    18801   0054,1103  ReconstructionMethod               N
    18802   0054,1104  DetectorLinesOfResponseUsed        N
    18803   0054,1105  ScatterCorrectionMethod            N
    18804   0054,1200  AxialAcceptance                    N
    18805   0054,1201  AxialMash                          N
    18806   0054,1202  TransverseMash                     N
    18807   0054,1203  DetectorElementSize                N
    18808   0054,1210  CoincidenceWindowWidth             N
    18809   0054,1220  SecondaryCountsType                N
    18810   0054,1300  FrameReferenceTime                 N
    18811   0054,1310  PrimaryCountsAccumulated           N
    18812   0054,1311  SecondaryCountsAccumulated         N
    18813   0054,1320  SliceSensitivityFactor             N
    18814   0054,1321  DecayFactor                        N
    18815   0054,1322  DoseCalibrationFactor              N
    18816   0054,1323  ScatterFractionFactor              N
    18817   0054,1324  DeadTimeFactor                     N
    18818   0054,1330  ImageIndex                         N
    18819   0054,1400  CountsIncluded                     N
    18820   0054,1401  DeadTimeCorrectionFlag             N
    18821   0060,3000  HistogramSequence                  N
    18822   0060,3002  HistogramNumberOfBins              N
    18823   0060,3004  HistogramFirstBinValue             N
    18824   0060,3006  HistogramLastBinValue              N
    18825   0060,3008  HistogramBinWidth                  N
    18826   0060,3010  HistogramExplanation               N
    18827   0060,3020  HistogramData                      N
    18828   0062,0001  SegmentationType                   N
    18829   0062,0002  SegmentSequence                    N
    18830   0062,0003  SegmentedPropertyCategoryCodeSeq   N
    18831   0062,0004  SegmentNumber                      N
    18832   0062,0005  SegmentLabel                       N
    18833   0062,0006  SegmentDescription                 N
    18834   0062,0008  SegmentAlgorithmType               N
    18835   0062,0009  SegmentAlgorithmName               N
    18836   0062,000A  SegmentIdentificationSequence      N
    18837   0062,000B  ReferencedSegmentNumber            N
    18838   0062,000C  RecommendedDisplayGrayscaleValue   N
    18839   0062,000D  RecommendedDisplayCIELabValue      N
    18840   0062,000E  MaximumFractionalValue             N
    18841   0062,000F  SegmentedPropertyTypeCodeSequence  N
    18842   0062,0010  SegmentationFractionalType         N
    18843   0064,0002  DeformableRegistrationSequence     N
    18844   0064,0003  SourceFrameOfReferenceUID          N
    18845   0064,0005  DeformableRegistrationGridSequence N
    18846   0064,0007  GridDimensions                     N
    18847   0064,0008  GridResolution                     N
    18848   0064,0009  VectorGridData                     N
    18849   0064,000F  PreDeformationMatrixRegistSeq      N
    18850   0064,0010  PostDeformationMatrixRegistSeq     N
    18851   0066,0001  NumberOfSurfaces                   N
    18852   0066,0002  SurfaceSequence                    N
    18853   0066,0003  SurfaceNumber                      N
    18854   0066,0004  SurfaceComments                    N
    18855   0066,0009  SurfaceProcessing                  N
    18856   0066,000A  SurfaceProcessingRatio             N
    18857   0066,000E  FiniteVolume                       N
    18858   0066,0010  Manifold                           N
    18859   0066,0011  SurfacePointsSequence              N
    18860   0066,0015  NumberOfSurfacePoints              N
    18861   0066,0016  PointCoordinatesData               N
    18862   0066,0017  PointPositionAccuracy              N
    18863   0066,0018  MeanPointDistance                  N
    18864   0066,0019  MaximumPointDistance               N
    18865   0066,001B  AxisOfRotation                     N
    18866   0066,001C  CenterOfRotation                   N
    18867   0066,001E  NumberOfVectors                    N
    18868   0066,001F  VectorDimensionality               N
    18869   0066,0020  VectorAccuracy                     N
    18870   0066,0021  VectorCoordinateData               N
    18871   0066,0023  TrianglePointIndexList             N
    18872   0066,0024  EdgePointIndexList                 N
    18873   0066,0025  VertexPointIndexList               N
    18874   0066,0026  TriangleStripSequence              N
    18875   0066,0027  TriangleFanSequence                N
    18876   0066,0028  LineSequence                       N
    18877   0066,0029  PrimitivePointIndexList            N
    18878   0066,002A  SurfaceCount                       N
    18879   0066,002F  AlgorithmFamilyCodeSequ            N
    18880   0066,0031  AlgorithmVersion                   N
    18881   0066,0032  AlgorithmParameters                N
    18882   0066,0034  FacetSequence                      N
    18883   0066,0036  AlgorithmName                      N
    18884   0070,0001  GraphicAnnotationSequence          N
    18885   0070,0002  GraphicLayer                       N
    18886   0070,0003  BoundingBoxAnnotationUnits         N
    18887   0070,0004  AnchorPointAnnotationUnits         N
    18888   0070,0005  GraphicAnnotationUnits             N
    18889   0070,0006  UnformattedTextValue               N
    18890   0070,0008  TextObjectSequence                 N
    18891   0070,0009  GraphicObjectSequence              N
    18892   0070,0010  BoundingBoxTopLeftHandCorner       N
    18893   0070,0011  BoundingBoxBottomRightHandCorner   N
    18894   0070,0012  BoundingBoxTextHorizJustification  N
    18895   0070,0014  AnchorPoint                        N
    18896   0070,0015  AnchorPointVisibility              N
    18897   0070,0020  GraphicDimensions                  N
    18898   0070,0021  NumberOfGraphicPoints              N
    18899   0070,0022  GraphicData                        N
    18900   0070,0023  GraphicType                        N
    18901   0070,0024  GraphicFilled                      N
    18902   0070,0040  ImageRotationRetired               N
    18903   0070,0041  ImageHorizontalFlip                N
    18904   0070,0042  ImageRotation                      N
    18905   0070,0050  DisplayedAreaTopLeftTrial          N
    18906   0070,0051  DisplayedAreaBottomRightTrial      N
    18907   0070,0052  DisplayedAreaTopLeft               N
    18908   0070,0053  DisplayedAreaBottomRight           N
    18909   0070,005A  DisplayedAreaSelectionSequence     N
    18910   0070,0060  GraphicLayerSequence               N
    18911   0070,0062  GraphicLayerOrder                  N
    18912   0070,0066  GraphicLayerRecDisplayGraysclValue N
    18913   0070,0067  GraphicLayerRecDisplayRGBValue     N
    18914   0070,0068  GraphicLayerDescription            N
    18915   0070,0080  ContentLabel                       N
    18916   0070,0081  ContentDescription                 N
    18917   0070,0082  PresentationCreationDate           N
    18918   0070,0083  PresentationCreationTime           N
    18919   0070,0084  ContentCreatorName                 N
    18920   0070,0086  ContentCreatorIDCodeSequence       N
    18921   0070,0100  PresentationSizeMode               N
    18922   0070,0101  PresentationPixelSpacing           N
    18923   0070,0102  PresentationPixelAspectRatio       N
    18924   0070,0103  PresentationPixelMagRatio          N
    18925   0070,0306  ShapeType                          N
    18926   0070,0308  RegistrationSequence               N
    18927   0070,0309  MatrixRegistrationSequence         N
    18928   0070,030A  MatrixSequence                     N
    18929   0070,030C  FrameOfRefTransformationMatrixType N
    18930   0070,030D  RegistrationTypeCodeSequence       N
    18931   0070,030F  FiducialDescription                N
    18932   0070,0310  FiducialIdentifier                 N
    18933   0070,0311  FiducialIdentifierCodeSequence     N
    18934   0070,0312  ContourUncertaintyRadius           N
    18935   0070,0314  UsedFiducialsSequence              N
    18936   0070,0318  GraphicCoordinatesDataSequence     N
    18937   0070,031A  FiducialUID                        N
    18938   0070,031C  FiducialSetSequence                N
    18939   0070,031E  FiducialSequence                   N
    18940   0070,0401  GraphicLayerRecomDisplayCIELabVal  N
    18941   0070,0402  BlendingSequence                   N
    18942   0070,0403  RelativeOpacity                    N
    18943   0070,0404  ReferencedSpatialRegistrationSeq   N
    18944   0070,0405  BlendingPosition                   N
    18945   0072,0002  HangingProtocolName                N
    18946   0072,0004  HangingProtocolDescription         N
    18947   0072,0006  HangingProtocolLevel               N
    18948   0072,0008  HangingProtocolCreator             N
    18949   0072,000A  HangingProtocolCreationDateTime    N
    18950   0072,000C  HangingProtocolDefinitionSequence  N
    18951   0072,000E  HangingProtocolUserIDCodeSequence  N
    18952   0072,0010  HangingProtocolUserGroupName       N
    18953   0072,0012  SourceHangingProtocolSequence      N
    18954   0072,0014  NumberOfPriorsReferenced           N
    18955   0072,0020  ImageSetsSequence                  N
    18956   0072,0022  ImageSetSelectorSequence           N
    18957   0072,0024  ImageSetSelectorUsageFlag          N
    18958   0072,0026  SelectorAttribute                  N
    18959   0072,0028  SelectorValueNumber                N
    18960   0072,0030  TimeBasedImageSetsSequence         N
    18961   0072,0032  ImageSetNumber                     N
    18962   0072,0034  ImageSetSelectorCategory           N
    18963   0072,0038  RelativeTime                       N
    18964   0072,003A  RelativeTimeUnits                  N
    18965   0072,003C  AbstractPriorValue                 N
    18966   0072,003E  AbstractPriorCodeSequence          N
    18967   0072,0040  ImageSetLabel                      N
    18968   0072,0050  SelectorAttributeVR                N
    18969   0072,0052  SelectorSequencePointer            N
    18970   0072,0054  SelectorSeqPointerPrivateCreator   N
    18971   0072,0056  SelectorAttributePrivateCreator    N
    18972   0072,0060  SelectorATValue                    N
    18973   0072,0062  SelectorCSValue                    N
    18974   0072,0064  SelectorISValue                    N
    18975   0072,0066  SelectorLOValue                    N
    18976   0072,0068  SelectorLTValue                    N
    18977   0072,006A  SelectorPNValue                    N
    18978   0072,006C  SelectorSHValue                    N
    18979   0072,006E  SelectorSTValue                    N
    18980   0072,0070  SelectorUTValue                    N
    18981   0072,0072  SelectorDSValue                    N
    18982   0072,0074  SelectorFDValue                    N
    18983   0072,0076  SelectorFLValue                    N
    18984   0072,0078  SelectorULValue                    N
    18985   0072,007A  SelectorUSValue                    N
    18986   0072,007C  SelectorSLValue                    N
    18987   0072,007E  SelectorSSValue                    N
    18988   0072,0080  SelectorCodeSequenceValue          N
    18989   0072,0100  NumberOfScreens                    N
    18990   0072,0102  NominalScreenDefinitionSequence    N
    18991   0072,0104  NumberOfVerticalPixels             N
    18992   0072,0106  NumberOfHorizontalPixels           N
    18993   0072,0108  DisplayEnvironmentSpatialPosition  N
    18994   0072,010A  ScreenMinimumGrayscaleBitDepth     N
    18995   0072,010C  ScreenMinimumColorBitDepth         N
    18996   0072,010E  ApplicationMaximumRepaintTime      N
    18997   0072,0200  DisplaySetsSequence                N
    18998   0072,0202  DisplaySetNumber                   N
    18999   0072,0203  DisplaySetLabel                    N
    19000   0072,0204  DisplaySetPresentationGroup        N
    19001   0072,0206  DisplaySetPresentationGroupDescr   N
    19002   0072,0208  PartialDataDisplayHandling         N
    19003   0072,0210  SynchronizedScrollingSequence      N
    19004   0072,0212  DisplaySetScrollingGroup           N
    19005   0072,0214  NavigationIndicatorSequence        N
    19006   0072,0216  NavigationDisplaySet               N
    19007   0072,0218  ReferenceDisplaySets               N
    19008   0072,0300  ImageBoxesSequence                 N
    19009   0072,0302  ImageBoxNumber                     N
    19010   0072,0304  ImageBoxLayoutType                 N
    19011   0072,0306  ImageBoxTileHorizontalDimension    N
    19012   0072,0308  ImageBoxTileVerticalDimension      N
    19013   0072,0310  ImageBoxScrollDirection            N
    19014   0072,0312  ImageBoxSmallScrollType            N
    19015   0072,0314  ImageBoxSmallScrollAmount          N
    19016   0072,0316  ImageBoxLargeScrollType            N
    19017   0072,0318  ImageBoxLargeScrollAmount          N
    19018   0072,0320  ImageBoxOverlapPriority            N
    19019   0072,0330  CineRelativeToRealTime             N
    19020   0072,0400  FilterOperationsSequence           N
    19021   0072,0402  FilterByCategory                   N
    19022   0072,0404  FilterByAttributePresence          N
    19023   0072,0406  FilterByOperator                   N
    19024   0072,0432  SynchronizedImageBoxList           N
    19025   0072,0434  TypeOfSynchronization              N
    19026   0072,0500  BlendingOperationType              N
    19027   0072,0510  ReformattingOperationType          N
    19028   0072,0512  ReformattingThickness              N
    19029   0072,0514  ReformattingInterval               N
    19030   0072,0516  ReformattingOpInitialViewDir       N
    19031   0072,0520  3DRenderingType                    N
    19032   0072,0600  SortingOperationsSequence          N
    19033   0072,0602  SortByCategory                     N
    19034   0072,0604  SortingDirection                   N
    19035   0072,0700  DisplaySetPatientOrientation       N
    19036   0072,0702  VOIType                            N
    19037   0072,0704  PseudoColorType                    N
    19038   0072,0706  ShowGrayscaleInverted              N
    19039   0072,0710  ShowImageTrueSizeFlag              N
    19040   0072,0712  ShowGraphicAnnotationFlag          N
    19041   0072,0714  ShowPatientDemographicsFlag        N
    19042   0072,0716  ShowAcquisitionTechniquesFlag      N
    19043   0072,0717  DisplaySetHorizontalJustification  N
    19044   0072,0718  DisplaySetVerticalJustification    N
    19045   0074,1000  UnifiedProcedureStepState          N
    19046   0074,1002  UPSProgressInformationSequence     N
    19047   0074,1004  UnifiedProcedureStepProgress       N
    19048   0074,1006  UnifiedProcedureStepProgressDescr  N
    19049   0074,1008  UnifiedProcedureStepComURISeq      N
    19050   0074,100a  ContactURI                         N
    19051   0074,100c  ContactDisplayName                 N
    19052   0074,1020  BeamTaskSequence                   N
    19053   0074,1022  BeamTaskType                       N
    19054   0074,1024  BeamOrderIndex                     N
    19055   0074,1030  DeliveryVerificationImageSequence  N
    19056   0074,1032  VerificationImageTiming            N
    19057   0074,1034  DoubleExposureFlag                 N
    19058   0074,1036  DoubleExposureOrdering             N
    19059   0074,1038  DoubleExposureMeterset             N
    19060   0074,103A  DoubleExposureFieldDelta           N
    19061   0074,1040  RelatedReferenceRTImageSequence    N
    19062   0074,1042  GeneralMachineVerificationSequence N
    19063   0074,1044  ConventionalMachineVerificationSeq N
    19064   0074,1046  IonMachineVerificationSequence     N
    19065   0074,1048  FailedAttributesSequence           N
    19066   0074,104A  OverriddenAttributesSequence       N
    19067   0074,104C  ConventionalControlPointVerifySeq  N
    19068   0074,104E  IonControlPointVerificationSeq     N
    19069   0074,1050  AttributeOccurrenceSequence        N
    19070   0074,1052  AttributeOccurrencePointer         N
    19071   0074,1054  AttributeItemSelector              N
    19072   0074,1056  AttributeOccurrencePrivateCreator  N
    19073   0074,1200  ScheduledProcedureStepPriority     N
    19074   0074,1202  WorklistLabel                      N
    19075   0074,1204  ProcedureStepLabel                 N
    19076   0074,1210  ScheduledProcessingParametersSeq   N
    19077   0074,1212  PerformedProcessingParametersSeq   N
    19078   0074,1216  UPSPerformedProcedureSequence      N
    19079   0074,1220  RelatedProcedureStepSequence       N
    19080   0074,1222  ProcedureStepRelationshipType      N
    19081   0074,1230  DeletionLock                       N
    19082   0074,1234  ReceivingAE                        N
    19083   0074,1236  RequestingAE                       N
    19084   0074,1238  ReasonForCancellation              N
    19085   0074,1242  SCPStatus                          N
    19086   0074,1244  SubscriptionListStatus             N
    19087   0074,1246  UPSListStatus                      N
    19088   0088,0130  StorageMediaFileSetID              N
    19089   0088,0140  StorageMediaFileSetUID             N
    19090   0088,0200  IconImageSequence                  N
    19091   0088,0904  TopicTitle                         N
    19092   0088,0906  TopicSubject                       N
    19093   0088,0910  TopicAuthor                        N
    19094   0088,0912  TopicKeywords                      N
    19095   0100,0410  SOPInstanceStatus                  N
    19096   0100,0420  SOPAuthorizationDateAndTime        N
    19097   0100,0424  SOPAuthorizationComment            N
    19098   0100,0426  AuthorizationEquipmentCertNumber   N
    19099   0400,0005  MACIDNumber                        N
    19100   0400,0010  MACCalculationTransferSyntaxUID    N
    19101   0400,0015  MACAlgorithm                       N
    19102   0400,0020  DataElementsSigned                 N
    19103   0400,0100  DigitalSignatureUID                N
    19104   0400,0105  DigitalSignatureDateTime           N
    19105   0400,0110  CertificateType                    N
    19106   0400,0115  CertificateOfSigner                N
    19107   0400,0120  Signature                          N
    19108   0400,0305  CertifiedTimestampType             N
    19109   0400,0310  CertifiedTimestamp                 N
    19110   0400,0401  DigitalSignaturePurposeCodeSeq     N
    19111   0400,0402  ReferencedDigitalSignatureSeq      N
    19112   0400,0403  ReferencedSOPInstanceMACSeq        N
    19113   0400,0404  MAC                                N
    19114   0400,0500  EncryptedAttributesSequence        N
    19115   0400,0510  EncryptedContentTransferSyntaxUID  N
    19116   0400,0520  EncryptedContent                   N
    19117   0400,0550  ModifiedAttributesSequence         N
    19118   0400,0561  OriginalAttributesSequence         N
    19119   0400,0562  AttributeModificationDateTime      N
    19120   0400,0563  ModifyingSystem                    N
    19121   0400,0564  SourceOfPreviousValues             N
    19122   0400,0565  ReasonForTheAttributeModification  N
    19123   1000,xxx0  EscapeTriplet                      N
    19124   1000,xxx1  RunLengthTriplet                   N
    19125   1000,xxx2  HuffmanTableSize                   N
    19126   1000,xxx3  HuffmanTableTriplet                N
    19127   1000,xxx4  ShiftTableSize                     N
    19128   1000,xxx5  ShiftTableTriplet                  N
    19129   1010,xxxx  ZonalMap                           N
    19130   2000,0010  NumberOfCopies                     N
    19131   2000,001E  PrinterConfigurationSequence       N
    19132   2000,0020  PrintPriority                      N
    19133   2000,0030  MediumType                         N
    19134   2000,0040  FilmDestination                    N
    19135   2000,0050  FilmSessionLabel                   N
    19136   2000,0060  MemoryAllocation                   N
    19137   2000,0061  MaximumMemoryAllocation            N
    19138   2000,0062  ColorImagePrintingFlag             N
    19139   2000,0063  CollationFlag                      N
    19140   2000,0065  AnnotationFlag                     N
    19141   2000,0067  ImageOverlayFlag                   N
    19142   2000,0069  PresentationLUTFlag                N
    19143   2000,006A  ImageBoxPresentationLUTFlag        N
    19144   2000,00A0  MemoryBitDepth                     N
    19145   2000,00A1  PrintingBitDepth                   N
    19146   2000,00A2  MediaInstalledSequence             N
    19147   2000,00A4  OtherMediaAvailableSequence        N
    19148   2000,00A8  SupportedImageDisplayFormatSeq     N
    19149   2000,0500  ReferencedFilmBoxSequence          N
    19150   2000,0510  ReferencedStoredPrintSequence      N
    19151   2010,0010  ImageDisplayFormat                 N
    19152   2010,0030  AnnotationDisplayFormatID          N
    19153   2010,0040  FilmOrientation                    N
    19154   2010,0050  FilmSizeID                         N
    19155   2010,0052  PrinterResolutionID                N
    19156   2010,0054  DefaultPrinterResolutionID         N
    19157   2010,0060  MagnificationType                  N
    19158   2010,0080  SmoothingType                      N
    19159   2010,00A6  DefaultMagnificationType           N
    19160   2010,00A7  OtherMagnificationTypesAvailable   N
    19161   2010,00A8  DefaultSmoothingType               N
    19162   2010,00A9  OtherSmoothingTypesAvailable       N
    19163   2010,0100  BorderDensity                      N
    19164   2010,0110  EmptyImageDensity                  N
    19165   2010,0120  MinDensity                         N
    19166   2010,0130  MaxDensity                         N
    19167   2010,0140  Trim                               N
    19168   2010,0150  ConfigurationInformation           N
    19169   2010,0152  ConfigurationInformationDescr      N
    19170   2010,0154  MaximumCollatedFilms               N
    19171   2010,015E  Illumination                       N
    19172   2010,0160  ReflectedAmbientLight              N
    19173   2010,0376  PrinterPixelSpacing                N
    19174   2010,0500  ReferencedFilmSessionSequence      N
    19175   2010,0510  ReferencedImageBoxSequence         N
    19176   2010,0520  ReferencedBasicAnnotationBoxSeq    N
    19177   2020,0010  ImageBoxPosition                   N
    19178   2020,0020  Polarity                           N
    19179   2020,0030  RequestedImageSize                 N
    19180   2020,0040  RequestedDecimate-CropBehavior     N
    19181   2020,0050  RequestedResolutionID              N
    19182   2020,00A0  RequestedImageSizeFlag             N
    19183   2020,00A2  DecimateCropResult                 N
    19184   2020,0110  BasicGrayscaleImageSequence        N
    19185   2020,0111  BasicColorImageSequence            N
    19186   2020,0130  ReferencedImageOverlayBoxSequence  N
    19187   2020,0140  ReferencedVOILUTBoxSequence        N
    19188   2030,0010  AnnotationPosition                 N
    19189   2030,0020  TextString                         N
    19190   2040,0010  ReferencedOverlayPlaneSequence     N
    19191   2040,0011  ReferencedOverlayPlaneGroups       N
    19192   2040,0020  OverlayPixelDataSequence           N
    19193   2040,0060  OverlayMagnificationType           N
    19194   2040,0070  OverlaySmoothingType               N
    19195   2040,0072  OverlayOrImageMagnification        N
    19196   2040,0074  MagnifyToNumberOfColumns           N
    19197   2040,0080  OverlayForegroundDensity           N
    19198   2040,0082  OverlayBackgroundDensity           N
    19199   2040,0090  OverlayMode                        N
    19200   2040,0100  ThresholdDensity                   N
    19201   2040,0500  ReferencedImageBoxSequence         N
    19202   2050,0010  PresentationLUTSequence            N
    19203   2050,0020  PresentationLUTShape               N
    19204   2050,0500  ReferencedPresentationLUTSequence  N
    19205   2100,0010  PrintJobID                         N
    19206   2100,0020  ExecutionStatus                    N
    19207   2100,0030  ExecutionStatusInfo                N
    19208   2100,0040  CreationDate                       N
    19209   2100,0050  CreationTime                       N
    19210   2100,0070  Originator                         N
    19211   2100,0140  DestinationAE                      N
    19212   2100,0160  OwnerID                            N
    19213   2100,0170  NumberOfFilms                      N
    19214   2100,0500  ReferencedPrintJobSequence         N
    19215   2110,0010  PrinterStatus                      N
    19216   2110,0020  PrinterStatusInfo                  N
    19217   2110,0030  PrinterName                        N
    19218   2110,0099  PrintQueueID                       N
    19219   2120,0010  QueueStatus                        N
    19220   2120,0050  PrintJobDescriptionSequence        N
    19221   2120,0070  ReferencedPrintJobSequence         N
    19222   2130,0010  PrintManagementCapabilitiesSeq     N
    19223   2130,0015  PrinterCharacteristicsSequence     N
    19224   2130,0030  FilmBoxContentSequence             N
    19225   2130,0040  ImageBoxContentSequence            N
    19226   2130,0050  AnnotationContentSequence          N
    19227   2130,0060  ImageOverlayBoxContentSequence     N
    19228   2130,0080  PresentationLUTContentSequence     N
    19229   2130,00A0  ProposedStudySequence              N
    19230   2130,00C0  OriginalImageSequence              N
    19231   2200,0001  LabelFromInfoExtractedFromInstance N
    19232   2200,0002  LabelText                          N
    19233   2200,0003  LabelStyleSelection                N
    19234   2200,0004  MediaDisposition                   N
    19235   2200,0005  BarcodeValue                       N
    19236   2200,0006  BarcodeSymbology                   N
    19237   2200,0007  AllowMediaSplitting                N
    19238   2200,0008  IncludeNonDICOMObjects             N
    19239   2200,0009  IncludeDisplayApplication          N
    19240   2200,000A  SaveCompInstancesAfterMediaCreate  N
    19241   2200,000B  TotalNumberMediaPiecesCreated      N
    19242   2200,000C  RequestedMediaApplicationProfile   N
    19243   2200,000D  ReferencedStorageMediaSequence     N
    19244   2200,000E  FailureAttributes                  N
    19245   2200,000F  AllowLossyCompression              N
    19246   2200,0020  RequestPriority                    N
    19247   3002,0002  RTImageLabel                       N
    19248   3002,0003  RTImageName                        N
    19249   3002,0004  RTImageDescription                 N
    19250   3002,000A  ReportedValuesOrigin               N
    19251   3002,000C  RTImagePlane                       N
    19252   3002,000D  XRayImageReceptorTranslation       N
    19253   3002,000E  XRayImageReceptorAngle             N
    19254   3002,0010  RTImageOrientation                 N
    19255   3002,0011  ImagePlanePixelSpacing             N
    19256   3002,0012  RTImagePosition                    N
    19257   3002,0020  RadiationMachineName               N
    19258   3002,0022  RadiationMachineSAD                N
    19259   3002,0024  RadiationMachineSSD                N
    19260   3002,0026  RTImageSID                         N
    19261   3002,0028  SourceToReferenceObjectDistance    N
    19262   3002,0029  FractionNumber                     N
    19263   3002,0030  ExposureSequence                   N
    19264   3002,0032  MetersetExposure                   N
    19265   3002,0034  DiaphragmPosition                  N
    19266   3002,0040  FluenceMapSequence                 N
    19267   3002,0041  FluenceDataSource                  N
    19268   3002,0042  FluenceDataScale                   N
    19269   3002,0051  FluenceMode                        N
    19270   3002,0052  FluenceModeID                      N
    19271   3004,0001  DVHType                            N
    19272   3004,0002  DoseUnits                          N
    19273   3004,0004  DoseType                           N
    19274   3004,0006  DoseComment                        N
    19275   3004,0008  NormalizationPoint                 N
    19276   3004,000A  DoseSummationType                  N
    19277   3004,000C  GridFrameOffsetVector              N
    19278   3004,000E  DoseGridScaling                    N
    19279   3004,0010  RTDoseROISequence                  N
    19280   3004,0012  DoseValue                          N
    19281   3004,0014  TissueHeterogeneityCorrection      N
    19282   3004,0040  DVHNormalizationPoint              N
    19283   3004,0042  DVHNormalizationDoseValue          N
    19284   3004,0050  DVHSequence                        N
    19285   3004,0052  DVHDoseScaling                     N
    19286   3004,0054  DVHVolumeUnits                     N
    19287   3004,0056  DVHNumberOfBins                    N
    19288   3004,0058  DVHData                            N
    19289   3004,0060  DVHReferencedROISequence           N
    19290   3004,0062  DVHROIContributionType             N
    19291   3004,0070  DVHMinimumDose                     N
    19292   3004,0072  DVHMaximumDose                     N
    19293   3004,0074  DVHMeanDose                        N
    19294   3006,0002  StructureSetLabel                  N
    19295   3006,0004  StructureSetName                   N
    19296   3006,0006  StructureSetDescription            N
    19297   3006,0008  StructureSetDate                   N
    19298   3006,0009  StructureSetTime                   N
    19299   3006,0010  ReferencedFrameOfReferenceSequence N
    19300   3006,0012  RTReferencedStudySequence          N
    19301   3006,0014  RTReferencedSeriesSequence         N
    19302   3006,0016  ContourImageSequence               N
    19303   3006,0020  StructureSetROISequence            N
    19304   3006,0022  ROINumber                          N
    19305   3006,0024  ReferencedFrameOfReferenceUID      N
    19306   3006,0026  ROIName                            N
    19307   3006,0028  ROIDescription                     N
    19308   3006,002A  ROIDisplayColor                    N
    19309   3006,002C  ROIVolume                          N
    19310   3006,0030  RTRelatedROISequence               N
    19311   3006,0033  RTROIRelationship                  N
    19312   3006,0036  ROIGenerationAlgorithm             N
    19313   3006,0038  ROIGenerationDescription           N
    19314   3006,0039  ROIContourSequence                 N
    19315   3006,0040  ContourSequence                    N
    19316   3006,0042  ContourGeometricType               N
    19317   3006,0044  ContourSlabThickness               N
    19318   3006,0045  ContourOffsetVector                N
    19319   3006,0046  NumberOfContourPoints              N
    19320   3006,0048  ContourNumber                      N
    19321   3006,0049  AttachedContours                   N
    19322   3006,0050  ContourData                        N
    19323   3006,0080  RTROIObservationsSequence          N
    19324   3006,0082  ObservationNumber                  N
    19325   3006,0084  ReferencedROINumber                N
    19326   3006,0085  ROIObservationLabel                N
    19327   3006,0086  RTROIIdentificationCodeSequence    N
    19328   3006,0088  ROIObservationDescription          N
    19329   3006,00A0  RelatedRTROIObservationsSequence   N
    19330   3006,00A4  RTROIInterpretedType               N
    19331   3006,00A6  ROIInterpreter                     N
    19332   3006,00B0  ROIPhysicalPropertiesSequence      N
    19333   3006,00B2  ROIPhysicalProperty                N
    19334   3006,00B4  ROIPhysicalPropertyValue           N
    19335   3006,00B6  ROIElementalCompositionSequence    N
    19336   3006,00B7  ROIElementalCompAtomicNumber       N
    19337   3006,00B8  ROIElementalCompAtomicMassFraction N
    19338   3006,00C0  FrameOfReferenceRelationshipSeq    N
    19339   3006,00C2  RelatedFrameOfReferenceUID         N
    19340   3006,00C4  FrameOfReferenceTransformType      N
    19341   3006,00C6  FrameOfReferenceTransformMatrix    N
    19342   3006,00C8  FrameOfReferenceTransformComment   N
    19343   3008,0010  MeasuredDoseReferenceSequence      N
    19344   3008,0012  MeasuredDoseDescription            N
    19345   3008,0014  MeasuredDoseType                   N
    19346   3008,0016  MeasuredDoseValue                  N
    19347   3008,0020  TreatmentSessionBeamSequence       N
    19348   3008,0021  TreatmentSessionIonBeamSequence    N
    19349   3008,0022  CurrentFractionNumber              N
    19350   3008,0024  TreatmentControlPointDate          N
    19351   3008,0025  TreatmentControlPointTime          N
    19352   3008,002A  TreatmentTerminationStatus         N
    19353   3008,002B  TreatmentTerminationCode           N
    19354   3008,002C  TreatmentVerificationStatus        N
    19355   3008,0030  ReferencedTreatmentRecordSequence  N
    19356   3008,0032  SpecifiedPrimaryMeterset           N
    19357   3008,0033  SpecifiedSecondaryMeterset         N
    19358   3008,0036  DeliveredPrimaryMeterset           N
    19359   3008,0037  DeliveredSecondaryMeterset         N
    19360   3008,003A  SpecifiedTreatmentTime             N
    19361   3008,003B  DeliveredTreatmentTime             N
    19362   3008,0040  ControlPointDeliverySequence       N
    19363   3008,0041  IonControlPointDeliverySequence    N
    19364   3008,0042  SpecifiedMeterset                  N
    19365   3008,0044  DeliveredMeterset                  N
    19366   3008,0045  MetersetRateSet                    N
    19367   3008,0046  MetersetRateDelivered              N
    19368   3008,0047  ScanSpotMetersetsDelivered         N
    19369   3008,0048  DoseRateDelivered                  N
    19370   3008,0050  TreatmentSummaryCalcDoseRefSeq     N
    19371   3008,0052  CumulativeDoseToDoseReference      N
    19372   3008,0054  FirstTreatmentDate                 N
    19373   3008,0056  MostRecentTreatmentDate            N
    19374   3008,005A  NumberOfFractionsDelivered         N
    19375   3008,0060  OverrideSequence                   N
    19376   3008,0061  ParameterSequencePointer           N
    19377   3008,0062  OverrideParameterPointer           N
    19378   3008,0063  ParameterItemIndex                 N
    19379   3008,0064  MeasuredDoseReferenceNumber        N
    19380   3008,0065  ParameterPointer                   N
    19381   3008,0066  OverrideReason                     N
    19382   3008,0068  CorrectedParameterSequence         N
    19383   3008,006A  CorrectionValue                    N
    19384   3008,0070  CalculatedDoseReferenceSequence    N
    19385   3008,0072  CalculatedDoseReferenceNumber      N
    19386   3008,0074  CalculatedDoseReferenceDescription N
    19387   3008,0076  CalculatedDoseReferenceDoseValue   N
    19388   3008,0078  StartMeterset                      N
    19389   3008,007A  EndMeterset                        N
    19390   3008,0080  ReferencedMeasuredDoseReferenceSeq N
    19391   3008,0082  ReferencedMeasuredDoseReferenceNum N
    19392   3008,0090  ReferencedCalculatedDoseRefSeq     N
    19393   3008,0092  ReferencedCalculatedDoseRefNumber  N
    19394   3008,00A0  BeamLimitingDeviceLeafPairsSeq     N
    19395   3008,00B0  RecordedWedgeSequence              N
    19396   3008,00C0  RecordedCompensatorSequence        N
    19397   3008,00D0  RecordedBlockSequence              N
    19398   3008,00E0  TreatmentSummaryMeasuredDoseRefSeq N
    19399   3008,00F0  RecordedSnoutSequence              N
    19400   3008,00F2  RecordedRangeShifterSequence       N
    19401   3008,00F4  RecordedLateralSpreadingDeviceSeq  N
    19402   3008,00F6  RecordedRangeModulatorSequence     N
    19403   3008,0100  RecordedSourceSequence             N
    19404   3008,0105  SourceSerialNumber                 N
    19405   3008,0110  TreatmentSessionAppSetupSeq        N
    19406   3008,0116  ApplicationSetupCheck              N
    19407   3008,0120  RecordedBrachyAccessoryDeviceSeq   N
    19408   3008,0122  ReferencedBrachyAccessoryDeviceNum N
    19409   3008,0130  RecordedChannelSequence            N
    19410   3008,0132  SpecifiedChannelTotalTime          N
    19411   3008,0134  DeliveredChannelTotalTime          N
    19412   3008,0136  SpecifiedNumberOfPulses            N
    19413   3008,0138  DeliveredNumberOfPulses            N
    19414   3008,013A  SpecifiedPulseRepetitionInterval   N
    19415   3008,013C  DeliveredPulseRepetitionInterval   N
    19416   3008,0140  RecordedSourceApplicatorSequence   N
    19417   3008,0142  ReferencedSourceApplicatorNumber   N
    19418   3008,0150  RecordedChannelShieldSequence      N
    19419   3008,0152  ReferencedChannelShieldNumber      N
    19420   3008,0160  BrachyControlPointDeliveredSeq     N
    19421   3008,0162  SafePositionExitDate               N
    19422   3008,0164  SafePositionExitTime               N
    19423   3008,0166  SafePositionReturnDate             N
    19424   3008,0168  SafePositionReturnTime             N
    19425   3008,0200  CurrentTreatmentStatus             N
    19426   3008,0202  TreatmentStatusComment             N
    19427   3008,0220  FractionGroupSummarySequence       N
    19428   3008,0223  ReferencedFractionNumber           N
    19429   3008,0224  FractionGroupType                  N
    19430   3008,0230  BeamStopperPosition                N
    19431   3008,0240  FractionStatusSummarySequence      N
    19432   3008,0250  TreatmentDate                      N
    19433   3008,0251  TreatmentTime                      N
    19434   300A,0002  RTPlanLabel                        N
    19435   300A,0003  RTPlanName                         N
    19436   300A,0004  RTPlanDescription                  N
    19437   300A,0006  RTPlanDate                         N
    19438   300A,0007  RTPlanTime                         N
    19439   300A,0009  TreatmentProtocols                 N
    19440   300A,000A  PlanIntent                         N
    19441   300A,000B  TreatmentSites                     N
    19442   300A,000C  RTPlanGeometry                     N
    19443   300A,000E  PrescriptionDescription            N
    19444   300A,0010  DoseReferenceSequence              N
    19445   300A,0012  DoseReferenceNumber                N
    19446   300A,0013  DoseReferenceUID                   N
    19447   300A,0014  DoseReferenceStructureType         N
    19448   300A,0015  NominalBeamEnergyUnit              N
    19449   300A,0016  DoseReferenceDescription           N
    19450   300A,0018  DoseReferencePointCoordinates      N
    19451   300A,001A  NominalPriorDose                   N
    19452   300A,0020  DoseReferenceType                  N
    19453   300A,0021  ConstraintWeight                   N
    19454   300A,0022  DeliveryWarningDose                N
    19455   300A,0023  DeliveryMaximumDose                N
    19456   300A,0025  TargetMinimumDose                  N
    19457   300A,0026  TargetPrescriptionDose             N
    19458   300A,0027  TargetMaximumDose                  N
    19459   300A,0028  TargetUnderdoseVolumeFraction      N
    19460   300A,002A  OrganAtRiskFullVolumeDose          N
    19461   300A,002B  OrganAtRiskLimitDose               N
    19462   300A,002C  OrganAtRiskMaximumDose             N
    19463   300A,002D  OrganAtRiskOverdoseVolumeFraction  N
    19464   300A,0040  ToleranceTableSequence             N
    19465   300A,0042  ToleranceTableNumber               N
    19466   300A,0043  ToleranceTableLabel                N
    19467   300A,0044  GantryAngleTolerance               N
    19468   300A,0046  BeamLimitingDeviceAngleTolerance   N
    19469   300A,0048  BeamLimitingDeviceToleranceSeq     N
    19470   300A,004A  BeamLimitingDevicePositionTol      N
    19471   300A,004B  SnoutPositionTolerance             N
    19472   300A,004C  PatientSupportAngleTolerance       N
    19473   300A,004E  TableTopEccentricAngleTolerance    N
    19474   300A,004F  TableTopPitchAngleTolerance        N
    19475   300A,0050  TableTopRollAngleTolerance         N
    19476   300A,0051  TableTopVerticalPositionTolerance  N
    19477   300A,0052  TableTopLongitudinalPositionTol    N
    19478   300A,0053  TableTopLateralPositionTolerance   N
    19479   300A,0055  RTPlanRelationship                 N
    19480   300A,0070  FractionGroupSequence              N
    19481   300A,0071  FractionGroupNumber                N
    19482   300A,0072  FractionGroupDescription           N
    19483   300A,0078  NumberOfFractionsPlanned           N
    19484   300A,0079  NumberFractionPatternDigitsPerDay  N
    19485   300A,007A  RepeatFractionCycleLength          N
    19486   300A,007B  FractionPattern                    N
    19487   300A,0080  NumberOfBeams                      N
    19488   300A,0082  BeamDoseSpecificationPoint         N
    19489   300A,0084  BeamDose                           N
    19490   300A,0086  BeamMeterset                       N
    19491   300A,0088  BeamDosePointDepth                 N
    19492   300A,0089  BeamDosePointEquivalentDepth       N
    19493   300A,008A  BeamDosePointSSD                   N
    19494   300A,00A0  NumberOfBrachyApplicationSetups    N
    19495   300A,00A2  BrachyAppSetupDoseSpecPoint        N
    19496   300A,00A4  BrachyApplicationSetupDose         N
    19497   300A,00B0  BeamSequence                       N
    19498   300A,00B2  TreatmentMachineName               N
    19499   300A,00B3  PrimaryDosimeterUnit               N
    19500   300A,00B4  SourceAxisDistance                 N
    19501   300A,00B6  BeamLimitingDeviceSequence         N
    19502   300A,00B8  RTBeamLimitingDeviceType           N
    19503   300A,00BA  SourceToBeamLimitingDeviceDistance N
    19504   300A,00BB  IsocenterToBeamLimitingDeviceDist  N
    19505   300A,00BC  NumberOfLeafJawPairs               N
    19506   300A,00BE  LeafPositionBoundaries             N
    19507   300A,00C0  BeamNumber                         N
    19508   300A,00C2  BeamName                           N
    19509   300A,00C3  BeamDescription                    N
    19510   300A,00C4  BeamType                           N
    19511   300A,00C6  RadiationType                      N
    19512   300A,00C7  HighDoseTechniqueType              N
    19513   300A,00C8  ReferenceImageNumber               N
    19514   300A,00CA  PlannedVerificationImageSequence   N
    19515   300A,00CC  ImagingDeviceSpecificAcqParams     N
    19516   300A,00CE  TreatmentDeliveryType              N
    19517   300A,00D0  NumberOfWedges                     N
    19518   300A,00D1  WedgeSequence                      N
    19519   300A,00D2  WedgeNumber                        N
    19520   300A,00D3  WedgeType                          N
    19521   300A,00D4  WedgeID                            N
    19522   300A,00D5  WedgeAngle                         N
    19523   300A,00D6  WedgeFactor                        N
    19524   300A,00D7  TotalWedgeTrayWaterEquivThickness  N
    19525   300A,00D8  WedgeOrientation                   N
    19526   300A,00D9  IsocenterToWedgeTrayDistance       N
    19527   300A,00DA  SourceToWedgeTrayDistance          N
    19528   300A,00DB  WedgeThinEdgePosition              N
    19529   300A,00DC  BolusID                            N
    19530   300A,00DD  BolusDescription                   N
    19531   300A,00E0  NumberOfCompensators               N
    19532   300A,00E1  MaterialID                         N
    19533   300A,00E2  TotalCompensatorTrayFactor         N
    19534   300A,00E3  CompensatorSequence                N
    19535   300A,00E4  CompensatorNumber                  N
    19536   300A,00E5  CompensatorID                      N
    19537   300A,00E6  SourceToCompensatorTrayDistance    N
    19538   300A,00E7  CompensatorRows                    N
    19539   300A,00E8  CompensatorColumns                 N
    19540   300A,00E9  CompensatorPixelSpacing            N
    19541   300A,00EA  CompensatorPosition                N
    19542   300A,00EB  CompensatorTransmissionData        N
    19543   300A,00EC  CompensatorThicknessData           N
    19544   300A,00ED  NumberOfBoli                       N
    19545   300A,00EE  CompensatorType                    N
    19546   300A,00F0  NumberOfBlocks                     N
    19547   300A,00F2  TotalBlockTrayFactor               N
    19548   300A,00F3  TotalBlockTrayWaterEquivThickness  N
    19549   300A,00F4  BlockSequence                      N
    19550   300A,00F5  BlockTrayID                        N
    19551   300A,00F6  SourceToBlockTrayDistance          N
    19552   300A,00F7  IsocenterToBlockTrayDistance       N
    19553   300A,00F8  BlockType                          N
    19554   300A,00F9  AccessoryCode                      N
    19555   300A,00FA  BlockDivergence                    N
    19556   300A,00FB  BlockMountingPosition              N
    19557   300A,00FC  BlockNumber                        N
    19558   300A,00FE  BlockName                          N
    19559   300A,0100  BlockThickness                     N
    19560   300A,0102  BlockTransmission                  N
    19561   300A,0104  BlockNumberOfPoints                N
    19562   300A,0106  BlockData                          N
    19563   300A,0107  ApplicatorSequence                 N
    19564   300A,0108  ApplicatorID                       N
    19565   300A,0109  ApplicatorType                     N
    19566   300A,010A  ApplicatorDescription              N
    19567   300A,010C  CumulativeDoseReferenceCoefficient N
    19568   300A,010E  FinalCumulativeMetersetWeight      N
    19569   300A,0110  NumberOfControlPoints              N
    19570   300A,0111  ControlPointSequence               N
    19571   300A,0112  ControlPointIndex                  N
    19572   300A,0114  NominalBeamEnergy                  N
    19573   300A,0115  DoseRateSet                        N
    19574   300A,0116  WedgePositionSequence              N
    19575   300A,0118  WedgePosition                      N
    19576   300A,011A  BeamLimitingDevicePositionSequence N
    19577   300A,011C  LeafJawPositions                   N
    19578   300A,011E  GantryAngle                        N
    19579   300A,011F  GantryRotationDirection            N
    19580   300A,0120  BeamLimitingDeviceAngle            N
    19581   300A,0121  BeamLimitingDeviceRotateDirection  N
    19582   300A,0122  PatientSupportAngle                N
    19583   300A,0123  PatientSupportRotationDirection    N
    19584   300A,0124  TableTopEccentricAxisDistance      N
    19585   300A,0125  TableTopEccentricAngle             N
    19586   300A,0126  TableTopEccentricRotateDirection   N
    19587   300A,0128  TableTopVerticalPosition           N
    19588   300A,0129  TableTopLongitudinalPosition       N
    19589   300A,012A  TableTopLateralPosition            N
    19590   300A,012C  IsocenterPosition                  N
    19591   300A,012E  SurfaceEntryPoint                  N
    19592   300A,0130  SourceToSurfaceDistance            N
    19593   300A,0134  CumulativeMetersetWeight           N
    19594   300A,0140  TableTopPitchAngle                 N
    19595   300A,0142  TableTopPitchRotationDirection     N
    19596   300A,0144  TableTopRollAngle                  N
    19597   300A,0146  TableTopRollRotationDirection      N
    19598   300A,0148  HeadFixationAngle                  N
    19599   300A,014A  GantryPitchAngle                   N
    19600   300A,014C  GantryPitchRotationDirection       N
    19601   300A,014E  GantryPitchAngleTolerance          N
    19602   300A,0180  PatientSetupSequence               N
    19603   300A,0182  PatientSetupNumber                 N
    19604   300A,0183  PatientSetupLabel                  N
    19605   300A,0184  PatientAdditionalPosition          N
    19606   300A,0190  FixationDeviceSequence             N
    19607   300A,0192  FixationDeviceType                 N
    19608   300A,0194  FixationDeviceLabel                N
    19609   300A,0196  FixationDeviceDescription          N
    19610   300A,0198  FixationDevicePosition             N
    19611   300A,0199  FixationDevicePitchAngle           N
    19612   300A,019A  FixationDeviceRollAngle            N
    19613   300A,01A0  ShieldingDeviceSequence            N
    19614   300A,01A2  ShieldingDeviceType                N
    19615   300A,01A4  ShieldingDeviceLabel               N
    19616   300A,01A6  ShieldingDeviceDescription         N
    19617   300A,01A8  ShieldingDevicePosition            N
    19618   300A,01B0  SetupTechnique                     N
    19619   300A,01B2  SetupTechniqueDescription          N
    19620   300A,01B4  SetupDeviceSequence                N
    19621   300A,01B6  SetupDeviceType                    N
    19622   300A,01B8  SetupDeviceLabel                   N
    19623   300A,01BA  SetupDeviceDescription             N
    19624   300A,01BC  SetupDeviceParameter               N
    19625   300A,01D0  SetupReferenceDescription          N
    19626   300A,01D2  TableTopVerticalSetupDisplacement  N
    19627   300A,01D4  TableTopLongitudinalSetupDisplace  N
    19628   300A,01D6  TableTopLateralSetupDisplacement   N
    19629   300A,0200  BrachyTreatmentTechnique           N
    19630   300A,0202  BrachyTreatmentType                N
    19631   300A,0206  TreatmentMachineSequence           N
    19632   300A,0210  SourceSequence                     N
    19633   300A,0212  SourceNumber                       N
    19634   300A,0214  SourceType                         N
    19635   300A,0216  SourceManufacturer                 N
    19636   300A,0218  ActiveSourceDiameter               N
    19637   300A,021A  ActiveSourceLength                 N
    19638   300A,0222  SourceEncapsulationNomThickness    N
    19639   300A,0224  SourceEncapsulationNomTransmission N
    19640   300A,0226  SourceIsotopeName                  N
    19641   300A,0228  SourceIsotopeHalfLife              N
    19642   300A,0229  SourceStrengthUnits                N
    19643   300A,022A  ReferenceAirKermaRate              N
    19644   300A,022B  SourceStrength                     N
    19645   300A,022C  SourceStrengthReferenceDate        N
    19646   300A,022E  SourceStrengthReferenceTime        N
    19647   300A,0230  ApplicationSetupSequence           N
    19648   300A,0232  ApplicationSetupType               N
    19649   300A,0234  ApplicationSetupNumber             N
    19650   300A,0236  ApplicationSetupName               N
    19651   300A,0238  ApplicationSetupManufacturer       N
    19652   300A,0240  TemplateNumber                     N
    19653   300A,0242  TemplateType                       N
    19654   300A,0244  TemplateName                       N
    19655   300A,0250  TotalReferenceAirKerma             N
    19656   300A,0260  BrachyAccessoryDeviceSequence      N
    19657   300A,0262  BrachyAccessoryDeviceNumber        N
    19658   300A,0263  BrachyAccessoryDeviceID            N
    19659   300A,0264  BrachyAccessoryDeviceType          N
    19660   300A,0266  BrachyAccessoryDeviceName          N
    19661   300A,026A  BrachyAccessoryDeviceNomThickness  N
    19662   300A,026C  BrachyAccessoryDevNomTransmission  N
    19663   300A,0280  ChannelSequence                    N
    19664   300A,0282  ChannelNumber                      N
    19665   300A,0284  ChannelLength                      N
    19666   300A,0286  ChannelTotalTime                   N
    19667   300A,0288  SourceMovementType                 N
    19668   300A,028A  NumberOfPulses                     N
    19669   300A,028C  PulseRepetitionInterval            N
    19670   300A,0290  SourceApplicatorNumber             N
    19671   300A,0291  SourceApplicatorID                 N
    19672   300A,0292  SourceApplicatorType               N
    19673   300A,0294  SourceApplicatorName               N
    19674   300A,0296  SourceApplicatorLength             N
    19675   300A,0298  SourceApplicatorManufacturer       N
    19676   300A,029C  SourceApplicatorWallNomThickness   N
    19677   300A,029E  SourceApplicatorWallNomTrans       N
    19678   300A,02A0  SourceApplicatorStepSize           N
    19679   300A,02A2  TransferTubeNumber                 N
    19680   300A,02A4  TransferTubeLength                 N
    19681   300A,02B0  ChannelShieldSequence              N
    19682   300A,02B2  ChannelShieldNumber                N
    19683   300A,02B3  ChannelShieldID                    N
    19684   300A,02B4  ChannelShieldName                  N
    19685   300A,02B8  ChannelShieldNominalThickness      N
    19686   300A,02BA  ChannelShieldNominalTransmission   N
    19687   300A,02C8  FinalCumulativeTimeWeight          N
    19688   300A,02D0  BrachyControlPointSequence         N
    19689   300A,02D2  ControlPointRelativePosition       N
    19690   300A,02D4  ControlPoint3DPosition             N
    19691   300A,02D6  CumulativeTimeWeight               N
    19692   300A,02E0  CompensatorDivergence              N
    19693   300A,02E1  CompensatorMountingPosition        N
    19694   300A,02E2  SourceToCompensatorDistance        N
    19695   300A,02E3  TotalCompTrayWaterEquivThickness   N
    19696   300A,02E4  IsocenterToCompensatorTrayDistance N
    19697   300A,02E5  CompensatorColumnOffset            N
    19698   300A,02E6  IsocenterToCompensatorDistances    N
    19699   300A,02E7  CompensatorRelStoppingPowerRatio   N
    19700   300A,02E8  CompensatorMillingToolDiameter     N
    19701   300A,02EA  IonRangeCompensatorSequence        N
    19702   300A,02EB  CompensatorDescription             N
    19703   300A,0302  RadiationMassNumber                N
    19704   300A,0304  RadiationAtomicNumber              N
    19705   300A,0306  RadiationChargeState               N
    19706   300A,0308  ScanMode                           N
    19707   300A,030A  VirtualSourceAxisDistances         N
    19708   300A,030C  SnoutSequence                      N
    19709   300A,030D  SnoutPosition                      N
    19710   300A,030F  SnoutID                            N
    19711   300A,0312  NumberOfRangeShifters              N
    19712   300A,0314  RangeShifterSequence               N
    19713   300A,0316  RangeShifterNumber                 N
    19714   300A,0318  RangeShifterID                     N
    19715   300A,0320  RangeShifterType                   N
    19716   300A,0322  RangeShifterDescription            N
    19717   300A,0330  NumberOfLateralSpreadingDevices    N
    19718   300A,0332  LateralSpreadingDeviceSequence     N
    19719   300A,0334  LateralSpreadingDeviceNumber       N
    19720   300A,0336  LateralSpreadingDeviceID           N
    19721   300A,0338  LateralSpreadingDeviceType         N
    19722   300A,033A  LateralSpreadingDeviceDescription  N
    19723   300A,033C  LateralSpreadingDevWaterEquivThick N
    19724   300A,0340  NumberOfRangeModulators            N
    19725   300A,0342  RangeModulatorSequence             N
    19726   300A,0344  RangeModulatorNumber               N
    19727   300A,0346  RangeModulatorID                   N
    19728   300A,0348  RangeModulatorType                 N
    19729   300A,034A  RangeModulatorDescription          N
    19730   300A,034C  BeamCurrentModulationID            N
    19731   300A,0350  PatientSupportType                 N
    19732   300A,0352  PatientSupportID                   N
    19733   300A,0354  PatientSupportAccessoryCode        N
    19734   300A,0356  FixationLightAzimuthalAngle        N
    19735   300A,0358  FixationLightPolarAngle            N
    19736   300A,035A  MetersetRate                       N
    19737   300A,0360  RangeShifterSettingsSequence       N
    19738   300A,0362  RangeShifterSetting                N
    19739   300A,0364  IsocenterToRangeShifterDistance    N
    19740   300A,0366  RangeShifterWaterEquivThickness    N
    19741   300A,0370  LateralSpreadingDeviceSettingsSeq  N
    19742   300A,0372  LateralSpreadingDeviceSetting      N
    19743   300A,0374  IsocenterToLateralSpreadingDevDist N
    19744   300A,0380  RangeModulatorSettingsSequence     N
    19745   300A,0382  RangeModulatorGatingStartValue     N
    19746   300A,0384  RangeModulatorGatingStopValue      N
    19747   300A,038A  IsocenterToRangeModulatorDistance  N
    19748   300A,0390  ScanSpotTuneID                     N
    19749   300A,0392  NumberOfScanSpotPositions          N
    19750   300A,0394  ScanSpotPositionMap                N
    19751   300A,0396  ScanSpotMetersetWeights            N
    19752   300A,0398  ScanningSpotSize                   N
    19753   300A,039A  NumberOfPaintings                  N
    19754   300A,03A0  IonToleranceTableSequence          N
    19755   300A,03A2  IonBeamSequence                    N
    19756   300A,03A4  IonBeamLimitingDeviceSequence      N
    19757   300A,03A6  IonBlockSequence                   N
    19758   300A,03A8  IonControlPointSequence            N
    19759   300A,03AA  IonWedgeSequence                   N
    19760   300A,03AC  IonWedgePositionSequence           N
    19761   300A,0401  ReferencedSetupImageSequence       N
    19762   300A,0402  SetupImageComment                  N
    19763   300A,0410  MotionSynchronizationSequence      N
    19764   300A,0412  ControlPointOrientation            N
    19765   300A,0420  GeneralAccessorySequence           N
    19766   300A,0421  GeneralAccessoryID                 N
    19767   300A,0422  GeneralAccessoryDescription        N
    19768   300A,0423  GeneralAccessoryType               N
    19769   300A,0424  GeneralAccessoryNumber             N
    19770   300C,0002  ReferencedRTPlanSequence           N
    19771   300C,0004  ReferencedBeamSequence             N
    19772   300C,0006  ReferencedBeamNumber               N
    19773   300C,0007  ReferencedReferenceImageNumber     N
    19774   300C,0008  StartCumulativeMetersetWeight      N
    19775   300C,0009  EndCumulativeMetersetWeight        N
    19776   300C,000A  ReferencedBrachyAppSetupSeq        N
    19777   300C,000C  ReferencedBrachyAppSetupNumber     N
    19778   300C,000E  ReferencedSourceNumber             N
    19779   300C,0020  ReferencedFractionGroupSequence    N
    19780   300C,0022  ReferencedFractionGroupNumber      N
    19781   300C,0040  ReferencedVerificationImageSeq     N
    19782   300C,0042  ReferencedReferenceImageSequence   N
    19783   300C,0050  ReferencedDoseReferenceSequence    N
    19784   300C,0051  ReferencedDoseReferenceNumber      N
    19785   300C,0055  BrachyReferencedDoseReferenceSeq   N
    19786   300C,0060  ReferencedStructureSetSequence     N
    19787   300C,006A  ReferencedPatientSetupNumber       N
    19788   300C,0080  ReferencedDoseSequence             N
    19789   300C,00A0  ReferencedToleranceTableNumber     N
    19790   300C,00B0  ReferencedBolusSequence            N
    19791   300C,00C0  ReferencedWedgeNumber              N
    19792   300C,00D0  ReferencedCompensatorNumber        N
    19793   300C,00E0  ReferencedBlockNumber              N
    19794   300C,00F0  ReferencedControlPointIndex        N
    19795   300C,00F2  ReferencedControlPointSequence     N
    19796   300C,00F4  ReferencedStartControlPointIndex   N
    19797   300C,00F6  ReferencedStopControlPointIndex    N
    19798   300C,0100  ReferencedRangeShifterNumber       N
    19799   300C,0102  ReferencedLateralSpreadingDevNum   N
    19800   300C,0104  ReferencedRangeModulatorNumber     N
    19801   300E,0002  ApprovalStatus                     N
    19802   300E,0004  ReviewDate                         N
    19803   300E,0005  ReviewTime                         N
    19804   300E,0008  ReviewerName                       N
    19805   4000,0000  TextGroupLength                    N
    19806   4000,0010  Arbitrary                          N
    19807   4000,4000  TextComments                       N
    19808   4008,0040  ResultsID                          N
    19809   4008,0042  ResultsIDIssuer                    N
    19810   4008,0050  ReferencedInterpretationSequence   N
    19811   4008,0100  InterpretationRecordedDate         N
    19812   4008,0101  InterpretationRecordedTime         N
    19813   4008,0102  InterpretationRecorder             N
    19814   4008,0103  ReferenceToRecordedSound           N
    19815   4008,0108  InterpretationTranscriptionDate    N
    19816   4008,0109  InterpretationTranscriptionTime    N
    19817   4008,010A  InterpretationTranscriber          N
    19818   4008,010B  InterpretationText                 N
    19819   4008,010C  InterpretationAuthor               N
    19820   4008,0111  InterpretationApproverSequence     N
    19821   4008,0112  InterpretationApprovalDate         N
    19822   4008,0113  InterpretationApprovalTime         N
    19823   4008,0114  PhysicianApprovingInterpretation   N
    19824   4008,0115  InterpretationDiagnosisDescription N
    19825   4008,0117  InterpretationDiagnosisCodeSeq     N
    19826   4008,0118  ResultsDistributionListSequence    N
    19827   4008,0119  DistributionName                   N
    19828   4008,011A  DistributionAddress                N
    19829   4008,0200  InterpretationID                   N
    19830   4008,0202  InterpretationIDIssuer             N
    19831   4008,0210  InterpretationTypeID               N
    19832   4008,0212  InterpretationStatusID             N
    19833   4008,0300  Impressions                        N
    19834   4008,4000  ResultsComments                    N
    19835   4FFE,0001  MACParametersSequence              N
    19836   50xx,0005  CurveDimensions                    N
    19837   50xx,0010  NumberOfPoints                     N
    19838   50xx,0020  TypeOfData                         N
    19839   50xx,0022  CurveDescription                   N
    19840   50xx,0030  AxisUnits                          N
    19841   50xx,0040  AxisLabels                         N
    19842   50xx,0103  DataValueRepresentation            N
    19843   50xx,0104  MinimumCoordinateValue             N
    19844   50xx,0105  MaximumCoordinateValue             N
    19845   50xx,0106  CurveRange                         N
    19846   50xx,0110  CurveDataDescriptor                N
    19847   50xx,0112  CoordinateStartValue               N
    19848   50xx,0114  CoordinateStepValue                N
    19849   50xx,1001  CurveActivationLayer               N
    19850   50xx,2000  AudioType                          N
    19851   50xx,2002  AudioSampleFormat                  N
    19852   50xx,2004  NumberOfChannels                   N
    19853   50xx,2006  NumberOfSamples                    N
    19854   50xx,2008  SampleRate                         N
    19855   50xx,200A  TotalTime                          N
    19856   50xx,200C  AudioSampleData                    N
    19857   50xx,200E  AudioComments                      N
    19858   50xx,2500  CurveLabel                         N
    19859   50xx,2600  ReferencedOverlaySequence          N
    19860   50xx,2610  ReferencedOverlayGroup             N
    19861   50xx,3000  CurveData                          N
    19862   5200,9229  SharedFunctionalGroupsSequence     N
    19863   5200,9230  PerFrameFunctionalGroupsSequence   N
    19864   5400,0100  WaveformSequence                   N
    19865   5400,0110  ChannelMinimumValue                N
    19866   5400,0112  ChannelMaximumValue                N
    19867   5400,1004  WaveformBitsAllocated              N
    19868   5400,1006  WaveformSampleInterpretation       N
    19869   5400,100A  WaveformPaddingValue               N
    19870   5400,1010  WaveformData                       N
    19871   5600,0010  FirstOrderPhaseCorrectionAngle     N
    19872   5600,0020  SpectroscopyData                   N
    19873   6000,0000  OverlayGroupLength                 N
    19874   60xx,0010  OverlayRows                        N
    19875   60xx,0011  OverlayColumns                     N
    19876   60xx,0012  OverlayPlanes                      N
    19877   60xx,0015  NumberOfFramesInOverlay            N
    19878   60xx,0022  OverlayDescription                 N
    19879   60xx,0040  OverlayType                        N
    19880   60xx,0045  OverlaySubtype                     N
    19881   60xx,0050  OverlayOrigin                      N
    19882   60xx,0051  ImageFrameOrigin                   N
    19883   60xx,0052  OverlayPlaneOrigin                 N
    19884   60xx,0060  OverlayCompressionCode             N
    19885   60xx,0061  OverlayCompressionOriginator       N
    19886   60xx,0062  OverlayCompressionLabel            N
    19887   60xx,0063  OverlayCompressionDescription      N
    19888   60xx,0066  OverlayCompressionStepPointers     N
    19889   60xx,0068  OverlayRepeatInterval              N
    19890   60xx,0069  OverlayBitsGrouped                 N
    19891   60xx,0100  OverlayBitsAllocated               N
    19892   60xx,0102  OverlayBitPosition                 N
    19893   60xx,0110  OverlayFormat                      N
    19894   60xx,0200  OverlayLocation                    N
    19895   60xx,0800  OverlayCodeLabel                   N
    19896   60xx,0802  OverlayNumberOfTables              N
    19897   60xx,0803  OverlayCodeTableLocation           N
    19898   60xx,0804  OverlayBitsForCodeWord             N
    19899   60xx,1001  OverlayActivationLayer             N
    19900   60xx,1100  OverlayDescriptorGray              N
    19901   60xx,1101  OverlayDescriptorRed               N
    19902   60xx,1102  OverlayDescriptorGreen             N
    19903   60xx,1103  OverlayDescriptorBlue              N
    19904   60xx,1200  OverlaysGray                       N
    19905   60xx,1201  OverlaysRed                        N
    19906   60xx,1202  OverlaysGreen                      N
    19907   60xx,1203  OverlaysBlue                       N
    19908   60xx,1301  ROIArea                            N
    19909   60xx,1302  ROIMean                            N
    19910   60xx,1303  ROIStandardDeviation               N
    19911   60xx,1500  OverlayLabel                       N
    19912   60xx,3000  OverlayData                        N
    19913   60xx,4000  OverlayComments                    N
    19914   7Fxx,0000  PixelDataGroupLength               N
    19915   7Fxx,0010  PixelData                          N
    19916   7Fxx,0011  VariableNextDataGroup              N
    19917   7Fxx,0020  VariableCoefficientsSDVN           N
    19918   7Fxx,0030  VariableCoefficientsSDHN           N
    19919   7Fxx,0040  VariableCoefficientsSDDN           N
    19920   FFFA,FFFA  DigitalSignaturesSequence          N
    19921   FFFC,FFFC  DataSetTrailingPadding             N
    19922   FFFE,E000  StartOfItem                        N
    19923   FFFE,E00D  EndOfItems                         N
    19924   FFFE,E0DD  EndOfSequence                      N
     30588  0002,0000  FileMetaInfoGroupLength            no
     30589  0002,0001  FileMetaInfoVersion                no
     30590  0002,0002  MediaStorageSOPClassUID            no
     30591  0002,0003  MediaStorageSOPInstanceUID         no
     30592  0002,0010  TransferSyntaxUID                  no
     30593  0002,0012  ImplementationClassUID             no
     30594  0002,0013  ImplementationVersionName          no
     30595  0002,0016  SourceApplicationEntityTitle       no
     30596  0002,0100  PrivateInformationCreatorUID       no
     30597  0002,0102  PrivateInformation                 no
     30598  0004,1130  FileSetID                          no
     30599  0004,1141  FileSetDescriptorFileID            no
     30600  0004,1142  SpecificCharacterSetOfFile         no
     30601  0004,1200  FirstDirectoryRecordOffset         no
     30602  0004,1202  LastDirectoryRecordOffset          no
     30603  0004,1212  FileSetConsistencyFlag             no
     30604  0004,1220  DirectoryRecordSequence            no
     30605  0004,1400  OffsetOfNextDirectoryRecord        no
     30606  0004,1410  RecordInUseFlag                    no
     30607  0004,1420  LowerLevelDirectoryEntityOffset    no
     30608  0004,1430  DirectoryRecordType                no
     30609  0004,1432  PrivateRecordUID                   no
     30610  0004,1500  ReferencedFileID                   no
     30611  0004,1504  MRDRDirectoryRecordOffset          no
     30612  0004,1510  ReferencedSOPClassUIDInFile        no
     30613  0004,1511  ReferencedSOPInstanceUIDInFile     no
     30614  0004,1512  ReferencedTransferSyntaxUIDInFile  no
     30615  0004,151A  ReferencedRelatedSOPClassUIDInFile no
     30616  0004,1600  NumberOfReferences                 no
     30617  0008,0000  IdentifyingGroupLength             no
     30618  0008,0001  LengthToEnd                        no
     30619  0008,0005  SpecificCharacterSet               no
     30620  0008,0006  LanguageCodeSequence               no
     30621  0008,0008  ImageType                          no
     30622  0008,0010  RecognitionCode                    no
     30623  0008,0012  InstanceCreationDate               no
     30624  0008,0013  InstanceCreationTime               no
     30625  0008,0014  InstanceCreatorUID                 no
     30626  0008,0016  SOPClassUID                        no
     30627  0008,0018  SOPInstanceUID                     no
     30628  0008,001A  RelatedGeneralSOPClassUID          no
     30629  0008,001B  OriginalSpecializedSOPClassUID     no
     30630  0008,0020  StudyDate                          no
     30631  0008,0021  SeriesDate                         no
     30632  0008,0022  AcquisitionDate                    no
     30633  0008,0023  ContentDate                        no
     30634  0008,0024  OverlayDate                        no
     30635  0008,0025  CurveDate                          no
     30636  0008,002A  AcquisitionDateTime                no
     30637  0008,0030  StudyTime                          no
     30638  0008,0031  SeriesTime                         no
     30639  0008,0032  AcquisitionTime                    no
     30640  0008,0033  ContentTime                        no
     30641  0008,0034  OverlayTime                        no
     30642  0008,0035  CurveTime                          no
     30643  0008,0040  DataSetType                        no
     30644  0008,0041  DataSetSubtype                     no
     30645  0008,0042  NuclearMedicineSeriesType          no
     30646  0008,0050  AccessionNumber                    no
     30647  0008,0052  QueryRetrieveLevel                 no
     30648  0008,0054  RetrieveAETitle                    no
     30649  0008,0056  InstanceAvailability               no
     30650  0008,0058  FailedSOPInstanceUIDList           no
     30651  0008,0060  Modality                           no
     30652  0008,0061  ModalitiesInStudy                  no
     30653  0008,0062  SOPClassesInStudy                  no
     30654  0008,0064  ConversionType                     no
     30655  0008,0068  PresentationIntentType             no
     30656  0008,0070  Manufacturer                       no
     30657  0008,0080  InstitutionName                    no
     30658  0008,0081  InstitutionAddress                 no
     30659  0008,0082  InstitutionCodeSequence            no
     30660  0008,0090  ReferringPhysicianName             no
     30661  0008,0092  ReferringPhysicianAddress          no
     30662  0008,0094  ReferringPhysicianTelephoneNumber  no
     30663  0008,0096  ReferringPhysicianIDSequence       no
     30664  0008,0100  CodeValue                          no
     30665  0008,0102  CodingSchemeDesignator             no
     30666  0008,0103  CodingSchemeVersion                no
     30667  0008,0104  CodeMeaning                        no
     30668  0008,0105  MappingResource                    no
     30669  0008,0106  ContextGroupVersion                no
     30670  0008,0107  ContextGroupLocalVersion           no
     30671  0008,010B  ContextGroupExtensionFlag          no
     30672  0008,010C  CodingSchemeUID                    no
     30673  0008,010D  ContextGroupExtensionCreatorUID    no
     30674  0008,010F  ContextIdentifier                  no
     30675  0008,0110  CodingSchemeIDSequence             no
     30676  0008,0112  CodingSchemeRegistry               no
     30677  0008,0114  CodingSchemeExternalID             no
     30678  0008,0115  CodingSchemeName                   no
     30679  0008,0116  ResponsibleOrganization            no
     30680  0008,0117  ContextUID                         no
     30681  0008,0201  TimezoneOffsetFromUTC              no
     30682  0008,1000  NetworkID                          no
     30683  0008,1010  StationName                        no
     30684  0008,1030  StudyDescription                   no
     30685  0008,1032  ProcedureCodeSequence              no
     30686  0008,103E  SeriesDescription                  no
     30687  0008,1040  InstitutionalDepartmentName        no
     30688  0008,1048  PhysiciansOfRecord                 no
     30689  0008,1049  PhysiciansOfRecordIDSequence       no
     30690  0008,1050  PerformingPhysicianName            no
     30691  0008,1052  PerformingPhysicianIDSequence      no
     30692  0008,1060  NameOfPhysicianReadingStudy        no
     30693  0008,1062  PhysicianReadingStudyIDSequence    no
     30694  0008,1070  OperatorsName                      no
     30695  0008,1072  OperatorIDSequence                 no
     30696  0008,1080  AdmittingDiagnosesDescription      no
     30697  0008,1084  AdmittingDiagnosesCodeSequence     no
     30698  0008,1090  ManufacturersModelName             no
     30699  0008,1100  ReferencedResultsSequence          no
     30700  0008,1110  ReferencedStudySequence            no
     30701  0008,1111  ReferencedProcedureStepSequence    no
     30702  0008,1115  ReferencedSeriesSequence           no
     30703  0008,1120  ReferencedPatientSequence          no
     30704  0008,1125  ReferencedVisitSequence            no
     30705  0008,1130  ReferencedOverlaySequence          no
     30706  0008,113A  ReferencedWaveformSequence         no
     30707  0008,1140  ReferencedImageSequence            no
     30708  0008,1145  ReferencedCurveSequence            no
     30709  0008,114A  ReferencedInstanceSequence         no
     30710  0008,1150  ReferencedSOPClassUID              no
     30711  0008,1155  ReferencedSOPInstanceUID           no
     30712  0008,115A  SOPClassesSupported                no
     30713  0008,1160  ReferencedFrameNumber              no
     30714  0008,1161  SimpleFrameList                    no
     30715  0008,1162  CalculatedFrameList                no
     30716  0008,1163  TimeRange                          no
     30717  0008,1164  FrameExtractionSequence            no
     30718  0008,1195  TransactionUID                     no
     30719  0008,1197  FailureReason                      no
     30720  0008,1198  FailedSOPSequence                  no
     30721  0008,1199  ReferencedSOPSequence              no
     30722  0008,1200  OtherReferencedStudiesSequence     no
     30723  0008,1250  RelatedSeriesSequence              no
     30724  0008,2110  LossyImageCompression              no
     30725  0008,2111  DerivationDescription              no
     30726  0008,2112  SourceImageSequence                no
     30727  0008,2120  StageName                          no
     30728  0008,2122  StageNumber                        no
     30729  0008,2124  NumberOfStages                     no
     30730  0008,2127  ViewName                           no
     30731  0008,2128  ViewNumber                         no
     30732  0008,2129  NumberOfEventTimers                no
     30733  0008,212A  NumberOfViewsInStage               no
     30734  0008,2130  EventElapsedTimes                  no
     30735  0008,2132  EventTimerNames                    no
     30736  0008,2133  EventTimerSequence                 no
     30737  0008,2134  EventTimeOffset                    no
     30738  0008,2135  EventCodeSequence                  no
     30739  0008,2142  StartTrim                          no
     30740  0008,2143  StopTrim                           no
     30741  0008,2144  RecommendedDisplayFrameRate        no
     30742  0008,2200  TransducerPosition                 no
     30743  0008,2204  TransducerOrientation              no
     30744  0008,2208  AnatomicStructure                  no
     30745  0008,2218  AnatomicRegionSequence             no
     30746  0008,2220  AnatomicRegionModifierSequence     no
     30747  0008,2228  PrimaryAnatomicStructureSequence   no
     30748  0008,2229  AnatomicStructureOrRegionSequence  no
     30749  0008,2230  AnatomicStructureModifierSequence  no
     30750  0008,2240  TransducerPositionSequence         no
     30751  0008,2242  TransducerPositionModifierSequence no
     30752  0008,2244  TransducerOrientationSequence      no
     30753  0008,2246  TransducerOrientationModifierSeq   no
     30754  0008,2253  AnatomicEntrancePortalCodeSeqTrial no
     30755  0008,2255  AnatomicApproachDirCodeSeqTrial    no
     30756  0008,2256  AnatomicPerspectiveDescrTrial      no
     30757  0008,2257  AnatomicPerspectiveCodeSeqTrial    no
     30758  0008,3001  AlternateRepresentationSequence    no
     30759  0008,3010  IrradiationEventUID                no
     30760  0008,4000  IdentifyingComments                no
     30761  0008,9007  FrameType                          no
     30762  0008,9092  ReferencedImageEvidenceSequence    no
     30763  0008,9121  ReferencedRawDataSequence          no
     30764  0008,9123  CreatorVersionUID                  no
     30765  0008,9124  DerivationImageSequence            no
     30766  0008,9154  SourceImageEvidenceSequence        no
     30767  0008,9205  PixelPresentation                  no
     30768  0008,9206  VolumetricProperties               no
     30769  0008,9207  VolumeBasedCalculationTechnique    no
     30770  0008,9208  ComplexImageComponent              no
     30771  0008,9209  AcquisitionContrast                no
     30772  0008,9215  DerivationCodeSequence             no
     30773  0008,9237  GrayscalePresentationStateSequence no
     30774  0008,9410  ReferencedOtherPlaneSequence       no
     30775  0008,9458  FrameDisplaySequence               no
     30776  0008,9459  RecommendedDisplayFrameRateInFloat no
     30777  0008,9460  SkipFrameRangeFlag                 no
     30778  0009,1001  FullFidelity                       no
     30779  0009,1002  SuiteID                            no
     30780  0009,1004  ProductID                          no
     30781  0009,1027  ImageActualDate                    no
     30782  0009,1030  ServiceID                          no
     30783  0009,1031  MobileLocationNumber               no
     30784  0009,10E3  EquipmentUID                       no
     30785  0009,10E6  GenesisVersionNow                  no
     30786  0009,10E7  ExamRecordChecksum                 no
     30787  0009,10E9  ActualSeriesDataTimeStamp          no
     30788  0010,0000  PatientGroupLength                 no
     30789  0010,0010  PatientName                        no
     30790  0010,0020  PatientID                          no
     30791  0010,0021  IssuerOfPatientID                  no
     30792  0010,0022  TypeOfPatientID                    no
     30793  0010,0030  PatientBirthDate                   no
     30794  0010,0032  PatientBirthTime                   no
     30795  0010,0040  PatientSex                         no
     30796  0010,0050  PatientInsurancePlanCodeSequence   no
     30797  0010,0101  PatientPrimaryLanguageCodeSeq      no
     30798  0010,0102  PatientPrimaryLanguageCodeModSeq   no
     30799  0010,1000  OtherPatientIDs                    no
     30800  0010,1001  OtherPatientNames                  no
     30801  0010,1002  OtherPatientIDsSequence            no
     30802  0010,1005  PatientBirthName                   no
     30803  0010,1010  PatientAge                         no
     30804  0010,1020  PatientSize                        no
     30805  0010,1030  PatientWeight                      no
     30806  0010,1040  PatientAddress                     no
     30807  0010,1050  InsurancePlanIdentification        no
     30808  0010,1060  PatientMotherBirthName             no
     30809  0010,1080  MilitaryRank                       no
     30810  0010,1081  BranchOfService                    no
     30811  0010,1090  MedicalRecordLocator               no
     30812  0010,2000  MedicalAlerts                      no
     30813  0010,2110  Allergies                          no
     30814  0010,2150  CountryOfResidence                 no
     30815  0010,2152  RegionOfResidence                  no
     30816  0010,2154  PatientTelephoneNumbers            no
     30817  0010,2160  EthnicGroup                        no
     30818  0010,2180  Occupation                         no
     30819  0010,21A0  SmokingStatus                      no
     30820  0010,21B0  AdditionalPatientHistory           no
     30821  0010,21C0  PregnancyStatus                    no
     30822  0010,21D0  LastMenstrualDate                  no
     30823  0010,21F0  PatientReligiousPreference         no
     30824  0010,2201  PatientSpeciesDescription          no
     30825  0010,2202  PatientSpeciesCodeSequence         no
     30826  0010,2203  PatientSexNeutered                 no
     30827  0010,2210  AnatomicalOrientationType          no
     30828  0010,2292  PatientBreedDescription            no
     30829  0010,2293  PatientBreedCodeSequence           no
     30830  0010,2294  BreedRegistrationSequence          no
     30831  0010,2295  BreedRegistrationNumber            no
     30832  0010,2296  BreedRegistryCodeSequence          no
     30833  0010,2297  ResponsiblePerson                  no
     30834  0010,2298  ResponsiblePersonRole              no
     30835  0010,2299  ResponsibleOrganization            no
     30836  0010,4000  PatientComments                    no
     30837  0010,9431  ExaminedBodyThickness              no
     30838  0011,1010  PatientStatus                      no
     30839  0012,0010  ClinicalTrialSponsorName           no
     30840  0012,0020  ClinicalTrialProtocolID            no
     30841  0012,0021  ClinicalTrialProtocolName          no
     30842  0012,0030  ClinicalTrialSiteID                no
     30843  0012,0031  ClinicalTrialSiteName              no
     30844  0012,0040  ClinicalTrialSubjectID             no
     30845  0012,0042  ClinicalTrialSubjectReadingID      no
     30846  0012,0050  ClinicalTrialTimePointID           no
     30847  0012,0051  ClinicalTrialTimePointDescription  no
     30848  0012,0060  ClinicalTrialCoordinatingCenter    no
     30849  0012,0062  PatientIdentityRemoved             no
     30850  0012,0063  DeidentificationMethod             no
     30851  0012,0064  DeidentificationMethodCodeSequence no
     30852  0012,0071  ClinicalTrialSeriesID              no
     30853  0012,0072  ClinicalTrialSeriesDescription     no
     30854  0012,0084  DistributionType                   no
     30855  0012,0085  ConsentForDistributionFlag         no
     30856  0018,0000  AcquisitionGroupLength             no
     30857  0018,0010  ContrastBolusAgent                 no
     30858  0018,0012  ContrastBolusAgentSequence         no
     30859  0018,0014  ContrastBolusAdministrationRoute   no
     30860  0018,0015  BodyPartExamined                   no
     30861  0018,0020  ScanningSequence                   no
     30862  0018,0021  SequenceVariant                    no
     30863  0018,0022  ScanOptions                        no
     30864  0018,0023  MRAcquisitionType                  no
     30865  0018,0024  SequenceName                       no
     30866  0018,0025  AngioFlag                          no
     30867  0018,0026  InterventionDrugInformationSeq     no
     30868  0018,0027  InterventionDrugStopTime           no
     30869  0018,0028  InterventionDrugDose               no
     30870  0018,0029  InterventionDrugSequence           no
     30871  0018,002A  AdditionalDrugSequence             no
     30872  0018,0030  Radionuclide                       no
     30873  0018,0031  Radiopharmaceutical                no
     30874  0018,0032  EnergyWindowCenterline             no
     30875  0018,0033  EnergyWindowTotalWidth             no
     30876  0018,0034  InterventionDrugName               no
     30877  0018,0035  InterventionDrugStartTime          no
     30878  0018,0036  InterventionSequence               no
     30879  0018,0037  TherapyType                        no
     30880  0018,0038  InterventionStatus                 no
     30881  0018,0039  TherapyDescription                 no
     30882  0018,003A  InterventionDescription            no
     30883  0018,0040  CineRate                           no
     30884  0018,0042  InitialCineRunState                no
     30885  0018,0050  SliceThickness                     no
     30886  0018,0060  KVP                                no
     30887  0018,0070  CountsAccumulated                  no
     30888  0018,0071  AcquisitionTerminationCondition    no
     30889  0018,0072  EffectiveDuration                  no
     30890  0018,0073  AcquisitionStartCondition          no
     30891  0018,0074  AcquisitionStartConditionData      no
     30892  0018,0075  AcquisitionEndConditionData        no
     30893  0018,0080  RepetitionTime                     no
     30894  0018,0081  EchoTime                           no
     30895  0018,0082  InversionTime                      no
     30896  0018,0083  NumberOfAverages                   no
     30897  0018,0084  ImagingFrequency                   no
     30898  0018,0085  ImagedNucleus                      no
     30899  0018,0086  EchoNumber                         no
     30900  0018,0087  MagneticFieldStrength              no
     30901  0018,0088  SpacingBetweenSlices               no
     30902  0018,0089  NumberOfPhaseEncodingSteps         no
     30903  0018,0090  DataCollectionDiameter             no
     30904  0018,0091  EchoTrainLength                    no
     30905  0018,0093  PercentSampling                    no
     30906  0018,0094  PercentPhaseFieldOfView            no
     30907  0018,0095  PixelBandwidth                     no
     30908  0018,1000  DeviceSerialNumber                 no
     30909  0018,1002  DeviceUID                          no
     30910  0018,1003  DeviceID                           no
     30911  0018,1004  PlateID                            no
     30912  0018,1005  GeneratorID                        no
     30913  0018,1006  GridID                             no
     30914  0018,1007  CassetteID                         no
     30915  0018,1008  GantryID                           no
     30916  0018,1010  SecondaryCaptureDeviceID           no
     30917  0018,1011  HardcopyCreationDeviceID           no
     30918  0018,1012  DateOfSecondaryCapture             no
     30919  0018,1014  TimeOfSecondaryCapture             no
     30920  0018,1016  SecondaryCaptureDeviceManufacturer no
     30921  0018,1017  HardcopyDeviceManufacturer         no
     30922  0018,1018  SecondaryCaptureDeviceModelName    no
     30923  0018,1019  SecondaryCaptureDeviceSoftwareVers no
     30924  0018,101A  HardcopyDeviceSoftwareVersion      no
     30925  0018,101B  HardcopyDeviceModelName            no
     30926  0018,1020  SoftwareVersion                    no
     30927  0018,1022  VideoImageFormatAcquired           no
     30928  0018,1023  DigitalImageFormatAcquired         no
     30929  0018,1030  ProtocolName                       no
     30930  0018,1040  ContrastBolusRoute                 no
     30931  0018,1041  ContrastBolusVolume                no
     30932  0018,1042  ContrastBolusStartTime             no
     30933  0018,1043  ContrastBolusStopTime              no
     30934  0018,1044  ContrastBolusTotalDose             no
     30935  0018,1045  SyringeCounts                      no
     30936  0018,1046  ContrastFlowRate                   no
     30937  0018,1047  ContrastFlowDuration               no
     30938  0018,1048  ContrastBolusIngredient            no
     30939  0018,1049  ContrastBolusConcentration         no
     30940  0018,1050  SpatialResolution                  no
     30941  0018,1060  TriggerTime                        no
     30942  0018,1061  TriggerSourceOrType                no
     30943  0018,1062  NominalInterval                    no
     30944  0018,1063  FrameTime                          no
     30945  0018,1064  CardiacFramingType                 no
     30946  0018,1065  FrameTimeVector                    no
     30947  0018,1066  FrameDelay                         no
     30948  0018,1067  ImageTriggerDelay                  no
     30949  0018,1068  MultiplexGroupTimeOffset           no
     30950  0018,1069  TriggerTimeOffset                  no
     30951  0018,106A  SynchronizationTrigger             no
     30952  0018,106C  SynchronizationChannel             no
     30953  0018,106E  TriggerSamplePosition              no
     30954  0018,1070  RadiopharmaceuticalRoute           no
     30955  0018,1071  RadiopharmaceuticalVolume          no
     30956  0018,1072  RadiopharmaceuticalStartTime       no
     30957  0018,1073  RadiopharmaceuticalStopTime        no
     30958  0018,1074  RadionuclideTotalDose              no
     30959  0018,1075  RadionuclideHalfLife               no
     30960  0018,1076  RadionuclidePositronFraction       no
     30961  0018,1077  RadiopharmaceuticalSpecActivity    no
     30962  0018,1078  RadiopharmaceuticalStartDateTime   no
     30963  0018,1079  RadiopharmaceuticalStopDateTime    no
     30964  0018,1080  BeatRejectionFlag                  no
     30965  0018,1081  LowRRValue                         no
     30966  0018,1082  HighRRValue                        no
     30967  0018,1083  IntervalsAcquired                  no
     30968  0018,1084  IntervalsRejected                  no
     30969  0018,1085  PVCRejection                       no
     30970  0018,1086  SkipBeats                          no
     30971  0018,1088  HeartRate                          no
     30972  0018,1090  CardiacNumberOfImages              no
     30973  0018,1094  TriggerWindow                      no
     30974  0018,1100  ReconstructionDiameter             no
     30975  0018,1110  DistanceSourceToDetector           no
     30976  0018,1111  DistanceSourceToPatient            no
     30977  0018,1114  EstimatedRadiographicMagnification no
     30978  0018,1120  GantryDetectorTilt                 no
     30979  0018,1121  GantryDetectorSlew                 no
     30980  0018,1130  TableHeight                        no
     30981  0018,1131  TableTraverse                      no
     30982  0018,1134  TableMotion                        no
     30983  0018,1135  TableVerticalIncrement             no
     30984  0018,1136  TableLateralIncrement              no
     30985  0018,1137  TableLongitudinalIncrement         no
     30986  0018,1138  TableAngle                         no
     30987  0018,113A  TableType                          no
     30988  0018,1140  RotationDirection                  no
     30989  0018,1141  AngularPosition                    no
     30990  0018,1142  RadialPosition                     no
     30991  0018,1143  ScanArc                            no
     30992  0018,1144  AngularStep                        no
     30993  0018,1145  CenterOfRotationOffset             no
     30994  0018,1146  RotationOffset                     no
     30995  0018,1147  FieldOfViewShape                   no
     30996  0018,1149  FieldOfViewDimensions              no
     30997  0018,1150  ExposureTime                       no
     30998  0018,1151  XRayTubeCurrent                    no
     30999  0018,1152  Exposure                           no
     31000  0018,1153  ExposureInMicroAmpSec              no
     31001  0018,1154  AveragePulseWidth                  no
     31002  0018,1155  RadiationSetting                   no
     31003  0018,1156  RectificationType                  no
     31004  0018,115A  RadiationMode                      no
     31005  0018,115E  ImageAreaDoseProduct               no
     31006  0018,1160  FilterType                         no
     31007  0018,1161  TypeOfFilters                      no
     31008  0018,1162  IntensifierSize                    no
     31009  0018,1164  ImagerPixelSpacing                 no
     31010  0018,1166  Grid                               no
     31011  0018,1170  GeneratorPower                     no
     31012  0018,1180  CollimatorGridName                 no
     31013  0018,1181  CollimatorType                     no
     31014  0018,1182  FocalDistance                      no
     31015  0018,1183  XFocusCenter                       no
     31016  0018,1184  YFocusCenter                       no
     31017  0018,1190  FocalSpots                         no
     31018  0018,1191  AnodeTargetMaterial                no
     31019  0018,11A0  BodyPartThickness                  no
     31020  0018,11A2  CompressionForce                   no
     31021  0018,1200  DateOfLastCalibration              no
     31022  0018,1201  TimeOfLastCalibration              no
     31023  0018,1210  ConvolutionKernel                  no
     31024  0018,1240  UpperLowerPixelValues              no
     31025  0018,1242  ActualFrameDuration                no
     31026  0018,1243  CountRate                          no
     31027  0018,1244  PreferredPlaybackSequencing        no
     31028  0018,1250  ReceiveCoilName                    no
     31029  0018,1251  TransmitCoilName                   no
     31030  0018,1260  PlateType                          no
     31031  0018,1261  PhosphorType                       no
     31032  0018,1300  ScanVelocity                       no
     31033  0018,1301  WholeBodyTechnique                 no
     31034  0018,1302  ScanLength                         no
     31035  0018,1310  AcquisitionMatrix                  no
     31036  0018,1312  InPlanePhaseEncodingDirection      no
     31037  0018,1314  FlipAngle                          no
     31038  0018,1315  VariableFlipAngleFlag              no
     31039  0018,1316  SAR                                no
     31040  0018,1318  DB-Dt                              no
     31041  0018,1400  AcquisitionDeviceProcessingDescr   no
     31042  0018,1401  AcquisitionDeviceProcessingCode    no
     31043  0018,1402  CassetteOrientation                no
     31044  0018,1403  CassetteSize                       no
     31045  0018,1404  ExposuresOnPlate                   no
     31046  0018,1405  RelativeXRayExposure               no
     31047  0018,1450  ColumnAngulation                   no
     31048  0018,1460  TomoLayerHeight                    no
     31049  0018,1470  TomoAngle                          no
     31050  0018,1480  TomoTime                           no
     31051  0018,1490  TomoType                           no
     31052  0018,1491  TomoClass                          no
     31053  0018,1495  NumberOfTomosynthesisSourceImages  no
     31054  0018,1500  PositionerMotion                   no
     31055  0018,1508  PositionerType                     no
     31056  0018,1510  PositionerPrimaryAngle             no
     31057  0018,1511  PositionerSecondaryAngle           no
     31058  0018,1520  PositionerPrimaryAngleIncrement    no
     31059  0018,1521  PositionerSecondaryAngleIncrement  no
     31060  0018,1530  DetectorPrimaryAngle               no
     31061  0018,1531  DetectorSecondaryAngle             no
     31062  0018,1600  ShutterShape                       no
     31063  0018,1602  ShutterLeftVerticalEdge            no
     31064  0018,1604  ShutterRightVerticalEdge           no
     31065  0018,1606  ShutterUpperHorizontalEdge         no
     31066  0018,1608  ShutterLowerHorizontalEdge         no
     31067  0018,1610  CenterOfCircularShutter            no
     31068  0018,1612  RadiusOfCircularShutter            no
     31069  0018,1620  VerticesOfPolygonalShutter         no
     31070  0018,1622  ShutterPresentationValue           no
     31071  0018,1623  ShutterOverlayGroup                no
     31072  0018,1624  ShutterPresentationColorCIELabVal  no
     31073  0018,1700  CollimatorShape                    no
     31074  0018,1702  CollimatorLeftVerticalEdge         no
     31075  0018,1704  CollimatorRightVerticalEdge        no
     31076  0018,1706  CollimatorUpperHorizontalEdge      no
     31077  0018,1708  CollimatorLowerHorizontalEdge      no
     31078  0018,1710  CenterOfCircularCollimator         no
     31079  0018,1712  RadiusOfCircularCollimator         no
     31080  0018,1720  VerticesOfPolygonalCollimator      no
     31081  0018,1800  AcquisitionTimeSynchronized        no
     31082  0018,1801  TimeSource                         no
     31083  0018,1802  TimeDistributionProtocol           no
     31084  0018,1803  NTPSourceAddress                   no
     31085  0018,2001  PageNumberVector                   no
     31086  0018,2002  FrameLabelVector                   no
     31087  0018,2003  FramePrimaryAngleVector            no
     31088  0018,2004  FrameSecondaryAngleVector          no
     31089  0018,2005  SliceLocationVector                no
     31090  0018,2006  DisplayWindowLabelVector           no
     31091  0018,2010  NominalScannedPixelSpacing         no
     31092  0018,2020  DigitizingDeviceTransportDirection no
     31093  0018,2030  RotationOfScannedFilm              no
     31094  0018,3100  IVUSAcquisition                    no
     31095  0018,3101  IVUSPullbackRate                   no
     31096  0018,3102  IVUSGatedRate                      no
     31097  0018,3103  IVUSPullbackStartFrameNumber       no
     31098  0018,3104  IVUSPullbackStopFrameNumber        no
     31099  0018,3105  LesionNumber                       no
     31100  0018,4000  AcquisitionComments                no
     31101  0018,5000  OutputPower                        no
     31102  0018,5010  TransducerData                     no
     31103  0018,5012  FocusDepth                         no
     31104  0018,5020  ProcessingFunction                 no
     31105  0018,5021  PostprocessingFunction             no
     31106  0018,5022  MechanicalIndex                    no
     31107  0018,5024  BoneThermalIndex                   no
     31108  0018,5026  CranialThermalIndex                no
     31109  0018,5027  SoftTissueThermalIndex             no
     31110  0018,5028  SoftTissueFocusThermalIndex        no
     31111  0018,5029  SoftTissueSurfaceThermalIndex      no
     31112  0018,5030  DynamicRange                       no
     31113  0018,5040  TotalGain                          no
     31114  0018,5050  DepthOfScanField                   no
     31115  0018,5100  PatientPosition                    no
     31116  0018,5101  ViewPosition                       no
     31117  0018,5104  ProjectionEponymousNameCodeSeq     no
     31118  0018,5210  ImageTransformationMatrix          no
     31119  0018,5212  ImageTranslationVector             no
     31120  0018,6000  Sensitivity                        no
     31121  0018,6011  SequenceOfUltrasoundRegions        no
     31122  0018,6012  RegionSpatialFormat                no
     31123  0018,6014  RegionDataType                     no
     31124  0018,6016  RegionFlags                        no
     31125  0018,6018  RegionLocationMinX0                no
     31126  0018,601A  RegionLocationMinY0                no
     31127  0018,601C  RegionLocationMaxX1                no
     31128  0018,601E  RegionLocationMaxY1                no
     31129  0018,6020  ReferencePixelX0                   no
     31130  0018,6022  ReferencePixelY0                   no
     31131  0018,6024  PhysicalUnitsXDirection            no
     31132  0018,6026  PhysicalUnitsYDirection            no
     31133  0018,6028  ReferencePixelPhysicalValueX       no
     31134  0018,602A  ReferencePixelPhysicalValueY       no
     31135  0018,602C  PhysicalDeltaX                     no
     31136  0018,602E  PhysicalDeltaY                     no
     31137  0018,6030  TransducerFrequency                no
     31138  0018,6031  TransducerType                     no
     31139  0018,6032  PulseRepetitionFrequency           no
     31140  0018,6034  DopplerCorrectionAngle             no
     31141  0018,6036  SteeringAngle                      no
     31142  0018,6038  DopplerSampleVolumeXPosRetired     no
     31143  0018,6039  DopplerSampleVolumeXPosition       no
     31144  0018,603A  DopplerSampleVolumeYPosRetired     no
     31145  0018,603B  DopplerSampleVolumeYPosition       no
     31146  0018,603C  TMLinePositionX0Retired            no
     31147  0018,603D  TMLinePositionX0                   no
     31148  0018,603E  TMLinePositionY0Retired            no
     31149  0018,603F  TMLinePositionY0                   no
     31150  0018,6040  TMLinePositionX1Retired            no
     31151  0018,6041  TMLinePositionX1                   no
     31152  0018,6042  TMLinePositionY1Retired            no
     31153  0018,6043  TMLinePositionY1                   no
     31154  0018,6044  PixelComponentOrganization         no
     31155  0018,6046  PixelComponentMask                 no
     31156  0018,6048  PixelComponentRangeStart           no
     31157  0018,604A  PixelComponentRangeStop            no
     31158  0018,604C  PixelComponentPhysicalUnits        no
     31159  0018,604E  PixelComponentDataType             no
     31160  0018,6050  NumberOfTableBreakPoints           no
     31161  0018,6052  TableOfXBreakPoints                no
     31162  0018,6054  TableOfYBreakPoints                no
     31163  0018,6056  NumberOfTableEntries               no
     31164  0018,6058  TableOfPixelValues                 no
     31165  0018,605A  TableOfParameterValues             no
     31166  0018,6060  RWaveTimeVector                    no
     31167  0018,7000  DetectorConditionsNominalFlag      no
     31168  0018,7001  DetectorTemperature                no
     31169  0018,7004  DetectorType                       no
     31170  0018,7005  DetectorConfiguration              no
     31171  0018,7006  DetectorDescription                no
     31172  0018,7008  DetectorMode                       no
     31173  0018,700A  DetectorID                         no
     31174  0018,700C  DateOfLastDetectorCalibration      no
     31175  0018,700E  TimeOfLastDetectorCalibration      no
     31176  0018,7010  DetectorExposuresSinceCalibration  no
     31177  0018,7011  DetectorExposuresSinceManufactured no
     31178  0018,7012  DetectorTimeSinceLastExposure      no
     31179  0018,7014  DetectorActiveTime                 no
     31180  0018,7016  DetectorActiveOffsetFromExposure   no
     31181  0018,701A  DetectorBinning                    no
     31182  0018,7020  DetectorElementPhysicalSize        no
     31183  0018,7022  DetectorElementSpacing             no
     31184  0018,7024  DetectorActiveShape                no
     31185  0018,7026  DetectorActiveDimensions           no
     31186  0018,7028  DetectorActiveOrigin               no
     31187  0018,702A  DetectorManufacturerName           no
     31188  0018,702B  DetectorManufacturersModelName     no
     31189  0018,7030  FieldOfViewOrigin                  no
     31190  0018,7032  FieldOfViewRotation                no
     31191  0018,7034  FieldOfViewHorizontalFlip          no
     31192  0018,7040  GridAbsorbingMaterial              no
     31193  0018,7041  GridSpacingMaterial                no
     31194  0018,7042  GridThickness                      no
     31195  0018,7044  GridPitch                          no
     31196  0018,7046  GridAspectRatio                    no
     31197  0018,7048  GridPeriod                         no
     31198  0018,704C  GridFocalDistance                  no
     31199  0018,7050  FilterMaterial                     no
     31200  0018,7052  FilterThicknessMinimum             no
     31201  0018,7054  FilterThicknessMaximum             no
     31202  0018,7060  ExposureControlMode                no
     31203  0018,7062  ExposureControlModeDescription     no
     31204  0018,7064  ExposureStatus                     no
     31205  0018,7065  PhototimerSetting                  no
     31206  0018,8150  ExposureTimeInMicroSec             no
     31207  0018,8151  XRayTubeCurrentInMicroAmps         no
     31208  0018,9004  ContentQualification               no
     31209  0018,9005  PulseSequenceName                  no
     31210  0018,9006  MRImagingModifierSequence          no
     31211  0018,9008  EchoPulseSequence                  no
     31212  0018,9009  InversionRecovery                  no
     31213  0018,9010  FlowCompensation                   no
     31214  0018,9011  MultipleSpinEcho                   no
     31215  0018,9012  MultiPlanarExcitation              no
     31216  0018,9014  PhaseContrast                      no
     31217  0018,9015  TimeOfFlightContrast               no
     31218  0018,9016  Spoiling                           no
     31219  0018,9017  SteadyStatePulseSequence           no
     31220  0018,9018  EchoPlanarPulseSequence            no
     31221  0018,9019  TagAngleFirstAxis                  no
     31222  0018,9020  MagnetizationTransfer              no
     31223  0018,9021  T2Preparation                      no
     31224  0018,9022  BloodSignalNulling                 no
     31225  0018,9024  SaturationRecovery                 no
     31226  0018,9025  SpectrallySelectedSuppression      no
     31227  0018,9026  SpectrallySelectedExcitation       no
     31228  0018,9027  SpatialPresaturation               no
     31229  0018,9028  Tagging                            no
     31230  0018,9029  OversamplingPhase                  no
     31231  0018,9030  TagSpacingFirstDimension           no
     31232  0018,9032  GeometryOfKSpaceTraversal          no
     31233  0018,9033  SegmentedKSpaceTraversal           no
     31234  0018,9034  RectilinearPhaseEncodeReordering   no
     31235  0018,9035  TagThickness                       no
     31236  0018,9036  PartialFourierDirection            no
     31237  0018,9037  CardiacSynchronizationTechnique    no
     31238  0018,9041  ReceiveCoilManufacturerName        no
     31239  0018,9042  MRReceiveCoilSequence              no
     31240  0018,9043  ReceiveCoilType                    no
     31241  0018,9044  QuadratureReceiveCoil              no
     31242  0018,9045  MultiCoilDefinitionSequence        no
     31243  0018,9046  MultiCoilConfiguration             no
     31244  0018,9047  MultiCoilElementName               no
     31245  0018,9048  MultiCoilElementUsed               no
     31246  0018,9049  MRTransmitCoilSequence             no
     31247  0018,9050  TransmitCoilManufacturerName       no
     31248  0018,9051  TransmitCoilType                   no
     31249  0018,9052  SpectralWidth                      no
     31250  0018,9053  ChemicalShiftReference             no
     31251  0018,9054  VolumeLocalizationTechnique        no
     31252  0018,9058  MRAcquisitionFrequencyEncodeSteps  no
     31253  0018,9059  Decoupling                         no
     31254  0018,9060  DecoupledNucleus                   no
     31255  0018,9061  DecouplingFrequency                no
     31256  0018,9062  DecouplingMethod                   no
     31257  0018,9063  DecouplingChemicalShiftReference   no
     31258  0018,9064  KSpaceFiltering                    no
     31259  0018,9065  TimeDomainFiltering                no
     31260  0018,9066  NumberOfZeroFills                  no
     31261  0018,9067  BaselineCorrection                 no
     31262  0018,9069  ParallelReductionFactorInPlane     no
     31263  0018,9070  CardiacRRIntervalSpecified         no
     31264  0018,9073  AcquisitionDuration                no
     31265  0018,9074  FrameAcquisitionDateTime           no
     31266  0018,9075  DiffusionDirectionality            no
     31267  0018,9076  DiffusionGradientDirectionSequence no
     31268  0018,9077  ParallelAcquisition                no
     31269  0018,9078  ParallelAcquisitionTechnique       no
     31270  0018,9079  InversionTimes                     no
     31271  0018,9080  MetaboliteMapDescription           no
     31272  0018,9081  PartialFourier                     no
     31273  0018,9082  EffectiveEchoTime                  no
     31274  0018,9083  MetaboliteMapCodeSequence          no
     31275  0018,9084  ChemicalShiftSequence              no
     31276  0018,9085  CardiacSignalSource                no
     31277  0018,9087  DiffusionBValue                    no
     31278  0018,9089  DiffusionGradientOrientation       no
     31279  0018,9090  VelocityEncodingDirection          no
     31280  0018,9091  VelocityEncodingMinimumValue       no
     31281  0018,9093  NumberOfKSpaceTrajectories         no
     31282  0018,9094  CoverageOfKSpace                   no
     31283  0018,9095  SpectroscopyAcquisitionPhaseRows   no
     31284  0018,9096  ParallelReductFactorInPlaneRetired no
     31285  0018,9098  TransmitterFrequency               no
     31286  0018,9100  ResonantNucleus                    no
     31287  0018,9101  FrequencyCorrection                no
     31288  0018,9103  MRSpectroscopyFOV-GeometrySequence no
     31289  0018,9104  SlabThickness                      no
     31290  0018,9105  SlabOrientation                    no
     31291  0018,9106  MidSlabPosition                    no
     31292  0018,9107  MRSpatialSaturationSequence        no
     31293  0018,9112  MRTimingAndRelatedParametersSeq    no
     31294  0018,9114  MREchoSequence                     no
     31295  0018,9115  MRModifierSequence                 no
     31296  0018,9117  MRDiffusionSequence                no
     31297  0018,9118  CardiacTriggerSequence             no
     31298  0018,9119  MRAveragesSequence                 no
     31299  0018,9125  MRFOV-GeometrySequence             no
     31300  0018,9126  VolumeLocalizationSequence         no
     31301  0018,9127  SpectroscopyAcquisitionDataColumns no
     31302  0018,9147  DiffusionAnisotropyType            no
     31303  0018,9151  FrameReferenceDateTime             no
     31304  0018,9152  MRMetaboliteMapSequence            no
     31305  0018,9155  ParallelReductionFactorOutOfPlane  no
     31306  0018,9159  SpectroscopyOutOfPlanePhaseSteps   no
     31307  0018,9166  BulkMotionStatus                   no
     31308  0018,9168  ParallelReductionFactSecondInPlane no
     31309  0018,9169  CardiacBeatRejectionTechnique      no
     31310  0018,9170  RespiratoryMotionCompTechnique     no
     31311  0018,9171  RespiratorySignalSource            no
     31312  0018,9172  BulkMotionCompensationTechnique    no
     31313  0018,9173  BulkMotionSignalSource             no
     31314  0018,9174  ApplicableSafetyStandardAgency     no
     31315  0018,9175  ApplicableSafetyStandardDescr      no
     31316  0018,9176  OperatingModeSequence              no
     31317  0018,9177  OperatingModeType                  no
     31318  0018,9178  OperatingMode                      no
     31319  0018,9179  SpecificAbsorptionRateDefinition   no
     31320  0018,9180  GradientOutputType                 no
     31321  0018,9181  SpecificAbsorptionRateValue        no
     31322  0018,9182  GradientOutput                     no
     31323  0018,9183  FlowCompensationDirection          no
     31324  0018,9184  TaggingDelay                       no
     31325  0018,9185  RespiratoryMotionCompTechDescr     no
     31326  0018,9186  RespiratorySignalSourceID          no
     31327  0018,9195  ChemicalShiftsMinIntegrateLimitHz  no
     31328  0018,9196  ChemicalShiftsMaxIntegrateLimitHz  no
     31329  0018,9197  MRVelocityEncodingSequence         no
     31330  0018,9198  FirstOrderPhaseCorrection          no
     31331  0018,9199  WaterReferencedPhaseCorrection     no
     31332  0018,9200  MRSpectroscopyAcquisitionType      no
     31333  0018,9214  RespiratoryCyclePosition           no
     31334  0018,9217  VelocityEncodingMaximumValue       no
     31335  0018,9218  TagSpacingSecondDimension          no
     31336  0018,9219  TagAngleSecondAxis                 no
     31337  0018,9220  FrameAcquisitionDuration           no
     31338  0018,9226  MRImageFrameTypeSequence           no
     31339  0018,9227  MRSpectroscopyFrameTypeSequence    no
     31340  0018,9231  MRAcqPhaseEncodingStepsInPlane     no
     31341  0018,9232  MRAcqPhaseEncodingStepsOutOfPlane  no
     31342  0018,9234  SpectroscopyAcqPhaseColumns        no
     31343  0018,9236  CardiacCyclePosition               no
     31344  0018,9239  SpecificAbsorptionRateSequence     no
     31345  0018,9240  RFEchoTrainLength                  no
     31346  0018,9241  GradientEchoTrainLength            no
     31347  0018,9295  ChemicalShiftsMinIntegrateLimitPPM no
     31348  0018,9296  ChemicalShiftsMaxIntegrateLimitPPM no
     31349  0018,9301  CTAcquisitionTypeSequence          no
     31350  0018,9302  AcquisitionType                    no
     31351  0018,9303  TubeAngle                          no
     31352  0018,9304  CTAcquisitionDetailsSequence       no
     31353  0018,9305  RevolutionTime                     no
     31354  0018,9306  SingleCollimationWidth             no
     31355  0018,9307  TotalCollimationWidth              no
     31356  0018,9308  CTTableDynamicsSequence            no
     31357  0018,9309  TableSpeed                         no
     31358  0018,9310  TableFeedPerRotation               no
     31359  0018,9311  SpiralPitchFactor                  no
     31360  0018,9312  CTGeometrySequence                 no
     31361  0018,9313  DataCollectionCenterPatient        no
     31362  0018,9314  CTReconstructionSequence           no
     31363  0018,9315  ReconstructionAlgorithm            no
     31364  0018,9316  ConvolutionKernelGroup             no
     31365  0018,9317  ReconstructionFieldOfView          no
     31366  0018,9318  ReconstructionTargetCenterPatient  no
     31367  0018,9319  ReconstructionAngle                no
     31368  0018,9320  ImageFilter                        no
     31369  0018,9321  CTExposureSequence                 no
     31370  0018,9322  ReconstructionPixelSpacing         no
     31371  0018,9323  ExposureModulationType             no
     31372  0018,9324  EstimatedDoseSaving                no
     31373  0018,9325  CTXRayDetailsSequence              no
     31374  0018,9326  CTPositionSequence                 no
     31375  0018,9327  TablePosition                      no
     31376  0018,9328  ExposureTimeInMilliSec             no
     31377  0018,9329  CTImageFrameTypeSequence           no
     31378  0018,9330  XRayTubeCurrentInMilliAmps         no
     31379  0018,9332  ExposureInMilliAmpSec              no
     31380  0018,9333  ConstantVolumeFlag                 no
     31381  0018,9334  FluoroscopyFlag                    no
     31382  0018,9335  SourceToDataCollectionCenterDist   no
     31383  0018,9337  ContrastBolusAgentNumber           no
     31384  0018,9338  ContrastBolusIngredientCodeSeq     no
     31385  0018,9340  ContrastAdministrationProfileSeq   no
     31386  0018,9341  ContrastBolusUsageSequence         no
     31387  0018,9342  ContrastBolusAgentAdministered     no
     31388  0018,9343  ContrastBolusAgentDetected         no
     31389  0018,9344  ContrastBolusAgentPhase            no
     31390  0018,9345  CTDIvol                            no
     31391  0018,9346  CTDIPhantomTypeCodeSequence        no
     31392  0018,9351  CalciumScoringMassFactorPatient    no
     31393  0018,9352  CalciumScoringMassFactorDevice     no
     31394  0018,9353  EnergyWeightingFactor              no
     31395  0018,9360  CTAdditionalXRaySourceSequence     no
     31396  0018,9401  ProjectionPixelCalibrationSequence no
     31397  0018,9402  DistanceSourceToIsocenter          no
     31398  0018,9403  DistanceObjectToTableTop           no
     31399  0018,9404  ObjectPixelSpacingInCenterOfBeam   no
     31400  0018,9405  PositionerPositionSequence         no
     31401  0018,9406  TablePositionSequence              no
     31402  0018,9407  CollimatorShapeSequence            no
     31403  0018,9412  XA-XRFFrameCharacteristicsSequence no
     31404  0018,9417  FrameAcquisitionSequence           no
     31405  0018,9420  XRayReceptorType                   no
     31406  0018,9423  AcquisitionProtocolName            no
     31407  0018,9424  AcquisitionProtocolDescription     no
     31408  0018,9425  ContrastBolusIngredientOpaque      no
     31409  0018,9426  DistanceReceptorPlaneToDetHousing  no
     31410  0018,9427  IntensifierActiveShape             no
     31411  0018,9428  IntensifierActiveDimensions        no
     31412  0018,9429  PhysicalDetectorSize               no
     31413  0018,9430  PositionOfIsocenterProjection      no
     31414  0018,9432  FieldOfViewSequence                no
     31415  0018,9433  FieldOfViewDescription             no
     31416  0018,9434  ExposureControlSensingRegionsSeq   no
     31417  0018,9435  ExposureControlSensingRegionShape  no
     31418  0018,9436  ExposureControlSensRegionLeftEdge  no
     31419  0018,9437  ExposureControlSensRegionRightEdge no
     31420  0018,9440  CenterOfCircExposControlSensRegion no
     31421  0018,9441  RadiusOfCircExposControlSensRegion no
     31422  0018,9447  ColumnAngulationPatient            no
     31423  0018,9449  BeamAngle                          no
     31424  0018,9451  FrameDetectorParametersSequence    no
     31425  0018,9452  CalculatedAnatomyThickness         no
     31426  0018,9455  CalibrationSequence                no
     31427  0018,9456  ObjectThicknessSequence            no
     31428  0018,9457  PlaneIdentification                no
     31429  0018,9461  FieldOfViewDimensionsInFloat       no
     31430  0018,9462  IsocenterReferenceSystemSequence   no
     31431  0018,9463  PositionerIsocenterPrimaryAngle    no
     31432  0018,9464  PositionerIsocenterSecondaryAngle  no
     31433  0018,9465  PositionerIsocenterDetRotAngle     no
     31434  0018,9466  TableXPositionToIsocenter          no
     31435  0018,9467  TableYPositionToIsocenter          no
     31436  0018,9468  TableZPositionToIsocenter          no
     31437  0018,9469  TableHorizontalRotationAngle       no
     31438  0018,9470  TableHeadTiltAngle                 no
     31439  0018,9471  TableCradleTiltAngle               no
     31440  0018,9472  FrameDisplayShutterSequence        no
     31441  0018,9473  AcquiredImageAreaDoseProduct       no
     31442  0018,9474  CArmPositionerTabletopRelationship no
     31443  0018,9476  XRayGeometrySequence               no
     31444  0018,9477  IrradiationEventIDSequence         no
     31445  0018,9504  XRay3DFrameTypeSequence            no
     31446  0018,9506  ContributingSourcesSequence        no
     31447  0018,9507  XRay3DAcquisitionSequence          no
     31448  0018,9508  PrimaryPositionerScanArc           no
     31449  0018,9509  SecondaryPositionerScanArc         no
     31450  0018,9510  PrimaryPositionerScanStartAngle    no
     31451  0018,9511  SecondaryPositionerScanStartAngle  no
     31452  0018,9514  PrimaryPositionerIncrement         no
     31453  0018,9515  SecondaryPositionerIncrement       no
     31454  0018,9516  StartAcquisitionDateTime           no
     31455  0018,9517  EndAcquisitionDateTime             no
     31456  0018,9524  ApplicationName                    no
     31457  0018,9525  ApplicationVersion                 no
     31458  0018,9526  ApplicationManufacturer            no
     31459  0018,9527  AlgorithmType                      no
     31460  0018,9528  AlgorithmDescription               no
     31461  0018,9530  XRay3DReconstructionSequence       no
     31462  0018,9531  ReconstructionDescription          no
     31463  0018,9538  PerProjectionAcquisitionSequence   no
     31464  0018,9601  DiffusionBMatrixSequence           no
     31465  0018,9602  DiffusionBValueXX                  no
     31466  0018,9603  DiffusionBValueXY                  no
     31467  0018,9604  DiffusionBValueXZ                  no
     31468  0018,9605  DiffusionBValueYY                  no
     31469  0018,9606  DiffusionBValueYZ                  no
     31470  0018,9607  DiffusionBValueZZ                  no
     31471  0018,9701  DecayCorrectionDateTime            no
     31472  0018,9715  StartDensityThreshold              no
     31473  0018,9722  TerminationTimeThreshold           no
     31474  0018,9725  DetectorGeometry                   no
     31475  0018,9727  AxialDetectorDimension             no
     31476  0018,9735  PETPositionSequence                no
     31477  0018,9739  NumberOfIterations                 no
     31478  0018,9740  NumberOfSubsets                    no
     31479  0018,9751  PETFrameTypeSequence               no
     31480  0018,9756  ReconstructionType                 no
     31481  0018,9758  DecayCorrected                     no
     31482  0018,9759  AttenuationCorrected               no
     31483  0018,9760  ScatterCorrected                   no
     31484  0018,9761  DeadTimeCorrected                  no
     31485  0018,9762  GantryMotionCorrected              no
     31486  0018,9763  PatientMotionCorrected             no
     31487  0018,9765  RandomsCorrected                   no
     31488  0018,9767  SensitivityCalibrated              no
     31489  0018,9801  DepthsOfFocus                      no
     31490  0018,9804  ExclusionStartDatetime             no
     31491  0018,9805  ExclusionDuration                  no
     31492  0018,9807  ImageDataTypeSequence              no
     31493  0018,9808  DataType                           no
     31494  0018,980B  AliasedDataType                    no
     31495  0018,A001  ContributingEquipmentSequence      no
     31496  0018,A002  ContributionDateTime               no
     31497  0018,A003  ContributionDescription            no
     31498  0019,1002  NumberOfCellsIInDetector           no
     31499  0019,1003  CellNumberAtTheta                  no
     31500  0019,1004  CellSpacing                        no
     31501  0019,100F  HorizFrameOfRef                    no
     31502  0019,1011  SeriesContrast                     no
     31503  0019,1012  LastPseq                           no
     31504  0019,1013  StartNumberForBaseline             no
     31505  0019,1014  EndNumberForBaseline               no
     31506  0019,1015  StartNumberForEnhancedScans        no
     31507  0019,1016  EndNumberForEnhancedScans          no
     31508  0019,1017  SeriesPlane                        no
     31509  0019,1018  FirstScanRas                       no
     31510  0019,1019  FirstScanLocation                  no
     31511  0019,101A  LastScanRas                        no
     31512  0019,101B  LastScanLoc                        no
     31513  0019,101E  DisplayFieldOfView                 no
     31514  0019,1023  TableSpeed                         no
     31515  0019,1024  MidScanTime                        no
     31516  0019,1025  MidScanFlag                        no
     31517  0019,1026  DegreesOfAzimuth                   no
     31518  0019,1027  GantryPeriod                       no
     31519  0019,102A  XRayOnPosition                     no
     31520  0019,102B  XRayOffPosition                    no
     31521  0019,102C  NumberOfTriggers                   no
     31522  0019,102E  AngleOfFirstView                   no
     31523  0019,102F  TriggerFrequency                   no
     31524  0019,1039  ScanFOVType                        no
     31525  0019,1040  StatReconFlag                      no
     31526  0019,1041  ComputeType                        no
     31527  0019,1042  SegmentNumber                      no
     31528  0019,1043  TotalSegmentsRequested             no
     31529  0019,1044  InterscanDelay                     no
     31530  0019,1047  ViewCompressionFactor              no
     31531  0019,104A  TotalNoOfRefChannels               no
     31532  0019,104B  DataSizeForScanData                no
     31533  0019,1052  ReconPostProcflag                  no
     31534  0019,1057  CTWaterNumber                      no
     31535  0019,1058  CTBoneNumber                       no
     31536  0019,105A  AcquisitionDuration                no
     31537  0019,105E  NumberOfChannels                   no
     31538  0019,105F  IncrementBetweenChannels           no
     31539  0019,1060  StartingView                       no
     31540  0019,1061  NumberOfViews                      no
     31541  0019,1062  IncrementBetweenViews              no
     31542  0019,106A  DependantOnNoViewsProcessed        no
     31543  0019,106B  FieldOfViewInDetectorCells         no
     31544  0019,1070  ValueOfBackProjectionButton        no
     31545  0019,1071  SetIfFatqEstimatesWereUsed         no
     31546  0019,1072  ZChanAvgOverViews                  no
     31547  0019,1073  AvgOfLeftRefChansOverViews         no
     31548  0019,1074  MaxLeftChanOverViews               no
     31549  0019,1075  AvgOfRightRefChansOverViews        no
     31550  0019,1076  MaxRightChanOverViews              no
     31551  0019,107D  SecondEcho                         no
     31552  0019,107E  NumberOfEchoes                     no
     31553  0019,107F  TableDelta                         no
     31554  0019,1081  Contiguous                         no
     31555  0019,1084  PeakSAR                            no
     31556  0019,1085  MonitorSAR                         no
     31557  0019,1087  CardiacRepetitionTime              no
     31558  0019,1088  ImagesPerCardiacCycle              no
     31559  0019,108A  ActualReceiveGainAnalog            no
     31560  0019,108B  ActualReceiveGainDigital           no
     31561  0019,108D  DelayAfterTrigger                  no
     31562  0019,108F  Swappf                             no
     31563  0019,1090  PauseInterval                      no
     31564  0019,1091  PulseTime                          no
     31565  0019,1092  SliceOffsetOnFreqAxis              no
     31566  0019,1093  CenterFrequency                    no
     31567  0019,1094  TransmitGain                       no
     31568  0019,1095  AnalogReceiverGain                 no
     31569  0019,1096  DigitalReceiverGain                no
     31570  0019,1097  BitmapDefiningCVs                  no
     31571  0019,1098  CenterFreqMethod                   no
     31572  0019,109B  PulseSeqMode                       no
     31573  0019,109C  PulseSeqName                       no
     31574  0019,109D  PulseSeqDate                       no
     31575  0019,109E  InternalPulseSeqName               no
     31576  0019,109F  TransmittingCoil                   no
     31577  0019,10A0  SurfaceCoilType                    no
     31578  0019,10A1  ExtremityCoilFlag                  no
     31579  0019,10A2  RawDataRunNumber                   no
     31580  0019,10A3  CalibratedFieldStrength            no
     31581  0019,10A4  SATFatWaterBone                    no
     31582  0019,10A5  ReceiveBandwidth                   no
     31583  0019,10A7  UserData01                         no
     31584  0019,10A8  UserData02                         no
     31585  0019,10A9  UserData03                         no
     31586  0019,10AA  UserData04                         no
     31587  0019,10AB  UserData05                         no
     31588  0019,10AC  UserData06                         no
     31589  0019,10AD  UserData07                         no
     31590  0019,10AE  UserData08                         no
     31591  0019,10AF  UserData09                         no
     31592  0019,10B0  UserData10                         no
     31593  0019,10B1  UserData11                         no
     31594  0019,10B2  UserData12                         no
     31595  0019,10B3  UserData13                         no
     31596  0019,10B4  UserData14                         no
     31597  0019,10B5  UserData15                         no
     31598  0019,10B6  UserData16                         no
     31599  0019,10B7  UserData17                         no
     31600  0019,10B8  UserData18                         no
     31601  0019,10B9  UserData19                         no
     31602  0019,10BA  UserData20                         no
     31603  0019,10BB  UserData21                         no
     31604  0019,10BC  UserData22                         no
     31605  0019,10BD  UserData23                         no
     31606  0019,10BE  ProjectionAngle                    no
     31607  0019,10C0  SaturationPlanes                   no
     31608  0019,10C1  SurfaceCoilIntensity               no
     31609  0019,10C2  SATLocationR                       no
     31610  0019,10C3  SATLocationL                       no
     31611  0019,10C4  SATLocationA                       no
     31612  0019,10C5  SATLocationP                       no
     31613  0019,10C6  SATLocationH                       no
     31614  0019,10C7  SATLocationF                       no
     31615  0019,10C8  SATThicknessR-L                    no
     31616  0019,10C9  SATThicknessA-P                    no
     31617  0019,10CA  SATThicknessH-F                    no
     31618  0019,10CB  PrescribedFlowAxis                 no
     31619  0019,10CC  VelocityEncoding                   no
     31620  0019,10CD  ThicknessDisclaimer                no
     31621  0019,10CE  PrescanType                        no
     31622  0019,10CF  PrescanStatus                      no
     31623  0019,10D0  RawDataType                        no
     31624  0019,10D2  ProjectionAlgorithm                no
     31625  0019,10D3  ProjectionAlgorithm                no
     31626  0019,10D5  FractionalEcho                     no
     31627  0019,10D6  PrepPulse                          no
     31628  0019,10D7  CardiacPhases                      no
     31629  0019,10D8  VariableEchoflag                   no
     31630  0019,10D9  ConcatenatedSAT                    no
     31631  0019,10DA  ReferenceChannelUsed               no
     31632  0019,10DB  BackProjectorCoefficient           no
     31633  0019,10DC  PrimarySpeedCorrectionUsed         no
     31634  0019,10DD  OverrangeCorrectionUsed            no
     31635  0019,10DE  DynamicZAlphaValue                 no
     31636  0019,10DF  UserData                           no
     31637  0019,10E0  UserData                           no
     31638  0019,10E2  VelocityEncodeScale                no
     31639  0019,10F2  FastPhases                         no
     31640  0019,10F9  TransmissionGain                   no
     31641  0020,0000  RelationshipGroupLength            no
     31642  0020,000D  StudyInstanceUID                   no
     31643  0020,000E  SeriesInstanceUID                  no
     31644  0020,0010  StudyID                            no
     31645  0020,0011  SeriesNumber                       no
     31646  0020,0012  AcquisitionNumber                  no
     31647  0020,0013  InstanceNumber                     no
     31648  0020,0014  IsotopeNumber                      no
     31649  0020,0015  PhaseNumber                        no
     31650  0020,0016  IntervalNumber                     no
     31651  0020,0017  TimeSlotNumber                     no
     31652  0020,0018  AngleNumber                        no
     31653  0020,0019  ItemNumber                         no
     31654  0020,0020  PatientOrientation                 no
     31655  0020,0022  OverlayNumber                      no
     31656  0020,0024  CurveNumber                        no
     31657  0020,0026  LookupTableNumber                  no
     31658  0020,0030  ImagePosition                      no
     31659  0020,0032  ImagePositionPatient               no
     31660  0020,0035  ImageOrientation                   no
     31661  0020,0037  ImageOrientationPatient            no
     31662  0020,0050  Location                           no
     31663  0020,0052  FrameOfReferenceUID                no
     31664  0020,0060  Laterality                         no
     31665  0020,0062  ImageLaterality                    no
     31666  0020,0070  ImageGeometryType                  no
     31667  0020,0080  MaskingImage                       no
     31668  0020,0100  TemporalPositionIdentifier         no
     31669  0020,0105  NumberOfTemporalPositions          no
     31670  0020,0110  TemporalResolution                 no
     31671  0020,0200  SynchronizationFrameOfReferenceUID no
     31672  0020,1000  SeriesInStudy                      no
     31673  0020,1001  AcquisitionsInSeries               no
     31674  0020,1002  ImagesInAcquisition                no
     31675  0020,1003  ImagesInSeries                     no
     31676  0020,1004  AcquisitionsInStudy                no
     31677  0020,1005  ImagesInStudy                      no
     31678  0020,1020  Reference                          no
     31679  0020,1040  PositionReferenceIndicator         no
     31680  0020,1041  SliceLocation                      no
     31681  0020,1070  OtherStudyNumbers                  no
     31682  0020,1200  NumberOfPatientRelatedStudies      no
     31683  0020,1202  NumberOfPatientRelatedSeries       no
     31684  0020,1204  NumberOfPatientRelatedInstances    no
     31685  0020,1206  NumberOfStudyRelatedSeries         no
     31686  0020,1208  NumberOfStudyRelatedInstances      no
     31687  0020,1209  NumberOfSeriesRelatedInstances     no
     31688  0020,31xx  SourceImageIDs                     no
     31689  0020,3401  ModifyingDeviceID                  no
     31690  0020,3402  ModifiedImageID                    no
     31691  0020,3403  ModifiedImageDate                  no
     31692  0020,3404  ModifyingDeviceManufacturer        no
     31693  0020,3405  ModifiedImageTime                  no
     31694  0020,3406  ModifiedImageDescription           no
     31695  0020,4000  ImageComments                      no
     31696  0020,5000  OriginalImageIdentification        no
     31697  0020,5002  OriginalImageIdentNomenclature     no
     31698  0020,9056  StackID                            no
     31699  0020,9057  InStackPositionNumber              no
     31700  0020,9071  FrameAnatomySequence               no
     31701  0020,9072  FrameLaterality                    no
     31702  0020,9111  FrameContentSequence               no
     31703  0020,9113  PlanePositionSequence              no
     31704  0020,9116  PlaneOrientationSequence           no
     31705  0020,9128  TemporalPositionIndex              no
     31706  0020,9153  TriggerDelayTime                   no
     31707  0020,9156  FrameAcquisitionNumber             no
     31708  0020,9157  DimensionIndexValues               no
     31709  0020,9158  FrameComments                      no
     31710  0020,9161  ConcatenationUID                   no
     31711  0020,9162  InConcatenationNumber              no
     31712  0020,9163  InConcatenationTotalNumber         no
     31713  0020,9164  DimensionOrganizationUID           no
     31714  0020,9165  DimensionIndexPointer              no
     31715  0020,9167  FunctionalGroupPointer             no
     31716  0020,9213  DimensionIndexPrivateCreator       no
     31717  0020,9221  DimensionOrganizationSequence      no
     31718  0020,9222  DimensionIndexSequence             no
     31719  0020,9228  ConcatenationFrameOffsetNumber     no
     31720  0020,9238  FunctionalGroupPrivateCreator      no
     31721  0020,9241  NominalPercentageOfCardiacPhase    no
     31722  0020,9245  NominalPercentOfRespiratoryPhase   no
     31723  0020,9246  StartingRespiratoryAmplitude       no
     31724  0020,9247  StartingRespiratoryPhase           no
     31725  0020,9248  EndingRespiratoryAmplitude         no
     31726  0020,9249  EndingRespiratoryPhase             no
     31727  0020,9250  RespiratoryTriggerType             no
     31728  0020,9251  RRIntervalTimeNominal              no
     31729  0020,9252  ActualCardiacTriggerDelayTime      no
     31730  0020,9253  RespiratorySynchronizationSequence no
     31731  0020,9254  RespiratoryIntervalTime            no
     31732  0020,9255  NominalRespiratoryTriggerDelayTime no
     31733  0020,9256  RespiratoryTriggerDelayThreshold   no
     31734  0020,9257  ActualRespiratoryTriggerDelayTime  no
     31735  0020,9301  ImagePositionVolume                no
     31736  0020,9302  ImageOrientationVolume             no
     31737  0020,9308  ApexPosition                       no
     31738  0020,9421  DimensionDescriptionLabel          no
     31739  0020,9450  PatientOrientationInFrameSequence  no
     31740  0020,9453  FrameLabel                         no
     31741  0020,9518  AcquisitionIndex                   no
     31742  0020,9529  ContributingSOPInstancesRefSeq     no
     31743  0020,9536  ReconstructionIndex                no
     31744  0021,1003  SeriesFromWhichPrescribed          no
     31745  0021,1005  GenesisVersionNow                  no
     31746  0021,1007  SeriesRecordChecksum               no
     31747  0021,1018  GenesisVersionNow                  no
     31748  0021,1019  AcqreconRecordChecksum             no
     31749  0021,1020  TableStartLocation                 no
     31750  0021,1035  SeriesFromWhichPrescribed          no
     31751  0021,1036  ImageFromWhichPrescribed           no
     31752  0021,1037  ScreenFormat                       no
     31753  0021,104A  AnatomicalReferenceForScout        no
     31754  0021,104F  LocationsInAcquisition             no
     31755  0021,1050  GraphicallyPrescribed              no
     31756  0021,1051  RotationFromSourceXRot             no
     31757  0021,1052  RotationFromSourceYRot             no
     31758  0021,1053  RotationFromSourceZRot             no
     31759  0021,1054  ImagePosition                      no
     31760  0021,1055  ImageOrientation                   no
     31761  0021,1056  IntegerSlop                        no
     31762  0021,1057  IntegerSlop                        no
     31763  0021,1058  IntegerSlop                        no
     31764  0021,1059  IntegerSlop                        no
     31765  0021,105A  IntegerSlop                        no
     31766  0021,105B  FloatSlop                          no
     31767  0021,105C  FloatSlop                          no
     31768  0021,105D  FloatSlop                          no
     31769  0021,105E  FloatSlop                          no
     31770  0021,105F  FloatSlop                          no
     31771  0021,1081  AutoWindowLevelAlpha               no
     31772  0021,1082  AutoWindowLevelBeta                no
     31773  0021,1083  AutoWindowLevelWindow              no
     31774  0021,1084  ToWindowLevelLevel                 no
     31775  0021,1090  TubeFocalSpotPosition              no
     31776  0021,1091  BiopsyPosition                     no
     31777  0021,1092  BiopsyTLocation                    no
     31778  0021,1093  BiopsyRefLocation                  no
     31779  0022,0001  LightPathFilterPassThroughWavelen  no
     31780  0022,0002  LightPathFilterPassBand            no
     31781  0022,0003  ImagePathFilterPassThroughWavelen  no
     31782  0022,0004  ImagePathFilterPassBand            no
     31783  0022,0005  PatientEyeMovementCommanded        no
     31784  0022,0006  PatientEyeMovementCommandCodeSeq   no
     31785  0022,0007  SphericalLensPower                 no
     31786  0022,0008  CylinderLensPower                  no
     31787  0022,0009  CylinderAxis                       no
     31788  0022,000A  EmmetropicMagnification            no
     31789  0022,000B  IntraOcularPressure                no
     31790  0022,000C  HorizontalFieldOfView              no
     31791  0022,000D  PupilDilated                       no
     31792  0022,000E  DegreeOfDilation                   no
     31793  0022,0010  StereoBaselineAngle                no
     31794  0022,0011  StereoBaselineDisplacement         no
     31795  0022,0012  StereoHorizontalPixelOffset        no
     31796  0022,0013  StereoVerticalPixelOffset          no
     31797  0022,0014  StereoRotation                     no
     31798  0022,0015  AcquisitionDeviceTypeCodeSequence  no
     31799  0022,0016  IlluminationTypeCodeSequence       no
     31800  0022,0017  LightPathFilterTypeStackCodeSeq    no
     31801  0022,0018  ImagePathFilterTypeStackCodeSeq    no
     31802  0022,0019  LensesCodeSequence                 no
     31803  0022,001A  ChannelDescriptionCodeSequence     no
     31804  0022,001B  RefractiveStateSequence            no
     31805  0022,001C  MydriaticAgentCodeSequence         no
     31806  0022,001D  RelativeImagePositionCodeSequence  no
     31807  0022,0020  StereoPairsSequence                no
     31808  0022,0021  LeftImageSequence                  no
     31809  0022,0022  RightImageSequence                 no
     31810  0022,0030  AxialLengthOfTheEye                no
     31811  0022,0031  OphthalmicFrameLocationSequence    no
     31812  0022,0032  ReferenceCoordinates               no
     31813  0022,0035  DepthSpatialResolution             no
     31814  0022,0036  MaximumDepthDistortion             no
     31815  0022,0037  AlongScanSpatialResolution         no
     31816  0022,0038  MaximumAlongScanDistortion         no
     31817  0022,0039  OphthalmicImageOrientation         no
     31818  0022,0041  DepthOfTransverseImage             no
     31819  0022,0042  MydriaticAgentConcUnitsSeq         no
     31820  0022,0048  AcrossScanSpatialResolution        no
     31821  0022,0049  MaximumAcrossScanDistortion        no
     31822  0022,004E  MydriaticAgentConcentration        no
     31823  0022,0055  IlluminationWaveLength             no
     31824  0022,0056  IlluminationPower                  no
     31825  0022,0057  IlluminationBandwidth              no
     31826  0022,0058  MydriaticAgentSequence             no
     31827  0023,1001  NumberOfSeriesInStudy              no
     31828  0023,1002  NumberOfUnarchivedSeries           no
     31829  0023,1010  ReferenceImageField                no
     31830  0023,1050  SummaryImage                       no
     31831  0023,1070  StartTimeSecsInFirstAxial          no
     31832  0023,1074  NoofUpdatesToHeader                no
     31833  0023,107D  IndicatesIfTheStudyHasCompleteInfo no
     31834  0025,1006  LastPulseSequenceUsed              no
     31835  0025,1007  ImagesInSeries                     no
     31836  0025,1010  LandmarkCounter                    no
     31837  0025,1011  NumberOfAcquisitions               no
     31838  0025,1014  IndicatesNoofUpdatesToHeader       no
     31839  0025,1017  SeriesCompleteFlag                 no
     31840  0025,1018  NumberOfImagesArchived             no
     31841  0025,1019  LastImageNumberUsed                no
     31842  0025,101A  PrimaryReceiverSuiteAndHost        no
     31843  0027,1006  ImageArchiveFlag                   no
     31844  0027,1010  ScoutType                          no
     31845  0027,101C  VmaMamp                            no
     31846  0027,101D  VmaPhase                           no
     31847  0027,101E  VmaMod                             no
     31848  0027,101F  VmaClip                            no
     31849  0027,1020  SmartScanOnOffFlag                 no
     31850  0027,1030  ForeignImageRevision               no
     31851  0027,1031  ImagingMode                        no
     31852  0027,1032  PulseSequence                      no
     31853  0027,1033  ImagingOptions                     no
     31854  0027,1035  PlaneType                          no
     31855  0027,1036  ObliquePlane                       no
     31856  0027,1040  RASLetterOfImageLocation           no
     31857  0027,1041  ImageLocation                      no
     31858  0027,1042  CenterRCoordOfPlaneImage           no
     31859  0027,1043  CenterACoordOfPlaneImage           no
     31860  0027,1044  CenterSCoordOfPlaneImage           no
     31861  0027,1045  NormalRCoord                       no
     31862  0027,1046  NormalACoord                       no
     31863  0027,1047  NormalSCoord                       no
     31864  0027,1048  RCoordOfTopRightCorner             no
     31865  0027,1049  ACoordOfTopRightCorner             no
     31866  0027,104A  SCoordOfTopRightCorner             no
     31867  0027,104B  RCoordOfBottomRightCorner          no
     31868  0027,104C  ACoordOfBottomRightCorner          no
     31869  0027,104D  SCoordOfBottomRightCorner          no
     31870  0027,1050  TableStartLocation                 no
     31871  0027,1051  TableEndLocation                   no
     31872  0027,1052  RASLetterForSideOfImage            no
     31873  0027,1053  RASLetterForAnteriorPosterior      no
     31874  0027,1054  RASLetterForScoutStartLoc          no
     31875  0027,1055  RASLetterForScoutEndLoc            no
     31876  0027,1060  ImageDimensionX                    no
     31877  0027,1061  ImageDimensionY                    no
     31878  0027,1062  NumberOfExcitations                no
     31879  0028,0000  ImagePresentationGroupLength       no
     31880  0028,0002  SamplesPerPixel                    no
     31881  0028,0003  SamplesPerPixelUsed                no
     31882  0028,0004  PhotometricInterpretation          no
     31883  0028,0005  ImageDimensions                    no
     31884  0028,0006  PlanarConfiguration                no
     31885  0028,0008  NumberOfFrames                     no
     31886  0028,0009  FrameIncrementPointer              no
     31887  0028,000A  FrameDimensionPointer              no
     31888  0028,0010  Rows                               no
     31889  0028,0011  Columns                            no
     31890  0028,0012  Planes                             no
     31891  0028,0014  UltrasoundColorDataPresent         no
     31892  0028,0030  PixelSpacing                       no
     31893  0028,0031  ZoomFactor                         no
     31894  0028,0032  ZoomCenter                         no
     31895  0028,0034  PixelAspectRatio                   no
     31896  0028,0040  ImageFormat                        no
     31897  0028,0050  ManipulatedImage                   no
     31898  0028,0051  CorrectedImage                     no
     31899  0028,005F  CompressionRecognitionCode         no
     31900  0028,0060  CompressionCode                    no
     31901  0028,0061  CompressionOriginator              no
     31902  0028,0062  CompressionLabel                   no
     31903  0028,0063  CompressionDescription             no
     31904  0028,0065  CompressionSequence                no
     31905  0028,0066  CompressionStepPointers            no
     31906  0028,0068  RepeatInterval                     no
     31907  0028,0069  BitsGrouped                        no
     31908  0028,0070  PerimeterTable                     no
     31909  0028,0071  PerimeterValue                     no
     31910  0028,0080  PredictorRows                      no
     31911  0028,0081  PredictorColumns                   no
     31912  0028,0082  PredictorConstants                 no
     31913  0028,0090  BlockedPixels                      no
     31914  0028,0091  BlockRows                          no
     31915  0028,0092  BlockColumns                       no
     31916  0028,0093  RowOverlap                         no
     31917  0028,0094  ColumnOverlap                      no
     31918  0028,0100  BitsAllocated                      no
     31919  0028,0101  BitsStored                         no
     31920  0028,0102  HighBit                            no
     31921  0028,0103  PixelRepresentation                no
     31922  0028,0104  SmallestValidPixelValue            no
     31923  0028,0105  LargestValidPixelValue             no
     31924  0028,0106  SmallestImagePixelValue            no
     31925  0028,0107  LargestImagePixelValue             no
     31926  0028,0108  SmallestPixelValueInSeries         no
     31927  0028,0109  LargestPixelValueInSeries          no
     31928  0028,0110  SmallestImagePixelValueInPlane     no
     31929  0028,0111  LargestImagePixelValueInPlane      no
     31930  0028,0120  PixelPaddingValue                  no
     31931  0028,0121  PixelPaddingRangeLimit             no
     31932  0028,0200  ImageLocation                      no
     31933  0028,0300  QualityControlImage                no
     31934  0028,0301  BurnedInAnnotation                 no
     31935  0028,0400  TransformLabel                     no
     31936  0028,0401  TransformVersionNumber             no
     31937  0028,0402  NumberOfTransformSteps             no
     31938  0028,0403  SequenceOfCompressedData           no
     31939  0028,0404  DetailsOfCoefficients              no
     31940  0028,04x2  CoefficientCoding                  no
     31941  0028,04x3  CoefficientCodingPointers          no
     31942  0028,0700  DCTLabel                           no
     31943  0028,0701  DataBlockDescription               no
     31944  0028,0702  DataBlock                          no
     31945  0028,0710  NormalizationFactorFormat          no
     31946  0028,0720  ZonalMapNumberFormat               no
     31947  0028,0721  ZonalMapLocation                   no
     31948  0028,0722  ZonalMapFormat                     no
     31949  0028,0730  AdaptiveMapFormat                  no
     31950  0028,0740  CodeNumberFormat                   no
     31951  0028,08x0  CodeLabel                          no
     31952  0028,08x2  NumberOfTables                     no
     31953  0028,08x3  CodeTableLocation                  no
     31954  0028,08x4  BitsForCodeWord                    no
     31955  0028,08x8  ImageDataLocation                  no
     31956  0028,0A02  PixelSpacingCalibrationType        no
     31957  0028,0A04  PixelSpacingCalibrationDescription no
     31958  0028,1040  PixelIntensityRelationship         no
     31959  0028,1041  PixelIntensityRelationshipSign     no
     31960  0028,1050  WindowCenter                       no
     31961  0028,1051  WindowWidth                        no
     31962  0028,1052  RescaleIntercept                   no
     31963  0028,1053  RescaleSlope                       no
     31964  0028,1054  RescaleType                        no
     31965  0028,1055  WindowCenterAndWidthExplanation    no
     31966  0028,1056  VOI_LUTFunction                    no
     31967  0028,1080  GrayScale                          no
     31968  0028,1090  RecommendedViewingMode             no
     31969  0028,1100  GrayLookupTableDescriptor          no
     31970  0028,1101  RedPaletteColorTableDescriptor     no
     31971  0028,1102  GreenPaletteColorTableDescriptor   no
     31972  0028,1103  BluePaletteColorTableDescriptor    no
     31973  0028,1111  LargeRedPaletteColorTableDescr     no
     31974  0028,1112  LargeGreenPaletteColorTableDescr   no
     31975  0028,1113  LargeBluePaletteColorTableDescr    no
     31976  0028,1199  PaletteColorTableUID               no
     31977  0028,1200  GrayLookupTableData                no
     31978  0028,1201  RedPaletteColorTableData           no
     31979  0028,1202  GreenPaletteColorTableData         no
     31980  0028,1203  BluePaletteColorTableData          no
     31981  0028,1211  LargeRedPaletteColorTableData      no
     31982  0028,1212  LargeGreenPaletteColorTableData    no
     31983  0028,1213  LargeBluePaletteColorTableData     no
     31984  0028,1214  LargePaletteColorLookupTableUID    no
     31985  0028,1221  SegmentedRedColorTableData         no
     31986  0028,1222  SegmentedGreenColorTableData       no
     31987  0028,1223  SegmentedBlueColorTableData        no
     31988  0028,1300  BreastImplantPresent               no
     31989  0028,1350  PartialView                        no
     31990  0028,1351  PartialViewDescription             no
     31991  0028,1352  PartialViewCodeSequence            no
     31992  0028,135A  SpatialLocationsPreserved          no
     31993  0028,1402  DataPathAssignment                 no
     31994  0028,1404  BlendingLUT1Sequence               no
     31995  0028,1406  BlendingWeightConstant             no
     31996  0028,1408  BlendingLookupTableData            no
     31997  0028,140C  BlendingLUT2Sequence               no
     31998  0028,140E  DataPathID                         no
     31999  0028,140F  RGBLUTTransferFunction             no
     32000  0028,1410  AlphaLUTTransferFunction           no
     32001  0028,2000  ICCProfile                         no
     32002  0028,2110  LossyImageCompression              no
     32003  0028,2112  LossyImageCompressionRatio         no
     32004  0028,2114  LossyImageCompressionMethod        no
     32005  0028,3000  ModalityLUTSequence                no
     32006  0028,3002  LUTDescriptor                      no
     32007  0028,3003  LUTExplanation                     no
     32008  0028,3004  ModalityLUTType                    no
     32009  0028,3006  LUTData                            no
     32010  0028,3010  VOILUTSequence                     no
     32011  0028,3110  SoftcopyVOILUTSequence             no
     32012  0028,4000  ImagePresentationComments          no
     32013  0028,5000  BiPlaneAcquisitionSequence         no
     32014  0028,6010  RepresentativeFrameNumber          no
     32015  0028,6020  FrameNumbersOfInterest             no
     32016  0028,6022  FrameOfInterestDescription         no
     32017  0028,6023  FrameOfInterestType                no
     32018  0028,6030  MaskPointers                       no
     32019  0028,6040  RWavePointer                       no
     32020  0028,6100  MaskSubtractionSequence            no
     32021  0028,6101  MaskOperation                      no
     32022  0028,6102  ApplicableFrameRange               no
     32023  0028,6110  MaskFrameNumbers                   no
     32024  0028,6112  ContrastFrameAveraging             no
     32025  0028,6114  MaskSubPixelShift                  no
     32026  0028,6120  TIDOffset                          no
     32027  0028,6190  MaskOperationExplanation           no
     32028  0028,7FE0  PixelDataProviderURL               no
     32029  0028,9001  DataPointRows                      no
     32030  0028,9002  DataPointColumns                   no
     32031  0028,9003  SignalDomainColumns                no
     32032  0028,9099  LargestMonochromePixelValue        no
     32033  0028,9108  DataRepresentation                 no
     32034  0028,9110  PixelMeasuresSequence              no
     32035  0028,9132  FrameVOILUTSequence                no
     32036  0028,9145  PixelValueTransformationSequence   no
     32037  0028,9235  SignalDomainRows                   no
     32038  0028,9411  DisplayFilterPercentage            no
     32039  0028,9415  FramePixelShiftSequence            no
     32040  0028,9416  SubtractionItemID                  no
     32041  0028,9422  PixelIntensityRelationshipLUTSeq   no
     32042  0028,9443  FramePixelDataPropertiesSequence   no
     32043  0028,9444  GeometricalProperties              no
     32044  0028,9445  GeometricMaximumDistortion         no
     32045  0028,9446  ImageProcessingApplied             no
     32046  0028,9454  MaskSelectionMode                  no
     32047  0028,9474  LUTFunction                        no
     32048  0028,9478  MaskVisibilityPercentage           no
     32049  0028,9501  PixelShiftSequence                 no
     32050  0028,9502  RegionPixelShiftSequence           no
     32051  0028,9503  VerticesOfTheRegion                no
     32052  0028,9506  PixelShiftFrameRange               no
     32053  0028,9507  LUTFrameRange                      no
     32054  0028,9520  ImageToEquipmentMappingMatrix      no
     32055  0028,9537  EquipmentCoordinateSystemID        no
     32056  0029,1004  LowerRangeOfPixels1a               no
     32057  0029,1005  LowerRangeOfPixels1b               no
     32058  0029,1006  LowerRangeOfPixels1c               no
     32059  0029,1007  LowerRangeOfPixels1d               no
     32060  0029,1008  LowerRangeOfPixels1e               no
     32061  0029,1009  LowerRangeOfPixels1f               no
     32062  0029,100A  LowerRangeOfPixels1g               no
     32063  0029,1015  LowerRangeOfPixels1h               no
     32064  0029,1016  LowerRangeOfPixels1i               no
     32065  0029,1017  LowerRangeOfPixels2                no
     32066  0029,1018  UpperRangeOfPixels2                no
     32067  0029,101A  LenOfTotHdrInBytes                 no
     32068  0029,1026  VersionOfTheHdrStruct              no
     32069  0029,1034  AdvantageCompOverflow              no
     32070  0029,1035  AdvantageCompUnderflow             no
     32071  0032,0000  StudyGroupLength                   no
     32072  0032,000A  StudyStatusID                      no
     32073  0032,000C  StudyPriorityID                    no
     32074  0032,0012  StudyIDIssuer                      no
     32075  0032,0032  StudyVerifiedDate                  no
     32076  0032,0033  StudyVerifiedTime                  no
     32077  0032,0034  StudyReadDate                      no
     32078  0032,0035  StudyReadTime                      no
     32079  0032,1000  ScheduledStudyStartDate            no
     32080  0032,1001  ScheduledStudyStartTime            no
     32081  0032,1010  ScheduledStudyStopDate             no
     32082  0032,1011  ScheduledStudyStopTime             no
     32083  0032,1020  ScheduledStudyLocation             no
     32084  0032,1021  ScheduledStudyLocationAETitle      no
     32085  0032,1030  ReasonForStudy                     no
     32086  0032,1031  RequestingPhysicianIDSequence      no
     32087  0032,1032  RequestingPhysician                no
     32088  0032,1033  RequestingService                  no
     32089  0032,1040  StudyArrivalDate                   no
     32090  0032,1041  StudyArrivalTime                   no
     32091  0032,1050  StudyCompletionDate                no
     32092  0032,1051  StudyCompletionTime                no
     32093  0032,1055  StudyComponentStatusID             no
     32094  0032,1060  RequestedProcedureDescription      no
     32095  0032,1064  RequestedProcedureCodeSequence     no
     32096  0032,1070  RequestedContrastAgent             no
     32097  0032,4000  StudyComments                      no
     32098  0038,0004  ReferencedPatientAliasSequence     no
     32099  0038,0008  VisitStatusID                      no
     32100  0038,0010  AdmissionID                        no
     32101  0038,0011  IssuerOfAdmissionID                no
     32102  0038,0016  RouteOfAdmissions                  no
     32103  0038,001A  ScheduledAdmissionDate             no
     32104  0038,001B  ScheduledAdmissionTime             no
     32105  0038,001C  ScheduledDischargeDate             no
     32106  0038,001D  ScheduledDischargeTime             no
     32107  0038,001E  ScheduledPatientInstitResidence    no
     32108  0038,0020  AdmittingDate                      no
     32109  0038,0021  AdmittingTime                      no
     32110  0038,0030  DischargeDate                      no
     32111  0038,0032  DischargeTime                      no
     32112  0038,0040  DischargeDiagnosisDescription      no
     32113  0038,0044  DischargeDiagnosisCodeSequence     no
     32114  0038,0050  SpecialNeeds                       no
     32115  0038,0060  ServiceEpisodeID                   no
     32116  0038,0061  IssuerOfServiceEpisodeID           no
     32117  0038,0062  ServiceEpisodeDescription          no
     32118  0038,0100  PertinentDocumentsSequence         no
     32119  0038,0300  CurrentPatientLocation             no
     32120  0038,0400  PatientInstitutionResidence        no
     32121  0038,0500  PatientState                       no
     32122  0038,0502  PatientClinicalTrialParticipSeq    no
     32123  0038,4000  VisitComments                      no
     32124  003A,0004  WaveformOriginality                no
     32125  003A,0005  NumberOfWaveformChannels           no
     32126  003A,0010  NumberOfWaveformSamples            no
     32127  003A,001A  SamplingFrequency                  no
     32128  003A,0020  MultiplexGroupLabel                no
     32129  003A,0200  ChannelDefinitionSequence          no
     32130  003A,0202  WaveformChannelNumber              no
     32131  003A,0203  ChannelLabel                       no
     32132  003A,0205  ChannelStatus                      no
     32133  003A,0208  ChannelSourceSequence              no
     32134  003A,0209  ChannelSourceModifiersSequence     no
     32135  003A,020A  SourceWaveformSequence             no
     32136  003A,020C  ChannelDerivationDescription       no
     32137  003A,0210  ChannelSensitivity                 no
     32138  003A,0211  ChannelSensitivityUnitsSequence    no
     32139  003A,0212  ChannelSensitivityCorrectionFactor no
     32140  003A,0213  ChannelBaseline                    no
     32141  003A,0214  ChannelTimeSkew                    no
     32142  003A,0215  ChannelSampleSkew                  no
     32143  003A,0218  ChannelOffset                      no
     32144  003A,021A  WaveformBitsStored                 no
     32145  003A,0220  FilterLowFrequency                 no
     32146  003A,0221  FilterHighFrequency                no
     32147  003A,0222  NotchFilterFrequency               no
     32148  003A,0223  NotchFilterBandwidth               no
     32149  003A,0230  WaveformDataDisplayScale           no
     32150  003A,0231  WaveformDisplayBkgCIELabValue      no
     32151  003A,0240  WaveformPresentationGroupSequence  no
     32152  003A,0241  PresentationGroupNumber            no
     32153  003A,0242  ChannelDisplaySequence             no
     32154  003A,0244  ChannelRecommendDisplayCIELabValue no
     32155  003A,0245  ChannelPosition                    no
     32156  003A,0246  DisplayShadingFlag                 no
     32157  003A,0247  FractionalChannelDisplayScale      no
     32158  003A,0248  AbsoluteChannelDisplayScale        no
     32159  003A,0300  MultiplexAudioChannelsDescrCodeSeq no
     32160  003A,0301  ChannelIdentificationCode          no
     32161  003A,0302  ChannelMode                        no
     32162  0040,0001  ScheduledStationAETitle            no
     32163  0040,0002  ScheduledProcedureStepStartDate    no
     32164  0040,0003  ScheduledProcedureStepStartTime    no
     32165  0040,0004  ScheduledProcedureStepEndDate      no
     32166  0040,0005  ScheduledProcedureStepEndTime      no
     32167  0040,0006  ScheduledPerformingPhysiciansName  no
     32168  0040,0007  ScheduledProcedureStepDescription  no
     32169  0040,0008  ScheduledProtocolCodeSequence      no
     32170  0040,0009  ScheduledProcedureStepID           no
     32171  0040,000A  StageCodeSequence                  no
     32172  0040,000B  ScheduledPerformingPhysicianIDSeq  no
     32173  0040,0010  ScheduledStationName               no
     32174  0040,0011  ScheduledProcedureStepLocation     no
     32175  0040,0012  PreMedication                      no
     32176  0040,0020  ScheduledProcedureStepStatus       no
     32177  0040,0031  LocalNamespaceEntityID             no
     32178  0040,0032  UniversalEntityID                  no
     32179  0040,0033  UniversalEntityIDType              no
     32180  0040,0035  IdentifierTypeCode                 no
     32181  0040,0036  AssigningFacilitySequence          no
     32182  0040,0100  ScheduledProcedureStepSequence     no
     32183  0040,0220  ReferencedNonImageCompositeSOPSeq  no
     32184  0040,0241  PerformedStationAETitle            no
     32185  0040,0242  PerformedStationName               no
     32186  0040,0243  PerformedLocation                  no
     32187  0040,0244  PerformedProcedureStepStartDate    no
     32188  0040,0245  PerformedProcedureStepStartTime    no
     32189  0040,0250  PerformedProcedureStepEndDate      no
     32190  0040,0251  PerformedProcedureStepEndTime      no
     32191  0040,0252  PerformedProcedureStepStatus       no
     32192  0040,0253  PerformedProcedureStepID           no
     32193  0040,0254  PerformedProcedureStepDescription  no
     32194  0040,0255  PerformedProcedureTypeDescription  no
     32195  0040,0260  PerformedProtocolCodeSequence      no
     32196  0040,0261  PerformedProtocolType              no
     32197  0040,0270  ScheduledStepAttributesSequence    no
     32198  0040,0275  RequestAttributesSequence          no
     32199  0040,0280  CommentsOnPerformedProcedureStep   no
     32200  0040,0281  ProcStepDiscontinueReasonCodeSeq   no
     32201  0040,0293  QuantitySequence                   no
     32202  0040,0294  Quantity                           no
     32203  0040,0295  MeasuringUnitsSequence             no
     32204  0040,0296  BillingItemSequence                no
     32205  0040,0300  TotalTimeOfFluoroscopy             no
     32206  0040,0301  TotalNumberOfExposures             no
     32207  0040,0302  EntranceDose                       no
     32208  0040,0303  ExposedArea                        no
     32209  0040,0306  DistanceSourceToEntrance           no
     32210  0040,0307  DistanceSourceToSupport            no
     32211  0040,030E  ExposureDoseSequence               no
     32212  0040,0310  CommentsOnRadiationDose            no
     32213  0040,0312  XRayOutput                         no
     32214  0040,0314  HalfValueLayer                     no
     32215  0040,0316  OrganDose                          no
     32216  0040,0318  OrganExposed                       no
     32217  0040,0320  BillingProcedureStepSequence       no
     32218  0040,0321  FilmConsumptionSequence            no
     32219  0040,0324  BillingSuppliesAndDevicesSequence  no
     32220  0040,0330  ReferencedProcedureStepSequence    no
     32221  0040,0340  PerformedSeriesSequence            no
     32222  0040,0400  CommentsOnScheduledProcedureStep   no
     32223  0040,0440  ProtocolContextSequence            no
     32224  0040,0441  ContentItemModifierSequence        no
     32225  0040,050A  SpecimenAccessionNumber            no
     32226  0040,0512  ContainerIdentifier                no
     32227  0040,051A  ContainerDescription               no
     32228  0040,0550  SpecimenSequence                   no
     32229  0040,0551  SpecimenIdentifier                 no
     32230  0040,0552  SpecimenDescriptionSequenceTrial   no
     32231  0040,0553  SpecimenDescriptionTrial           no
     32232  0040,0554  SpecimenUID                        no
     32233  0040,0555  AcquisitionContextSequence         no
     32234  0040,0556  AcquisitionContextDescription      no
     32235  0040,059A  SpecimenTypeCodeSequence           no
     32236  0040,0600  SpecimenShortDescription           no
     32237  0040,06FA  SlideIdentifier                    no
     32238  0040,071A  ImageCenterPointCoordinatesSeq     no
     32239  0040,072A  XOffsetInSlideCoordinateSystem     no
     32240  0040,073A  YOffsetInSlideCoordinateSystem     no
     32241  0040,074A  ZOffsetInSlideCoordinateSystem     no
     32242  0040,08D8  PixelSpacingSequence               no
     32243  0040,08DA  CoordinateSystemAxisCodeSequence   no
     32244  0040,08EA  MeasurementUnitsCodeSequence       no
     32245  0040,09F8  VitalStainCodeSequenceTrial        no
     32246  0040,1001  RequestedProcedureID               no
     32247  0040,1002  ReasonForRequestedProcedure        no
     32248  0040,1003  RequestedProcedurePriority         no
     32249  0040,1004  PatientTransportArrangements       no
     32250  0040,1005  RequestedProcedureLocation         no
     32251  0040,1006  PlacerOrderNumber-Procedure        no
     32252  0040,1007  FillerOrderNumber-Procedure        no
     32253  0040,1008  ConfidentialityCode                no
     32254  0040,1009  ReportingPriority                  no
     32255  0040,100A  ReasonForRequestedProcedureCodeSeq no
     32256  0040,1010  NamesOfIntendedRecipientsOfResults no
     32257  0040,1011  IntendedRecipientsOfResultsIDSeq   no
     32258  0040,1101  PersonIdentificationCodeSequence   no
     32259  0040,1102  PersonAddress                      no
     32260  0040,1103  PersonTelephoneNumbers             no
     32261  0040,1400  RequestedProcedureComments         no
     32262  0040,2001  ReasonForImagingServiceRequest     no
     32263  0040,2004  IssueDateOfImagingServiceRequest   no
     32264  0040,2005  IssueTimeOfImagingServiceRequest   no
     32265  0040,2006  PlacerOrderNum-ImagingServiceReq   no
     32266  0040,2007  FillerOrderNum-ImagingServiceReq   no
     32267  0040,2008  OrderEnteredBy                     no
     32268  0040,2009  OrderEntererLocation               no
     32269  0040,2010  OrderCallbackPhoneNumber           no
     32270  0040,2016  PlacerOrderNum-ImagingServiceReq   no
     32271  0040,2017  FillerOrderNum-ImagingServiceReq   no
     32272  0040,2400  ImagingServiceRequestComments      no
     32273  0040,3001  ConfidentialityOnPatientDataDescr  no
     32274  0040,4001  GenPurposeScheduledProcStepStatus  no
     32275  0040,4002  GenPurposePerformedProcStepStatus  no
     32276  0040,4003  GenPurposeSchedProcStepPriority    no
     32277  0040,4004  SchedProcessingApplicationsCodeSeq no
     32278  0040,4005  SchedProcedureStepStartDateAndTime no
     32279  0040,4006  MultipleCopiesFlag                 no
     32280  0040,4007  PerformedProcessingAppsCodeSeq     no
     32281  0040,4009  HumanPerformerCodeSequence         no
     32282  0040,4010  SchedProcStepModificationDateTime  no
     32283  0040,4011  ExpectedCompletionDateAndTime      no
     32284  0040,4015  ResultingGenPurposePerfProcStepSeq no
     32285  0040,4016  RefGenPurposeSchedProcStepSeq      no
     32286  0040,4018  ScheduledWorkitemCodeSequence      no
     32287  0040,4019  PerformedWorkitemCodeSequence      no
     32288  0040,4020  InputAvailabilityFlag              no
     32289  0040,4021  InputInformationSequence           no
     32290  0040,4022  RelevantInformationSequence        no
     32291  0040,4023  RefGenPurSchedProcStepTransUID     no
     32292  0040,4025  ScheduledStationNameCodeSequence   no
     32293  0040,4026  ScheduledStationClassCodeSequence  no
     32294  0040,4027  SchedStationGeographicLocCodeSeq   no
     32295  0040,4028  PerformedStationNameCodeSequence   no
     32296  0040,4029  PerformedStationClassCodeSequence  no
     32297  0040,4030  PerformedStationGeogLocCodeSeq     no
     32298  0040,4031  RequestedSubsequentWorkItemCodeSeq no
     32299  0040,4032  NonDICOMOutputCodeSequence         no
     32300  0040,4033  OutputInformationSequence          no
     32301  0040,4034  ScheduledHumanPerformersSequence   no
     32302  0040,4035  ActualHumanPerformersSequence      no
     32303  0040,4036  HumanPerformersOrganization        no
     32304  0040,4037  HumanPerformerName                 no
     32305  0040,4040  RawDataHandling                    no
     32306  0040,8302  EntranceDoseInMilliGy              no
     32307  0040,9094  RefImageRealWorldValueMappingSeq   no
     32308  0040,9096  RealWorldValueMappingSequence      no
     32309  0040,9098  PixelValueMappingCodeSequence      no
     32310  0040,9210  LUTLabel                           no
     32311  0040,9211  RealWorldValueLastValueMapped      no
     32312  0040,9212  RealWorldValueLUTData              no
     32313  0040,9216  RealWorldValueFirstValueMapped     no
     32314  0040,9224  RealWorldValueIntercept            no
     32315  0040,9225  RealWorldValueSlope                no
     32316  0040,A010  RelationshipType                   no
     32317  0040,A027  VerifyingOrganization              no
     32318  0040,A030  VerificationDateTime               no
     32319  0040,A032  ObservationDateTime                no
     32320  0040,A040  ValueType                          no
     32321  0040,A043  ConceptNameCodeSequence            no
     32322  0040,A050  ContinuityOfContent                no
     32323  0040,A073  VerifyingObserverSequence          no
     32324  0040,A075  VerifyingObserverName              no
     32325  0040,A078  AuthorObserverSequence             no
     32326  0040,A07A  ParticipantSequence                no
     32327  0040,A07C  CustodialOrganizationSequence      no
     32328  0040,A080  ParticipationType                  no
     32329  0040,A082  ParticipationDateTime              no
     32330  0040,A084  ObserverType                       no
     32331  0040,A088  VerifyingObserverIdentCodeSequence no
     32332  0040,A090  EquivalentCDADocumentSequence      no
     32333  0040,A0B0  ReferencedWaveformChannels         no
     32334  0040,A120  DateTime                           no
     32335  0040,A121  Date                               no
     32336  0040,A122  Time                               no
     32337  0040,A123  PersonName                         no
     32338  0040,A124  UID                                no
     32339  0040,A130  TemporalRangeType                  no
     32340  0040,A132  ReferencedSamplePositions          no
     32341  0040,A136  ReferencedFrameNumbers             no
     32342  0040,A138  ReferencedTimeOffsets              no
     32343  0040,A13A  ReferencedDateTime                 no
     32344  0040,A160  TextValue                          no
     32345  0040,A168  ConceptCodeSequence                no
     32346  0040,A170  PurposeOfReferenceCodeSequence     no
     32347  0040,A180  AnnotationGroupNumber              no
     32348  0040,A195  ModifierCodeSequence               no
     32349  0040,A300  MeasuredValueSequence              no
     32350  0040,A301  NumericValueQualifierCodeSequence  no
     32351  0040,A30A  NumericValue                       no
     32352  0040,A353  AddressTrial                       no
     32353  0040,A354  TelephoneNumberTrial               no
     32354  0040,A360  PredecessorDocumentsSequence       no
     32355  0040,A370  ReferencedRequestSequence          no
     32356  0040,A372  PerformedProcedureCodeSequence     no
     32357  0040,A375  CurrentRequestedProcEvidenceSeq    no
     32358  0040,A385  PertinentOtherEvidenceSequence     no
     32359  0040,A390  HL7StructuredDocumentRefSeq        no
     32360  0040,A491  CompletionFlag                     no
     32361  0040,A492  CompletionFlagDescription          no
     32362  0040,A493  VerificationFlag                   no
     32363  0040,A494  ArchiveRequested                   no
     32364  0040,A496  PreliminaryFlag                    no
     32365  0040,A504  ContentTemplateSequence            no
     32366  0040,A525  IdenticalDocumentsSequence         no
     32367  0040,A730  ContentSequence                    no
     32368  0040,B020  AnnotationSequence                 no
     32369  0040,DB00  TemplateIdentifier                 no
     32370  0040,DB06  TemplateVersion                    no
     32371  0040,DB07  TemplateLocalVersion               no
     32372  0040,DB0B  TemplateExtensionFlag              no
     32373  0040,DB0C  TemplateExtensionOrganizationUID   no
     32374  0040,DB0D  TemplateExtensionCreatorUID        no
     32375  0040,DB73  ReferencedContentItemIdentifier    no
     32376  0040,E001  HL7InstanceIdentifier              no
     32377  0040,E004  HL7DocumentEffectiveTime           no
     32378  0040,E006  HL7DocumentTypeCodeSequence        no
     32379  0040,E010  RetrieveURI                        no
     32380  0040,E011  RetrieveLocationUID                no
     32381  0042,0010  DocumentTitle                      no
     32382  0042,0011  EncapsulatedDocument               no
     32383  0042,0012  MIMETypeOfEncapsulatedDocument     no
     32384  0042,0013  SourceInstanceSequence             no
     32385  0042,0014  ListOfMIMETypes                    no
     32386  0043,1001  BitmapOfPrescanOptions             no
     32387  0043,1002  GradientOffsetInX                  no
     32388  0043,1003  GradientOffsetInY                  no
     32389  0043,1004  GradientOffsetInZ                  no
     32390  0043,1005  ImgIsOriginalOrUnoriginal          no
     32391  0043,1006  NumberOfEPIShots                   no
     32392  0043,1007  ViewsPerSegment                    no
     32393  0043,1008  RespiratoryRateBpm                 no
     32394  0043,1009  RespiratoryTriggerPoint            no
     32395  0043,100A  TypeOfReceiverUsed                 no
     32396  0043,100B  PeakRateOfChangeOfGradientField    no
     32397  0043,100C  LimitsInUnitsOfPercent             no
     32398  0043,100D  PSDEstimatedLimit                  no
     32399  0043,100E  PSDEstimatedLimitInTeslaPerSecond  no
     32400  0043,100F  Saravghead                         no
     32401  0043,1010  WindowValue                        no
     32402  0043,1011  TotalInputViews                    no
     32403  0043,1012  X-RayChain                         no
     32404  0043,1013  DeconKernelParameters              no
     32405  0043,1014  CalibrationParameters              no
     32406  0043,1015  TotalOutputViews                   no
     32407  0043,1016  NumberOfOverranges                 no
     32408  0043,1017  IBHImageScaleFactors               no
     32409  0043,1018  BBHCoefficients                    no
     32410  0043,1019  NumberOfBBHChainsToBlend           no
     32411  0043,101A  StartingChannelNumber              no
     32412  0043,101B  PpscanParameters                   no
     32413  0043,101C  GEImageIntegrity                   no
     32414  0043,101D  LevelValue                         no
     32415  0043,101E  DeltaStartTime                     no
     32416  0043,101F  MaxOverrangesInAView               no
     32417  0043,1020  AvgOverrangesAllViews              no
     32418  0043,1021  CorrectedAfterGlowTerms            no
     32419  0043,1025  ReferenceChannels                  no
     32420  0043,1026  NoViewsRefChansBlocked             no
     32421  0043,1027  ScanPitchRatio                     no
     32422  0043,1028  UniqueImageIden                    no
     32423  0043,1029  HistogramTables                    no
     32424  0043,102A  UserDefinedData                    no
     32425  0043,102B  PrivateScanOptions                 no
     32426  0043,102C  EffectiveEchoSpacing               no
     32427  0043,102D  StringSlopField1                   no
     32428  0043,102E  StringSlopField2                   no
     32429  0043,102F  RawDataType                        no
     32430  0043,1030  RawDataType                        no
     32431  0043,1031  RACordOfTargetReconCenter          no
     32432  0043,1032  RawDataType                        no
     32433  0043,1033  NegScanspacing                     no
     32434  0043,1034  OffsetFrequency                    no
     32435  0043,1035  UserUsageTag                       no
     32436  0043,1036  UserFillMapMSW                     no
     32437  0043,1037  UserFillMapLSW                     no
     32438  0043,1038  User25-48                          no
     32439  0043,1039  SlopInt6-9                         no
     32440  0043,1040  TriggerOnPosition                  no
     32441  0043,1041  DegreeOfRotation                   no
     32442  0043,1042  DASTriggerSource                   no
     32443  0043,1043  DASFpaGain                         no
     32444  0043,1044  DASOutputSource                    no
     32445  0043,1045  DASAdInput                         no
     32446  0043,1046  DASCalMode                         no
     32447  0043,1047  DASCalFrequency                    no
     32448  0043,1048  DASRegXm                           no
     32449  0043,1049  DASAutoZero                        no
     32450  0043,104A  StartingChannelOfView              no
     32451  0043,104B  DASXmPattern                       no
     32452  0043,104C  TGGCTriggerMode                    no
     32453  0043,104D  StartScanToXrayOnDelay             no
     32454  0043,104E  DurationOfXrayOn                   no
     32455  0043,1060  SlopInt10-17                       no
     32456  0043,1061  ScannerStudyEntityUID              no
     32457  0043,1062  ScannerStudyID                     no
     32458  0043,106f  ScannerTableEntry                  no
     32459  0044,0001  ProductPackageIdentifier           no
     32460  0044,0002  SubstanceAdministrationApproval    no
     32461  0044,0003  ApprovalStatusFurtherDescription   no
     32462  0044,0004  ApprovalStatusDateTime             no
     32463  0044,0007  ProductTypeCodeSequence            no
     32464  0044,0008  ProductName                        no
     32465  0044,0009  ProductDescription                 no
     32466  0044,000A  ProductLotIdentifier               no
     32467  0044,000B  ProductExpirationDateTime          no
     32468  0044,0010  SubstanceAdministrationDateTime    no
     32469  0044,0011  SubstanceAdministrationNotes       no
     32470  0044,0012  SubstanceAdministrationDeviceID    no
     32471  0044,0013  ProductParameterSequence           no
     32472  0044,0019  SubstanceAdminParameterSeq         no
     32473  0045,1001  NumberOfMacroRowsInDetector        no
     32474  0045,1002  MacroWidthAtISOCenter              no
     32475  0045,1003  DASType                            no
     32476  0045,1004  DASGain                            no
     32477  0045,1005  DASTemperature                     no
     32478  0045,1006  TableDirectionInOrOut              no
     32479  0045,1007  ZSmoothingFactor                   no
     32480  0045,1008  ViewWeightingMode                  no
     32481  0045,1009  SigmaRowNumberWhichRowsWereUsed    no
     32482  0045,100A  MinimumDasValueFoundInTheScanData  no
     32483  0045,100B  MaximumOffsetShiftValueUsed        no
     32484  0045,100C  NumberOfViewsShifted               no
     32485  0045,100D  ZTrackingFlag                      no
     32486  0045,100E  MeanZError                         no
     32487  0045,100F  ZTrackingMaximumError              no
     32488  0045,1010  StartingViewForRow2a               no
     32489  0045,1011  NumberOfViewsInRow2a               no
     32490  0045,1012  StartingViewForRow1a               no
     32491  0045,1013  SigmaMode                          no
     32492  0045,1014  NumberOfViewsInRow1a               no
     32493  0045,1015  StartingViewForRow2b               no
     32494  0045,1016  NumberOfViewsInRow2b               no
     32495  0045,1017  StartingViewForRow1b               no
     32496  0045,1018  NumberOfViewsInRow1b               no
     32497  0045,1019  AirFilterCalibrationDate           no
     32498  0045,101A  AirFilterCalibrationTime           no
     32499  0045,101B  PhantomCalibrationDate             no
     32500  0045,101C  PhantomCalibrationTime             no
     32501  0045,101D  ZSlopeCalibrationDate              no
     32502  0045,101E  ZSlopeCalibrationTime              no
     32503  0045,101F  CrosstalkCalibrationDate           no
     32504  0045,1020  CrosstalkCalibrationTime           no
     32505  0045,1021  IterboneOptionFlag                 no
     32506  0045,1022  PeristalticFlagOption              no
     32507  0046,0012  LensDescription                    no
     32508  0046,0014  RightLensSequence                  no
     32509  0046,0015  LeftLensSequence                   no
     32510  0046,0018  CylinderSequence                   no
     32511  0046,0028  PrismSequence                      no
     32512  0046,0030  HorizontalPrismPower               no
     32513  0046,0032  HorizontalPrismBase                no
     32514  0046,0034  VerticalPrismPower                 no
     32515  0046,0036  VerticalPrismBase                  no
     32516  0046,0038  LensSegmentType                    no
     32517  0046,0040  OpticalTransmittance               no
     32518  0046,0042  ChannelWidth                       no
     32519  0046,0044  PupilSize                          no
     32520  0046,0046  CornealSize                        no
     32521  0046,0060  DistancePupillaryDistance          no
     32522  0046,0062  NearPupillaryDistance              no
     32523  0046,0064  OtherPupillaryDistance             no
     32524  0046,0075  RadiusOfCurvature                  no
     32525  0046,0076  KeratometricPower                  no
     32526  0046,0077  KeratometricAxis                   no
     32527  0046,0092  BackgroundColor                    no
     32528  0046,0094  Optotype                           no
     32529  0046,0095  OptotypePresentation               no
     32530  0046,0100  AddNearSequence                    no
     32531  0046,0101  AddIntermediateSequence            no
     32532  0046,0102  AddOtherSequence                   no
     32533  0046,0104  AddPower                           no
     32534  0046,0106  ViewingDistance                    no
     32535  0046,0125  ViewingDistanceType                no
     32536  0046,0135  VisualAcuityModifiers              no
     32537  0046,0137  DecimalVisualAcuity                no
     32538  0046,0139  OptotypeDetailedDefinition         no
     32539  0046,0146  SpherePower                        no
     32540  0046,0147  CylinderPower                      no
     32541  0050,0004  CalibrationImage                   no
     32542  0050,0010  DeviceSequence                     no
     32543  0050,0014  DeviceLength                       no
     32544  0050,0015  ContainerComponentWidth            no
     32545  0050,0016  DeviceDiameter                     no
     32546  0050,0017  DeviceDiameterUnits                no
     32547  0050,0018  DeviceVolume                       no
     32548  0050,0019  InterMarkerDistance                no
     32549  0050,001B  ContainerComponentID               no
     32550  0050,0020  DeviceDescription                  no
     32551  0054,0010  EnergyWindowVector                 no
     32552  0054,0011  NumberOfEnergyWindows              no
     32553  0054,0012  EnergyWindowInformationSequence    no
     32554  0054,0013  EnergyWindowRangeSequence          no
     32555  0054,0014  EnergyWindowLowerLimit             no
     32556  0054,0015  EnergyWindowUpperLimit             no
     32557  0054,0016  RadiopharmaceuticalInformationSeq  no
     32558  0054,0017  ResidualSyringeCounts              no
     32559  0054,0018  EnergyWindowName                   no
     32560  0054,0020  DetectorVector                     no
     32561  0054,0021  NumberOfDetectors                  no
     32562  0054,0022  DetectorInformationSequence        no
     32563  0054,0030  PhaseVector                        no
     32564  0054,0031  NumberOfPhases                     no
     32565  0054,0032  PhaseInformationSequence           no
     32566  0054,0033  NumberOfFramesInPhase              no
     32567  0054,0036  PhaseDelay                         no
     32568  0054,0038  PauseBetweenFrames                 no
     32569  0054,0039  PhaseDescription                   no
     32570  0054,0050  RotationVector                     no
     32571  0054,0051  NumberOfRotations                  no
     32572  0054,0052  RotationInformationSequence        no
     32573  0054,0053  NumberOfFramesInRotation           no
     32574  0054,0060  RRIntervalVector                   no
     32575  0054,0061  NumberOfRRIntervals                no
     32576  0054,0062  GatedInformationSequence           no
     32577  0054,0063  DataInformationSequence            no
     32578  0054,0070  TimeSlotVector                     no
     32579  0054,0071  NumberOfTimeSlots                  no
     32580  0054,0072  TimeSlotInformationSequence        no
     32581  0054,0073  TimeSlotTime                       no
     32582  0054,0080  SliceVector                        no
     32583  0054,0081  NumberOfSlices                     no
     32584  0054,0090  AngularViewVector                  no
     32585  0054,0100  TimeSliceVector                    no
     32586  0054,0101  NumberOfTimeSlices                 no
     32587  0054,0200  StartAngle                         no
     32588  0054,0202  TypeOfDetectorMotion               no
     32589  0054,0210  TriggerVector                      no
     32590  0054,0211  NumberOfTriggersInPhase            no
     32591  0054,0220  ViewCodeSequence                   no
     32592  0054,0222  ViewModifierCodeSequence           no
     32593  0054,0300  RadionuclideCodeSequence           no
     32594  0054,0302  AdministrationRouteCodeSequence    no
     32595  0054,0304  RadiopharmaceuticalCodeSequence    no
     32596  0054,0306  CalibrationDataSequence            no
     32597  0054,0308  EnergyWindowNumber                 no
     32598  0054,0400  ImageID                            no
     32599  0054,0410  PatientOrientationCodeSequence     no
     32600  0054,0412  PatientOrientationModifierCodeSeq  no
     32601  0054,0414  PatientGantryRelationshipCodeSeq   no
     32602  0054,0500  SliceProgressionDirection          no
     32603  0054,1000  SeriesType                         no
     32604  0054,1001  Units                              no
     32605  0054,1002  CountsSource                       no
     32606  0054,1004  ReprojectionMethod                 no
     32607  0054,1100  RandomsCorrectionMethod            no
     32608  0054,1101  AttenuationCorrectionMethod        no
     32609  0054,1102  DecayCorrection                    no
     32610  0054,1103  ReconstructionMethod               no
     32611  0054,1104  DetectorLinesOfResponseUsed        no
     32612  0054,1105  ScatterCorrectionMethod            no
     32613  0054,1200  AxialAcceptance                    no
     32614  0054,1201  AxialMash                          no
     32615  0054,1202  TransverseMash                     no
     32616  0054,1203  DetectorElementSize                no
     32617  0054,1210  CoincidenceWindowWidth             no
     32618  0054,1220  SecondaryCountsType                no
     32619  0054,1300  FrameReferenceTime                 no
     32620  0054,1310  PrimaryCountsAccumulated           no
     32621  0054,1311  SecondaryCountsAccumulated         no
     32622  0054,1320  SliceSensitivityFactor             no
     32623  0054,1321  DecayFactor                        no
     32624  0054,1322  DoseCalibrationFactor              no
     32625  0054,1323  ScatterFractionFactor              no
     32626  0054,1324  DeadTimeFactor                     no
     32627  0054,1330  ImageIndex                         no
     32628  0054,1400  CountsIncluded                     no
     32629  0054,1401  DeadTimeCorrectionFlag             no
     32630  0060,3000  HistogramSequence                  no
     32631  0060,3002  HistogramNumberOfBins              no
     32632  0060,3004  HistogramFirstBinValue             no
     32633  0060,3006  HistogramLastBinValue              no
     32634  0060,3008  HistogramBinWidth                  no
     32635  0060,3010  HistogramExplanation               no
     32636  0060,3020  HistogramData                      no
     32637  0062,0001  SegmentationType                   no
     32638  0062,0002  SegmentSequence                    no
     32639  0062,0003  SegmentedPropertyCategoryCodeSeq   no
     32640  0062,0004  SegmentNumber                      no
     32641  0062,0005  SegmentLabel                       no
     32642  0062,0006  SegmentDescription                 no
     32643  0062,0008  SegmentAlgorithmType               no
     32644  0062,0009  SegmentAlgorithmName               no
     32645  0062,000A  SegmentIdentificationSequence      no
     32646  0062,000B  ReferencedSegmentNumber            no
     32647  0062,000C  RecommendedDisplayGrayscaleValue   no
     32648  0062,000D  RecommendedDisplayCIELabValue      no
     32649  0062,000E  MaximumFractionalValue             no
     32650  0062,000F  SegmentedPropertyTypeCodeSequence  no
     32651  0062,0010  SegmentationFractionalType         no
     32652  0064,0002  DeformableRegistrationSequence     no
     32653  0064,0003  SourceFrameOfReferenceUID          no
     32654  0064,0005  DeformableRegistrationGridSequence no
     32655  0064,0007  GridDimensions                     no
     32656  0064,0008  GridResolution                     no
     32657  0064,0009  VectorGridData                     no
     32658  0064,000F  PreDeformationMatrixRegistSeq      no
     32659  0064,0010  PostDeformationMatrixRegistSeq     no
     32660  0066,0001  NumberOfSurfaces                   no
     32661  0066,0002  SurfaceSequence                    no
     32662  0066,0003  SurfaceNumber                      no
     32663  0066,0004  SurfaceComments                    no
     32664  0066,0009  SurfaceProcessing                  no
     32665  0066,000A  SurfaceProcessingRatio             no
     32666  0066,000E  FiniteVolume                       no
     32667  0066,0010  Manifold                           no
     32668  0066,0011  SurfacePointsSequence              no
     32669  0066,0015  NumberOfSurfacePoints              no
     32670  0066,0016  PointCoordinatesData               no
     32671  0066,0017  PointPositionAccuracy              no
     32672  0066,0018  MeanPointDistance                  no
     32673  0066,0019  MaximumPointDistance               no
     32674  0066,001B  AxisOfRotation                     no
     32675  0066,001C  CenterOfRotation                   no
     32676  0066,001E  NumberOfVectors                    no
     32677  0066,001F  VectorDimensionality               no
     32678  0066,0020  VectorAccuracy                     no
     32679  0066,0021  VectorCoordinateData               no
     32680  0066,0023  TrianglePointIndexList             no
     32681  0066,0024  EdgePointIndexList                 no
     32682  0066,0025  VertexPointIndexList               no
     32683  0066,0026  TriangleStripSequence              no
     32684  0066,0027  TriangleFanSequence                no
     32685  0066,0028  LineSequence                       no
     32686  0066,0029  PrimitivePointIndexList            no
     32687  0066,002A  SurfaceCount                       no
     32688  0066,002F  AlgorithmFamilyCodeSequ            no
     32689  0066,0031  AlgorithmVersion                   no
     32690  0066,0032  AlgorithmParameters                no
     32691  0066,0034  FacetSequence                      no
     32692  0066,0036  AlgorithmName                      no
     32693  0070,0001  GraphicAnnotationSequence          no
     32694  0070,0002  GraphicLayer                       no
     32695  0070,0003  BoundingBoxAnnotationUnits         no
     32696  0070,0004  AnchorPointAnnotationUnits         no
     32697  0070,0005  GraphicAnnotationUnits             no
     32698  0070,0006  UnformattedTextValue               no
     32699  0070,0008  TextObjectSequence                 no
     32700  0070,0009  GraphicObjectSequence              no
     32701  0070,0010  BoundingBoxTopLeftHandCorner       no
     32702  0070,0011  BoundingBoxBottomRightHandCorner   no
     32703  0070,0012  BoundingBoxTextHorizJustification  no
     32704  0070,0014  AnchorPoint                        no
     32705  0070,0015  AnchorPointVisibility              no
     32706  0070,0020  GraphicDimensions                  no
     32707  0070,0021  NumberOfGraphicPoints              no
     32708  0070,0022  GraphicData                        no
     32709  0070,0023  GraphicType                        no
     32710  0070,0024  GraphicFilled                      no
     32711  0070,0040  ImageRotationRetired               no
     32712  0070,0041  ImageHorizontalFlip                no
     32713  0070,0042  ImageRotation                      no
     32714  0070,0050  DisplayedAreaTopLeftTrial          no
     32715  0070,0051  DisplayedAreaBottomRightTrial      no
     32716  0070,0052  DisplayedAreaTopLeft               no
     32717  0070,0053  DisplayedAreaBottomRight           no
     32718  0070,005A  DisplayedAreaSelectionSequence     no
     32719  0070,0060  GraphicLayerSequence               no
     32720  0070,0062  GraphicLayerOrder                  no
     32721  0070,0066  GraphicLayerRecDisplayGraysclValue no
     32722  0070,0067  GraphicLayerRecDisplayRGBValue     no
     32723  0070,0068  GraphicLayerDescription            no
     32724  0070,0080  ContentLabel                       no
     32725  0070,0081  ContentDescription                 no
     32726  0070,0082  PresentationCreationDate           no
     32727  0070,0083  PresentationCreationTime           no
     32728  0070,0084  ContentCreatorName                 no
     32729  0070,0086  ContentCreatorIDCodeSequence       no
     32730  0070,0100  PresentationSizeMode               no
     32731  0070,0101  PresentationPixelSpacing           no
     32732  0070,0102  PresentationPixelAspectRatio       no
     32733  0070,0103  PresentationPixelMagRatio          no
     32734  0070,0306  ShapeType                          no
     32735  0070,0308  RegistrationSequence               no
     32736  0070,0309  MatrixRegistrationSequence         no
     32737  0070,030A  MatrixSequence                     no
     32738  0070,030C  FrameOfRefTransformationMatrixType no
     32739  0070,030D  RegistrationTypeCodeSequence       no
     32740  0070,030F  FiducialDescription                no
     32741  0070,0310  FiducialIdentifier                 no
     32742  0070,0311  FiducialIdentifierCodeSequence     no
     32743  0070,0312  ContourUncertaintyRadius           no
     32744  0070,0314  UsedFiducialsSequence              no
     32745  0070,0318  GraphicCoordinatesDataSequence     no
     32746  0070,031A  FiducialUID                        no
     32747  0070,031C  FiducialSetSequence                no
     32748  0070,031E  FiducialSequence                   no
     32749  0070,0401  GraphicLayerRecomDisplayCIELabVal  no
     32750  0070,0402  BlendingSequence                   no
     32751  0070,0403  RelativeOpacity                    no
     32752  0070,0404  ReferencedSpatialRegistrationSeq   no
     32753  0070,0405  BlendingPosition                   no
     32754  0072,0002  HangingProtocolName                no
     32755  0072,0004  HangingProtocolDescription         no
     32756  0072,0006  HangingProtocolLevel               no
     32757  0072,0008  HangingProtocolCreator             no
     32758  0072,000A  HangingProtocolCreationDateTime    no
     32759  0072,000C  HangingProtocolDefinitionSequence  no
     32760  0072,000E  HangingProtocolUserIDCodeSequence  no
     32761  0072,0010  HangingProtocolUserGroupName       no
     32762  0072,0012  SourceHangingProtocolSequence      no
     32763  0072,0014  NumberOfPriorsReferenced           no
     32764  0072,0020  ImageSetsSequence                  no
     32765  0072,0022  ImageSetSelectorSequence           no
     32766  0072,0024  ImageSetSelectorUsageFlag          no
     32767  0072,0026  SelectorAttribute                  no
     32768  0072,0028  SelectorValueNumber                no
     32769  0072,0030  TimeBasedImageSetsSequence         no
     32770  0072,0032  ImageSetNumber                     no
     32771  0072,0034  ImageSetSelectorCategory           no
     32772  0072,0038  RelativeTime                       no
     32773  0072,003A  RelativeTimeUnits                  no
     32774  0072,003C  AbstractPriorValue                 no
     32775  0072,003E  AbstractPriorCodeSequence          no
     32776  0072,0040  ImageSetLabel                      no
     32777  0072,0050  SelectorAttributeVR                no
     32778  0072,0052  SelectorSequencePointer            no
     32779  0072,0054  SelectorSeqPointerPrivateCreator   no
     32780  0072,0056  SelectorAttributePrivateCreator    no
     32781  0072,0060  SelectorATValue                    no
     32782  0072,0062  SelectorCSValue                    no
     32783  0072,0064  SelectorISValue                    no
     32784  0072,0066  SelectorLOValue                    no
     32785  0072,0068  SelectorLTValue                    no
     32786  0072,006A  SelectorPNValue                    no
     32787  0072,006C  SelectorSHValue                    no
     32788  0072,006E  SelectorSTValue                    no
     32789  0072,0070  SelectorUTValue                    no
     32790  0072,0072  SelectorDSValue                    no
     32791  0072,0074  SelectorFDValue                    no
     32792  0072,0076  SelectorFLValue                    no
     32793  0072,0078  SelectorULValue                    no
     32794  0072,007A  SelectorUSValue                    no
     32795  0072,007C  SelectorSLValue                    no
     32796  0072,007E  SelectorSSValue                    no
     32797  0072,0080  SelectorCodeSequenceValue          no
     32798  0072,0100  NumberOfScreens                    no
     32799  0072,0102  NominalScreenDefinitionSequence    no
     32800  0072,0104  NumberOfVerticalPixels             no
     32801  0072,0106  NumberOfHorizontalPixels           no
     32802  0072,0108  DisplayEnvironmentSpatialPosition  no
     32803  0072,010A  ScreenMinimumGrayscaleBitDepth     no
     32804  0072,010C  ScreenMinimumColorBitDepth         no
     32805  0072,010E  ApplicationMaximumRepaintTime      no
     32806  0072,0200  DisplaySetsSequence                no
     32807  0072,0202  DisplaySetNumber                   no
     32808  0072,0203  DisplaySetLabel                    no
     32809  0072,0204  DisplaySetPresentationGroup        no
     32810  0072,0206  DisplaySetPresentationGroupDescr   no
     32811  0072,0208  PartialDataDisplayHandling         no
     32812  0072,0210  SynchronizedScrollingSequence      no
     32813  0072,0212  DisplaySetScrollingGroup           no
     32814  0072,0214  NavigationIndicatorSequence        no
     32815  0072,0216  NavigationDisplaySet               no
     32816  0072,0218  ReferenceDisplaySets               no
     32817  0072,0300  ImageBoxesSequence                 no
     32818  0072,0302  ImageBoxNumber                     no
     32819  0072,0304  ImageBoxLayoutType                 no
     32820  0072,0306  ImageBoxTileHorizontalDimension    no
     32821  0072,0308  ImageBoxTileVerticalDimension      no
     32822  0072,0310  ImageBoxScrollDirection            no
     32823  0072,0312  ImageBoxSmallScrollType            no
     32824  0072,0314  ImageBoxSmallScrollAmount          no
     32825  0072,0316  ImageBoxLargeScrollType            no
     32826  0072,0318  ImageBoxLargeScrollAmount          no
     32827  0072,0320  ImageBoxOverlapPriority            no
     32828  0072,0330  CineRelativeToRealTime             no
     32829  0072,0400  FilterOperationsSequence           no
     32830  0072,0402  FilterByCategory                   no
     32831  0072,0404  FilterByAttributePresence          no
     32832  0072,0406  FilterByOperator                   no
     32833  0072,0432  SynchronizedImageBoxList           no
     32834  0072,0434  TypeOfSynchronization              no
     32835  0072,0500  BlendingOperationType              no
     32836  0072,0510  ReformattingOperationType          no
     32837  0072,0512  ReformattingThickness              no
     32838  0072,0514  ReformattingInterval               no
     32839  0072,0516  ReformattingOpInitialViewDir       no
     32840  0072,0520  RenderingType3D                    no
     32841  0072,0600  SortingOperationsSequence          no
     32842  0072,0602  SortByCategory                     no
     32843  0072,0604  SortingDirection                   no
     32844  0072,0700  DisplaySetPatientOrientation       no
     32845  0072,0702  VOIType                            no
     32846  0072,0704  PseudoColorType                    no
     32847  0072,0706  ShowGrayscaleInverted              no
     32848  0072,0710  ShowImageTrueSizeFlag              no
     32849  0072,0712  ShowGraphicAnnotationFlag          no
     32850  0072,0714  ShowPatientDemographicsFlag        no
     32851  0072,0716  ShowAcquisitionTechniquesFlag      no
     32852  0072,0717  DisplaySetHorizontalJustification  no
     32853  0072,0718  DisplaySetVerticalJustification    no
     32854  0074,1000  UnifiedProcedureStepState          no
     32855  0074,1002  UPSProgressInformationSequence     no
     32856  0074,1004  UnifiedProcedureStepProgress       no
     32857  0074,1006  UnifiedProcedureStepProgressDescr  no
     32858  0074,1008  UnifiedProcedureStepComURISeq      no
     32859  0074,100a  ContactURI                         no
     32860  0074,100c  ContactDisplayName                 no
     32861  0074,1020  BeamTaskSequence                   no
     32862  0074,1022  BeamTaskType                       no
     32863  0074,1024  BeamOrderIndex                     no
     32864  0074,1030  DeliveryVerificationImageSequence  no
     32865  0074,1032  VerificationImageTiming            no
     32866  0074,1034  DoubleExposureFlag                 no
     32867  0074,1036  DoubleExposureOrdering             no
     32868  0074,1038  DoubleExposureMeterset             no
     32869  0074,103A  DoubleExposureFieldDelta           no
     32870  0074,1040  RelatedReferenceRTImageSequence    no
     32871  0074,1042  GeneralMachineVerificationSequence no
     32872  0074,1044  ConventionalMachineVerificationSeq no
     32873  0074,1046  IonMachineVerificationSequence     no
     32874  0074,1048  FailedAttributesSequence           no
     32875  0074,104A  OverriddenAttributesSequence       no
     32876  0074,104C  ConventionalControlPointVerifySeq  no
     32877  0074,104E  IonControlPointVerificationSeq     no
     32878  0074,1050  AttributeOccurrenceSequence        no
     32879  0074,1052  AttributeOccurrencePointer         no
     32880  0074,1054  AttributeItemSelector              no
     32881  0074,1056  AttributeOccurrencePrivateCreator  no
     32882  0074,1200  ScheduledProcedureStepPriority     no
     32883  0074,1202  WorklistLabel                      no
     32884  0074,1204  ProcedureStepLabel                 no
     32885  0074,1210  ScheduledProcessingParametersSeq   no
     32886  0074,1212  PerformedProcessingParametersSeq   no
     32887  0074,1216  UPSPerformedProcedureSequence      no
     32888  0074,1220  RelatedProcedureStepSequence       no
     32889  0074,1222  ProcedureStepRelationshipType      no
     32890  0074,1230  DeletionLock                       no
     32891  0074,1234  ReceivingAE                        no
     32892  0074,1236  RequestingAE                       no
     32893  0074,1238  ReasonForCancellation              no
     32894  0074,1242  SCPStatus                          no
     32895  0074,1244  SubscriptionListStatus             no
     32896  0074,1246  UPSListStatus                      no
     32897  0088,0130  StorageMediaFileSetID              no
     32898  0088,0140  StorageMediaFileSetUID             no
     32899  0088,0200  IconImageSequence                  no
     32900  0088,0904  TopicTitle                         no
     32901  0088,0906  TopicSubject                       no
     32902  0088,0910  TopicAuthor                        no
     32903  0088,0912  TopicKeywords                      no
     32904  0100,0410  SOPInstanceStatus                  no
     32905  0100,0420  SOPAuthorizationDateAndTime        no
     32906  0100,0424  SOPAuthorizationComment            no
     32907  0100,0426  AuthorizationEquipmentCertNumber   no
     32908  0400,0005  MACIDNumber                        no
     32909  0400,0010  MACCalculationTransferSyntaxUID    no
     32910  0400,0015  MACAlgorithm                       no
     32911  0400,0020  DataElementsSigned                 no
     32912  0400,0100  DigitalSignatureUID                no
     32913  0400,0105  DigitalSignatureDateTime           no
     32914  0400,0110  CertificateType                    no
     32915  0400,0115  CertificateOfSigner                no
     32916  0400,0120  Signature                          no
     32917  0400,0305  CertifiedTimestampType             no
     32918  0400,0310  CertifiedTimestamp                 no
     32919  0400,0401  DigitalSignaturePurposeCodeSeq     no
     32920  0400,0402  ReferencedDigitalSignatureSeq      no
     32921  0400,0403  ReferencedSOPInstanceMACSeq        no
     32922  0400,0404  MAC                                no
     32923  0400,0500  EncryptedAttributesSequence        no
     32924  0400,0510  EncryptedContentTransferSyntaxUID  no
     32925  0400,0520  EncryptedContent                   no
     32926  0400,0550  ModifiedAttributesSequence         no
     32927  0400,0561  OriginalAttributesSequence         no
     32928  0400,0562  AttributeModificationDateTime      no
     32929  0400,0563  ModifyingSystem                    no
     32930  0400,0564  SourceOfPreviousValues             no
     32931  0400,0565  ReasonForTheAttributeModification  no
     32932  1000,xxx0  EscapeTriplet                      no
     32933  1000,xxx1  RunLengthTriplet                   no
     32934  1000,xxx2  HuffmanTableSize                   no
     32935  1000,xxx3  HuffmanTableTriplet                no
     32936  1000,xxx4  ShiftTableSize                     no
     32937  1000,xxx5  ShiftTableTriplet                  no
     32938  1010,xxxx  ZonalMap                           no
     32939  2000,0010  NumberOfCopies                     no
     32940  2000,001E  PrinterConfigurationSequence       no
     32941  2000,0020  PrintPriority                      no
     32942  2000,0030  MediumType                         no
     32943  2000,0040  FilmDestination                    no
     32944  2000,0050  FilmSessionLabel                   no
     32945  2000,0060  MemoryAllocation                   no
     32946  2000,0061  MaximumMemoryAllocation            no
     32947  2000,0062  ColorImagePrintingFlag             no
     32948  2000,0063  CollationFlag                      no
     32949  2000,0065  AnnotationFlag                     no
     32950  2000,0067  ImageOverlayFlag                   no
     32951  2000,0069  PresentationLUTFlag                no
     32952  2000,006A  ImageBoxPresentationLUTFlag        no
     32953  2000,00A0  MemoryBitDepth                     no
     32954  2000,00A1  PrintingBitDepth                   no
     32955  2000,00A2  MediaInstalledSequence             no
     32956  2000,00A4  OtherMediaAvailableSequence        no
     32957  2000,00A8  SupportedImageDisplayFormatSeq     no
     32958  2000,0500  ReferencedFilmBoxSequence          no
     32959  2000,0510  ReferencedStoredPrintSequence      no
     32960  2010,0010  ImageDisplayFormat                 no
     32961  2010,0030  AnnotationDisplayFormatID          no
     32962  2010,0040  FilmOrientation                    no
     32963  2010,0050  FilmSizeID                         no
     32964  2010,0052  PrinterResolutionID                no
     32965  2010,0054  DefaultPrinterResolutionID         no
     32966  2010,0060  MagnificationType                  no
     32967  2010,0080  SmoothingType                      no
     32968  2010,00A6  DefaultMagnificationType           no
     32969  2010,00A7  OtherMagnificationTypesAvailable   no
     32970  2010,00A8  DefaultSmoothingType               no
     32971  2010,00A9  OtherSmoothingTypesAvailable       no
     32972  2010,0100  BorderDensity                      no
     32973  2010,0110  EmptyImageDensity                  no
     32974  2010,0120  MinDensity                         no
     32975  2010,0130  MaxDensity                         no
     32976  2010,0140  Trim                               no
     32977  2010,0150  ConfigurationInformation           no
     32978  2010,0152  ConfigurationInformationDescr      no
     32979  2010,0154  MaximumCollatedFilms               no
     32980  2010,015E  Illumination                       no
     32981  2010,0160  ReflectedAmbientLight              no
     32982  2010,0376  PrinterPixelSpacing                no
     32983  2010,0500  ReferencedFilmSessionSequence      no
     32984  2010,0510  ReferencedImageBoxSequence         no
     32985  2010,0520  ReferencedBasicAnnotationBoxSeq    no
     32986  2020,0010  ImageBoxPosition                   no
     32987  2020,0020  Polarity                           no
     32988  2020,0030  RequestedImageSize                 no
     32989  2020,0040  RequestedDecimate-CropBehavior     no
     32990  2020,0050  RequestedResolutionID              no
     32991  2020,00A0  RequestedImageSizeFlag             no
     32992  2020,00A2  DecimateCropResult                 no
     32993  2020,0110  BasicGrayscaleImageSequence        no
     32994  2020,0111  BasicColorImageSequence            no
     32995  2020,0130  ReferencedImageOverlayBoxSequence  no
     32996  2020,0140  ReferencedVOILUTBoxSequence        no
     32997  2030,0010  AnnotationPosition                 no
     32998  2030,0020  TextString                         no
     32999  2040,0010  ReferencedOverlayPlaneSequence     no
     33000  2040,0011  ReferencedOverlayPlaneGroups       no
     33001  2040,0020  OverlayPixelDataSequence           no
     33002  2040,0060  OverlayMagnificationType           no
     33003  2040,0070  OverlaySmoothingType               no
     33004  2040,0072  OverlayOrImageMagnification        no
     33005  2040,0074  MagnifyToNumberOfColumns           no
     33006  2040,0080  OverlayForegroundDensity           no
     33007  2040,0082  OverlayBackgroundDensity           no
     33008  2040,0090  OverlayMode                        no
     33009  2040,0100  ThresholdDensity                   no
     33010  2040,0500  ReferencedImageBoxSequence         no
     33011  2050,0010  PresentationLUTSequence            no
     33012  2050,0020  PresentationLUTShape               no
     33013  2050,0500  ReferencedPresentationLUTSequence  no
     33014  2100,0010  PrintJobID                         no
     33015  2100,0020  ExecutionStatus                    no
     33016  2100,0030  ExecutionStatusInfo                no
     33017  2100,0040  CreationDate                       no
     33018  2100,0050  CreationTime                       no
     33019  2100,0070  Originator                         no
     33020  2100,0140  DestinationAE                      no
     33021  2100,0160  OwnerID                            no
     33022  2100,0170  NumberOfFilms                      no
     33023  2100,0500  ReferencedPrintJobSequence         no
     33024  2110,0010  PrinterStatus                      no
     33025  2110,0020  PrinterStatusInfo                  no
     33026  2110,0030  PrinterName                        no
     33027  2110,0099  PrintQueueID                       no
     33028  2120,0010  QueueStatus                        no
     33029  2120,0050  PrintJobDescriptionSequence        no
     33030  2120,0070  ReferencedPrintJobSequence         no
     33031  2130,0010  PrintManagementCapabilitiesSeq     no
     33032  2130,0015  PrinterCharacteristicsSequence     no
     33033  2130,0030  FilmBoxContentSequence             no
     33034  2130,0040  ImageBoxContentSequence            no
     33035  2130,0050  AnnotationContentSequence          no
     33036  2130,0060  ImageOverlayBoxContentSequence     no
     33037  2130,0080  PresentationLUTContentSequence     no
     33038  2130,00A0  ProposedStudySequence              no
     33039  2130,00C0  OriginalImageSequence              no
     33040  2200,0001  LabelFromInfoExtractedFromInstance no
     33041  2200,0002  LabelText                          no
     33042  2200,0003  LabelStyleSelection                no
     33043  2200,0004  MediaDisposition                   no
     33044  2200,0005  BarcodeValue                       no
     33045  2200,0006  BarcodeSymbology                   no
     33046  2200,0007  AllowMediaSplitting                no
     33047  2200,0008  IncludeNonDICOMObjects             no
     33048  2200,0009  IncludeDisplayApplication          no
     33049  2200,000A  SaveCompInstancesAfterMediaCreate  no
     33050  2200,000B  TotalNumberMediaPiecesCreated      no
     33051  2200,000C  RequestedMediaApplicationProfile   no
     33052  2200,000D  ReferencedStorageMediaSequence     no
     33053  2200,000E  FailureAttributes                  no
     33054  2200,000F  AllowLossyCompression              no
     33055  2200,0020  RequestPriority                    no
     33056  3002,0002  RTImageLabel                       no
     33057  3002,0003  RTImageName                        no
     33058  3002,0004  RTImageDescription                 no
     33059  3002,000A  ReportedValuesOrigin               no
     33060  3002,000C  RTImagePlane                       no
     33061  3002,000D  XRayImageReceptorTranslation       no
     33062  3002,000E  XRayImageReceptorAngle             no
     33063  3002,0010  RTImageOrientation                 no
     33064  3002,0011  ImagePlanePixelSpacing             no
     33065  3002,0012  RTImagePosition                    no
     33066  3002,0020  RadiationMachineName               no
     33067  3002,0022  RadiationMachineSAD                no
     33068  3002,0024  RadiationMachineSSD                no
     33069  3002,0026  RTImageSID                         no
     33070  3002,0028  SourceToReferenceObjectDistance    no
     33071  3002,0029  FractionNumber                     no
     33072  3002,0030  ExposureSequence                   no
     33073  3002,0032  MetersetExposure                   no
     33074  3002,0034  DiaphragmPosition                  no
     33075  3002,0040  FluenceMapSequence                 no
     33076  3002,0041  FluenceDataSource                  no
     33077  3002,0042  FluenceDataScale                   no
     33078  3002,0051  FluenceMode                        no
     33079  3002,0052  FluenceModeID                      no
     33080  3004,0001  DVHType                            no
     33081  3004,0002  DoseUnits                          no
     33082  3004,0004  DoseType                           no
     33083  3004,0006  DoseComment                        no
     33084  3004,0008  NormalizationPoint                 no
     33085  3004,000A  DoseSummationType                  no
     33086  3004,000C  GridFrameOffsetVector              no
     33087  3004,000E  DoseGridScaling                    no
     33088  3004,0010  RTDoseROISequence                  no
     33089  3004,0012  DoseValue                          no
     33090  3004,0014  TissueHeterogeneityCorrection      no
     33091  3004,0040  DVHNormalizationPoint              no
     33092  3004,0042  DVHNormalizationDoseValue          no
     33093  3004,0050  DVHSequence                        no
     33094  3004,0052  DVHDoseScaling                     no
     33095  3004,0054  DVHVolumeUnits                     no
     33096  3004,0056  DVHNumberOfBins                    no
     33097  3004,0058  DVHData                            no
     33098  3004,0060  DVHReferencedROISequence           no
     33099  3004,0062  DVHROIContributionType             no
     33100  3004,0070  DVHMinimumDose                     no
     33101  3004,0072  DVHMaximumDose                     no
     33102  3004,0074  DVHMeanDose                        no
     33103  3006,0002  StructureSetLabel                  no
     33104  3006,0004  StructureSetName                   no
     33105  3006,0006  StructureSetDescription            no
     33106  3006,0008  StructureSetDate                   no
     33107  3006,0009  StructureSetTime                   no
     33108  3006,0010  ReferencedFrameOfReferenceSequence no
     33109  3006,0012  RTReferencedStudySequence          no
     33110  3006,0014  RTReferencedSeriesSequence         no
     33111  3006,0016  ContourImageSequence               no
     33112  3006,0020  StructureSetROISequence            no
     33113  3006,0022  ROINumber                          no
     33114  3006,0024  ReferencedFrameOfReferenceUID      no
     33115  3006,0026  ROIName                            no
     33116  3006,0028  ROIDescription                     no
     33117  3006,002A  ROIDisplayColor                    no
     33118  3006,002C  ROIVolume                          no
     33119  3006,0030  RTRelatedROISequence               no
     33120  3006,0033  RTROIRelationship                  no
     33121  3006,0036  ROIGenerationAlgorithm             no
     33122  3006,0038  ROIGenerationDescription           no
     33123  3006,0039  ROIContourSequence                 no
     33124  3006,0040  ContourSequence                    no
     33125  3006,0042  ContourGeometricType               no
     33126  3006,0044  ContourSlabThickness               no
     33127  3006,0045  ContourOffsetVector                no
     33128  3006,0046  NumberOfContourPoints              no
     33129  3006,0048  ContourNumber                      no
     33130  3006,0049  AttachedContours                   no
     33131  3006,0050  ContourData                        no
     33132  3006,0080  RTROIObservationsSequence          no
     33133  3006,0082  ObservationNumber                  no
     33134  3006,0084  ReferencedROINumber                no
     33135  3006,0085  ROIObservationLabel                no
     33136  3006,0086  RTROIIdentificationCodeSequence    no
     33137  3006,0088  ROIObservationDescription          no
     33138  3006,00A0  RelatedRTROIObservationsSequence   no
     33139  3006,00A4  RTROIInterpretedType               no
     33140  3006,00A6  ROIInterpreter                     no
     33141  3006,00B0  ROIPhysicalPropertiesSequence      no
     33142  3006,00B2  ROIPhysicalProperty                no
     33143  3006,00B4  ROIPhysicalPropertyValue           no
     33144  3006,00B6  ROIElementalCompositionSequence    no
     33145  3006,00B7  ROIElementalCompAtomicNumber       no
     33146  3006,00B8  ROIElementalCompAtomicMassFraction no
     33147  3006,00C0  FrameOfReferenceRelationshipSeq    no
     33148  3006,00C2  RelatedFrameOfReferenceUID         no
     33149  3006,00C4  FrameOfReferenceTransformType      no
     33150  3006,00C6  FrameOfReferenceTransformMatrix    no
     33151  3006,00C8  FrameOfReferenceTransformComment   no
     33152  3008,0010  MeasuredDoseReferenceSequence      no
     33153  3008,0012  MeasuredDoseDescription            no
     33154  3008,0014  MeasuredDoseType                   no
     33155  3008,0016  MeasuredDoseValue                  no
     33156  3008,0020  TreatmentSessionBeamSequence       no
     33157  3008,0021  TreatmentSessionIonBeamSequence    no
     33158  3008,0022  CurrentFractionNumber              no
     33159  3008,0024  TreatmentControlPointDate          no
     33160  3008,0025  TreatmentControlPointTime          no
     33161  3008,002A  TreatmentTerminationStatus         no
     33162  3008,002B  TreatmentTerminationCode           no
     33163  3008,002C  TreatmentVerificationStatus        no
     33164  3008,0030  ReferencedTreatmentRecordSequence  no
     33165  3008,0032  SpecifiedPrimaryMeterset           no
     33166  3008,0033  SpecifiedSecondaryMeterset         no
     33167  3008,0036  DeliveredPrimaryMeterset           no
     33168  3008,0037  DeliveredSecondaryMeterset         no
     33169  3008,003A  SpecifiedTreatmentTime             no
     33170  3008,003B  DeliveredTreatmentTime             no
     33171  3008,0040  ControlPointDeliverySequence       no
     33172  3008,0041  IonControlPointDeliverySequence    no
     33173  3008,0042  SpecifiedMeterset                  no
     33174  3008,0044  DeliveredMeterset                  no
     33175  3008,0045  MetersetRateSet                    no
     33176  3008,0046  MetersetRateDelivered              no
     33177  3008,0047  ScanSpotMetersetsDelivered         no
     33178  3008,0048  DoseRateDelivered                  no
     33179  3008,0050  TreatmentSummaryCalcDoseRefSeq     no
     33180  3008,0052  CumulativeDoseToDoseReference      no
     33181  3008,0054  FirstTreatmentDate                 no
     33182  3008,0056  MostRecentTreatmentDate            no
     33183  3008,005A  NumberOfFractionsDelivered         no
     33184  3008,0060  OverrideSequence                   no
     33185  3008,0061  ParameterSequencePointer           no
     33186  3008,0062  OverrideParameterPointer           no
     33187  3008,0063  ParameterItemIndex                 no
     33188  3008,0064  MeasuredDoseReferenceNumber        no
     33189  3008,0065  ParameterPointer                   no
     33190  3008,0066  OverrideReason                     no
     33191  3008,0068  CorrectedParameterSequence         no
     33192  3008,006A  CorrectionValue                    no
     33193  3008,0070  CalculatedDoseReferenceSequence    no
     33194  3008,0072  CalculatedDoseReferenceNumber      no
     33195  3008,0074  CalculatedDoseReferenceDescription no
     33196  3008,0076  CalculatedDoseReferenceDoseValue   no
     33197  3008,0078  StartMeterset                      no
     33198  3008,007A  EndMeterset                        no
     33199  3008,0080  ReferencedMeasuredDoseReferenceSeq no
     33200  3008,0082  ReferencedMeasuredDoseReferenceNum no
     33201  3008,0090  ReferencedCalculatedDoseRefSeq     no
     33202  3008,0092  ReferencedCalculatedDoseRefNumber  no
     33203  3008,00A0  BeamLimitingDeviceLeafPairsSeq     no
     33204  3008,00B0  RecordedWedgeSequence              no
     33205  3008,00C0  RecordedCompensatorSequence        no
     33206  3008,00D0  RecordedBlockSequence              no
     33207  3008,00E0  TreatmentSummaryMeasuredDoseRefSeq no
     33208  3008,00F0  RecordedSnoutSequence              no
     33209  3008,00F2  RecordedRangeShifterSequence       no
     33210  3008,00F4  RecordedLateralSpreadingDeviceSeq  no
     33211  3008,00F6  RecordedRangeModulatorSequence     no
     33212  3008,0100  RecordedSourceSequence             no
     33213  3008,0105  SourceSerialNumber                 no
     33214  3008,0110  TreatmentSessionAppSetupSeq        no
     33215  3008,0116  ApplicationSetupCheck              no
     33216  3008,0120  RecordedBrachyAccessoryDeviceSeq   no
     33217  3008,0122  ReferencedBrachyAccessoryDeviceNum no
     33218  3008,0130  RecordedChannelSequence            no
     33219  3008,0132  SpecifiedChannelTotalTime          no
     33220  3008,0134  DeliveredChannelTotalTime          no
     33221  3008,0136  SpecifiedNumberOfPulses            no
     33222  3008,0138  DeliveredNumberOfPulses            no
     33223  3008,013A  SpecifiedPulseRepetitionInterval   no
     33224  3008,013C  DeliveredPulseRepetitionInterval   no
     33225  3008,0140  RecordedSourceApplicatorSequence   no
     33226  3008,0142  ReferencedSourceApplicatorNumber   no
     33227  3008,0150  RecordedChannelShieldSequence      no
     33228  3008,0152  ReferencedChannelShieldNumber      no
     33229  3008,0160  BrachyControlPointDeliveredSeq     no
     33230  3008,0162  SafePositionExitDate               no
     33231  3008,0164  SafePositionExitTime               no
     33232  3008,0166  SafePositionReturnDate             no
     33233  3008,0168  SafePositionReturnTime             no
     33234  3008,0200  CurrentTreatmentStatus             no
     33235  3008,0202  TreatmentStatusComment             no
     33236  3008,0220  FractionGroupSummarySequence       no
     33237  3008,0223  ReferencedFractionNumber           no
     33238  3008,0224  FractionGroupType                  no
     33239  3008,0230  BeamStopperPosition                no
     33240  3008,0240  FractionStatusSummarySequence      no
     33241  3008,0250  TreatmentDate                      no
     33242  3008,0251  TreatmentTime                      no
     33243  300A,0002  RTPlanLabel                        no
     33244  300A,0003  RTPlanName                         no
     33245  300A,0004  RTPlanDescription                  no
     33246  300A,0006  RTPlanDate                         no
     33247  300A,0007  RTPlanTime                         no
     33248  300A,0009  TreatmentProtocols                 no
     33249  300A,000A  PlanIntent                         no
     33250  300A,000B  TreatmentSites                     no
     33251  300A,000C  RTPlanGeometry                     no
     33252  300A,000E  PrescriptionDescription            no
     33253  300A,0010  DoseReferenceSequence              no
     33254  300A,0012  DoseReferenceNumber                no
     33255  300A,0013  DoseReferenceUID                   no
     33256  300A,0014  DoseReferenceStructureType         no
     33257  300A,0015  NominalBeamEnergyUnit              no
     33258  300A,0016  DoseReferenceDescription           no
     33259  300A,0018  DoseReferencePointCoordinates      no
     33260  300A,001A  NominalPriorDose                   no
     33261  300A,0020  DoseReferenceType                  no
     33262  300A,0021  ConstraintWeight                   no
     33263  300A,0022  DeliveryWarningDose                no
     33264  300A,0023  DeliveryMaximumDose                no
     33265  300A,0025  TargetMinimumDose                  no
     33266  300A,0026  TargetPrescriptionDose             no
     33267  300A,0027  TargetMaximumDose                  no
     33268  300A,0028  TargetUnderdoseVolumeFraction      no
     33269  300A,002A  OrganAtRiskFullVolumeDose          no
     33270  300A,002B  OrganAtRiskLimitDose               no
     33271  300A,002C  OrganAtRiskMaximumDose             no
     33272  300A,002D  OrganAtRiskOverdoseVolumeFraction  no
     33273  300A,0040  ToleranceTableSequence             no
     33274  300A,0042  ToleranceTableNumber               no
     33275  300A,0043  ToleranceTableLabel                no
     33276  300A,0044  GantryAngleTolerance               no
     33277  300A,0046  BeamLimitingDeviceAngleTolerance   no
     33278  300A,0048  BeamLimitingDeviceToleranceSeq     no
     33279  300A,004A  BeamLimitingDevicePositionTol      no
     33280  300A,004B  SnoutPositionTolerance             no
     33281  300A,004C  PatientSupportAngleTolerance       no
     33282  300A,004E  TableTopEccentricAngleTolerance    no
     33283  300A,004F  TableTopPitchAngleTolerance        no
     33284  300A,0050  TableTopRollAngleTolerance         no
     33285  300A,0051  TableTopVerticalPositionTolerance  no
     33286  300A,0052  TableTopLongitudinalPositionTol    no
     33287  300A,0053  TableTopLateralPositionTolerance   no
     33288  300A,0055  RTPlanRelationship                 no
     33289  300A,0070  FractionGroupSequence              no
     33290  300A,0071  FractionGroupNumber                no
     33291  300A,0072  FractionGroupDescription           no
     33292  300A,0078  NumberOfFractionsPlanned           no
     33293  300A,0079  NumberFractionPatternDigitsPerDay  no
     33294  300A,007A  RepeatFractionCycleLength          no
     33295  300A,007B  FractionPattern                    no
     33296  300A,0080  NumberOfBeams                      no
     33297  300A,0082  BeamDoseSpecificationPoint         no
     33298  300A,0084  BeamDose                           no
     33299  300A,0086  BeamMeterset                       no
     33300  300A,0088  BeamDosePointDepth                 no
     33301  300A,0089  BeamDosePointEquivalentDepth       no
     33302  300A,008A  BeamDosePointSSD                   no
     33303  300A,00A0  NumberOfBrachyApplicationSetups    no
     33304  300A,00A2  BrachyAppSetupDoseSpecPoint        no
     33305  300A,00A4  BrachyApplicationSetupDose         no
     33306  300A,00B0  BeamSequence                       no
     33307  300A,00B2  TreatmentMachineName               no
     33308  300A,00B3  PrimaryDosimeterUnit               no
     33309  300A,00B4  SourceAxisDistance                 no
     33310  300A,00B6  BeamLimitingDeviceSequence         no
     33311  300A,00B8  RTBeamLimitingDeviceType           no
     33312  300A,00BA  SourceToBeamLimitingDeviceDistance no
     33313  300A,00BB  IsocenterToBeamLimitingDeviceDist  no
     33314  300A,00BC  NumberOfLeafJawPairs               no
     33315  300A,00BE  LeafPositionBoundaries             no
     33316  300A,00C0  BeamNumber                         no
     33317  300A,00C2  BeamName                           no
     33318  300A,00C3  BeamDescription                    no
     33319  300A,00C4  BeamType                           no
     33320  300A,00C6  RadiationType                      no
     33321  300A,00C7  HighDoseTechniqueType              no
     33322  300A,00C8  ReferenceImageNumber               no
     33323  300A,00CA  PlannedVerificationImageSequence   no
     33324  300A,00CC  ImagingDeviceSpecificAcqParams     no
     33325  300A,00CE  TreatmentDeliveryType              no
     33326  300A,00D0  NumberOfWedges                     no
     33327  300A,00D1  WedgeSequence                      no
     33328  300A,00D2  WedgeNumber                        no
     33329  300A,00D3  WedgeType                          no
     33330  300A,00D4  WedgeID                            no
     33331  300A,00D5  WedgeAngle                         no
     33332  300A,00D6  WedgeFactor                        no
     33333  300A,00D7  TotalWedgeTrayWaterEquivThickness  no
     33334  300A,00D8  WedgeOrientation                   no
     33335  300A,00D9  IsocenterToWedgeTrayDistance       no
     33336  300A,00DA  SourceToWedgeTrayDistance          no
     33337  300A,00DB  WedgeThinEdgePosition              no
     33338  300A,00DC  BolusID                            no
     33339  300A,00DD  BolusDescription                   no
     33340  300A,00E0  NumberOfCompensators               no
     33341  300A,00E1  MaterialID                         no
     33342  300A,00E2  TotalCompensatorTrayFactor         no
     33343  300A,00E3  CompensatorSequence                no
     33344  300A,00E4  CompensatorNumber                  no
     33345  300A,00E5  CompensatorID                      no
     33346  300A,00E6  SourceToCompensatorTrayDistance    no
     33347  300A,00E7  CompensatorRows                    no
     33348  300A,00E8  CompensatorColumns                 no
     33349  300A,00E9  CompensatorPixelSpacing            no
     33350  300A,00EA  CompensatorPosition                no
     33351  300A,00EB  CompensatorTransmissionData        no
     33352  300A,00EC  CompensatorThicknessData           no
     33353  300A,00ED  NumberOfBoli                       no
     33354  300A,00EE  CompensatorType                    no
     33355  300A,00F0  NumberOfBlocks                     no
     33356  300A,00F2  TotalBlockTrayFactor               no
     33357  300A,00F3  TotalBlockTrayWaterEquivThickness  no
     33358  300A,00F4  BlockSequence                      no
     33359  300A,00F5  BlockTrayID                        no
     33360  300A,00F6  SourceToBlockTrayDistance          no
     33361  300A,00F7  IsocenterToBlockTrayDistance       no
     33362  300A,00F8  BlockType                          no
     33363  300A,00F9  AccessoryCode                      no
     33364  300A,00FA  BlockDivergence                    no
     33365  300A,00FB  BlockMountingPosition              no
     33366  300A,00FC  BlockNumber                        no
     33367  300A,00FE  BlockName                          no
     33368  300A,0100  BlockThickness                     no
     33369  300A,0102  BlockTransmission                  no
     33370  300A,0104  BlockNumberOfPoints                no
     33371  300A,0106  BlockData                          no
     33372  300A,0107  ApplicatorSequence                 no
     33373  300A,0108  ApplicatorID                       no
     33374  300A,0109  ApplicatorType                     no
     33375  300A,010A  ApplicatorDescription              no
     33376  300A,010C  CumulativeDoseReferenceCoefficient no
     33377  300A,010E  FinalCumulativeMetersetWeight      no
     33378  300A,0110  NumberOfControlPoints              no
     33379  300A,0111  ControlPointSequence               no
     33380  300A,0112  ControlPointIndex                  no
     33381  300A,0114  NominalBeamEnergy                  no
     33382  300A,0115  DoseRateSet                        no
     33383  300A,0116  WedgePositionSequence              no
     33384  300A,0118  WedgePosition                      no
     33385  300A,011A  BeamLimitingDevicePositionSequence no
     33386  300A,011C  LeafJawPositions                   no
     33387  300A,011E  GantryAngle                        no
     33388  300A,011F  GantryRotationDirection            no
     33389  300A,0120  BeamLimitingDeviceAngle            no
     33390  300A,0121  BeamLimitingDeviceRotateDirection  no
     33391  300A,0122  PatientSupportAngle                no
     33392  300A,0123  PatientSupportRotationDirection    no
     33393  300A,0124  TableTopEccentricAxisDistance      no
     33394  300A,0125  TableTopEccentricAngle             no
     33395  300A,0126  TableTopEccentricRotateDirection   no
     33396  300A,0128  TableTopVerticalPosition           no
     33397  300A,0129  TableTopLongitudinalPosition       no
     33398  300A,012A  TableTopLateralPosition            no
     33399  300A,012C  IsocenterPosition                  no
     33400  300A,012E  SurfaceEntryPoint                  no
     33401  300A,0130  SourceToSurfaceDistance            no
     33402  300A,0134  CumulativeMetersetWeight           no
     33403  300A,0140  TableTopPitchAngle                 no
     33404  300A,0142  TableTopPitchRotationDirection     no
     33405  300A,0144  TableTopRollAngle                  no
     33406  300A,0146  TableTopRollRotationDirection      no
     33407  300A,0148  HeadFixationAngle                  no
     33408  300A,014A  GantryPitchAngle                   no
     33409  300A,014C  GantryPitchRotationDirection       no
     33410  300A,014E  GantryPitchAngleTolerance          no
     33411  300A,0180  PatientSetupSequence               no
     33412  300A,0182  PatientSetupNumber                 no
     33413  300A,0183  PatientSetupLabel                  no
     33414  300A,0184  PatientAdditionalPosition          no
     33415  300A,0190  FixationDeviceSequence             no
     33416  300A,0192  FixationDeviceType                 no
     33417  300A,0194  FixationDeviceLabel                no
     33418  300A,0196  FixationDeviceDescription          no
     33419  300A,0198  FixationDevicePosition             no
     33420  300A,0199  FixationDevicePitchAngle           no
     33421  300A,019A  FixationDeviceRollAngle            no
     33422  300A,01A0  ShieldingDeviceSequence            no
     33423  300A,01A2  ShieldingDeviceType                no
     33424  300A,01A4  ShieldingDeviceLabel               no
     33425  300A,01A6  ShieldingDeviceDescription         no
     33426  300A,01A8  ShieldingDevicePosition            no
     33427  300A,01B0  SetupTechnique                     no
     33428  300A,01B2  SetupTechniqueDescription          no
     33429  300A,01B4  SetupDeviceSequence                no
     33430  300A,01B6  SetupDeviceType                    no
     33431  300A,01B8  SetupDeviceLabel                   no
     33432  300A,01BA  SetupDeviceDescription             no
     33433  300A,01BC  SetupDeviceParameter               no
     33434  300A,01D0  SetupReferenceDescription          no
     33435  300A,01D2  TableTopVerticalSetupDisplacement  no
     33436  300A,01D4  TableTopLongitudinalSetupDisplace  no
     33437  300A,01D6  TableTopLateralSetupDisplacement   no
     33438  300A,0200  BrachyTreatmentTechnique           no
     33439  300A,0202  BrachyTreatmentType                no
     33440  300A,0206  TreatmentMachineSequence           no
     33441  300A,0210  SourceSequence                     no
     33442  300A,0212  SourceNumber                       no
     33443  300A,0214  SourceType                         no
     33444  300A,0216  SourceManufacturer                 no
     33445  300A,0218  ActiveSourceDiameter               no
     33446  300A,021A  ActiveSourceLength                 no
     33447  300A,0222  SourceEncapsulationNomThickness    no
     33448  300A,0224  SourceEncapsulationNomTransmission no
     33449  300A,0226  SourceIsotopeName                  no
     33450  300A,0228  SourceIsotopeHalfLife              no
     33451  300A,0229  SourceStrengthUnits                no
     33452  300A,022A  ReferenceAirKermaRate              no
     33453  300A,022B  SourceStrength                     no
     33454  300A,022C  SourceStrengthReferenceDate        no
     33455  300A,022E  SourceStrengthReferenceTime        no
     33456  300A,0230  ApplicationSetupSequence           no
     33457  300A,0232  ApplicationSetupType               no
     33458  300A,0234  ApplicationSetupNumber             no
     33459  300A,0236  ApplicationSetupName               no
     33460  300A,0238  ApplicationSetupManufacturer       no
     33461  300A,0240  TemplateNumber                     no
     33462  300A,0242  TemplateType                       no
     33463  300A,0244  TemplateName                       no
     33464  300A,0250  TotalReferenceAirKerma             no
     33465  300A,0260  BrachyAccessoryDeviceSequence      no
     33466  300A,0262  BrachyAccessoryDeviceNumber        no
     33467  300A,0263  BrachyAccessoryDeviceID            no
     33468  300A,0264  BrachyAccessoryDeviceType          no
     33469  300A,0266  BrachyAccessoryDeviceName          no
     33470  300A,026A  BrachyAccessoryDeviceNomThickness  no
     33471  300A,026C  BrachyAccessoryDevNomTransmission  no
     33472  300A,0280  ChannelSequence                    no
     33473  300A,0282  ChannelNumber                      no
     33474  300A,0284  ChannelLength                      no
     33475  300A,0286  ChannelTotalTime                   no
     33476  300A,0288  SourceMovementType                 no
     33477  300A,028A  NumberOfPulses                     no
     33478  300A,028C  PulseRepetitionInterval            no
     33479  300A,0290  SourceApplicatorNumber             no
     33480  300A,0291  SourceApplicatorID                 no
     33481  300A,0292  SourceApplicatorType               no
     33482  300A,0294  SourceApplicatorName               no
     33483  300A,0296  SourceApplicatorLength             no
     33484  300A,0298  SourceApplicatorManufacturer       no
     33485  300A,029C  SourceApplicatorWallNomThickness   no
     33486  300A,029E  SourceApplicatorWallNomTrans       no
     33487  300A,02A0  SourceApplicatorStepSize           no
     33488  300A,02A2  TransferTubeNumber                 no
     33489  300A,02A4  TransferTubeLength                 no
     33490  300A,02B0  ChannelShieldSequence              no
     33491  300A,02B2  ChannelShieldNumber                no
     33492  300A,02B3  ChannelShieldID                    no
     33493  300A,02B4  ChannelShieldName                  no
     33494  300A,02B8  ChannelShieldNominalThickness      no
     33495  300A,02BA  ChannelShieldNominalTransmission   no
     33496  300A,02C8  FinalCumulativeTimeWeight          no
     33497  300A,02D0  BrachyControlPointSequence         no
     33498  300A,02D2  ControlPointRelativePosition       no
     33499  300A,02D4  ControlPoint3DPosition             no
     33500  300A,02D6  CumulativeTimeWeight               no
     33501  300A,02E0  CompensatorDivergence              no
     33502  300A,02E1  CompensatorMountingPosition        no
     33503  300A,02E2  SourceToCompensatorDistance        no
     33504  300A,02E3  TotalCompTrayWaterEquivThickness   no
     33505  300A,02E4  IsocenterToCompensatorTrayDistance no
     33506  300A,02E5  CompensatorColumnOffset            no
     33507  300A,02E6  IsocenterToCompensatorDistances    no
     33508  300A,02E7  CompensatorRelStoppingPowerRatio   no
     33509  300A,02E8  CompensatorMillingToolDiameter     no
     33510  300A,02EA  IonRangeCompensatorSequence        no
     33511  300A,02EB  CompensatorDescription             no
     33512  300A,0302  RadiationMassNumber                no
     33513  300A,0304  RadiationAtomicNumber              no
     33514  300A,0306  RadiationChargeState               no
     33515  300A,0308  ScanMode                           no
     33516  300A,030A  VirtualSourceAxisDistances         no
     33517  300A,030C  SnoutSequence                      no
     33518  300A,030D  SnoutPosition                      no
     33519  300A,030F  SnoutID                            no
     33520  300A,0312  NumberOfRangeShifters              no
     33521  300A,0314  RangeShifterSequence               no
     33522  300A,0316  RangeShifterNumber                 no
     33523  300A,0318  RangeShifterID                     no
     33524  300A,0320  RangeShifterType                   no
     33525  300A,0322  RangeShifterDescription            no
     33526  300A,0330  NumberOfLateralSpreadingDevices    no
     33527  300A,0332  LateralSpreadingDeviceSequence     no
     33528  300A,0334  LateralSpreadingDeviceNumber       no
     33529  300A,0336  LateralSpreadingDeviceID           no
     33530  300A,0338  LateralSpreadingDeviceType         no
     33531  300A,033A  LateralSpreadingDeviceDescription  no
     33532  300A,033C  LateralSpreadingDevWaterEquivThick no
     33533  300A,0340  NumberOfRangeModulators            no
     33534  300A,0342  RangeModulatorSequence             no
     33535  300A,0344  RangeModulatorNumber               no
     33536  300A,0346  RangeModulatorID                   no
     33537  300A,0348  RangeModulatorType                 no
     33538  300A,034A  RangeModulatorDescription          no
     33539  300A,034C  BeamCurrentModulationID            no
     33540  300A,0350  PatientSupportType                 no
     33541  300A,0352  PatientSupportID                   no
     33542  300A,0354  PatientSupportAccessoryCode        no
     33543  300A,0356  FixationLightAzimuthalAngle        no
     33544  300A,0358  FixationLightPolarAngle            no
     33545  300A,035A  MetersetRate                       no
     33546  300A,0360  RangeShifterSettingsSequence       no
     33547  300A,0362  RangeShifterSetting                no
     33548  300A,0364  IsocenterToRangeShifterDistance    no
     33549  300A,0366  RangeShifterWaterEquivThickness    no
     33550  300A,0370  LateralSpreadingDeviceSettingsSeq  no
     33551  300A,0372  LateralSpreadingDeviceSetting      no
     33552  300A,0374  IsocenterToLateralSpreadingDevDist no
     33553  300A,0380  RangeModulatorSettingsSequence     no
     33554  300A,0382  RangeModulatorGatingStartValue     no
     33555  300A,0384  RangeModulatorGatingStopValue      no
     33556  300A,038A  IsocenterToRangeModulatorDistance  no
     33557  300A,0390  ScanSpotTuneID                     no
     33558  300A,0392  NumberOfScanSpotPositions          no
     33559  300A,0394  ScanSpotPositionMap                no
     33560  300A,0396  ScanSpotMetersetWeights            no
     33561  300A,0398  ScanningSpotSize                   no
     33562  300A,039A  NumberOfPaintings                  no
     33563  300A,03A0  IonToleranceTableSequence          no
     33564  300A,03A2  IonBeamSequence                    no
     33565  300A,03A4  IonBeamLimitingDeviceSequence      no
     33566  300A,03A6  IonBlockSequence                   no
     33567  300A,03A8  IonControlPointSequence            no
     33568  300A,03AA  IonWedgeSequence                   no
     33569  300A,03AC  IonWedgePositionSequence           no
     33570  300A,0401  ReferencedSetupImageSequence       no
     33571  300A,0402  SetupImageComment                  no
     33572  300A,0410  MotionSynchronizationSequence      no
     33573  300A,0412  ControlPointOrientation            no
     33574  300A,0420  GeneralAccessorySequence           no
     33575  300A,0421  GeneralAccessoryID                 no
     33576  300A,0422  GeneralAccessoryDescription        no
     33577  300A,0423  GeneralAccessoryType               no
     33578  300A,0424  GeneralAccessoryNumber             no
     33579  300C,0002  ReferencedRTPlanSequence           no
     33580  300C,0004  ReferencedBeamSequence             no
     33581  300C,0006  ReferencedBeamNumber               no
     33582  300C,0007  ReferencedReferenceImageNumber     no
     33583  300C,0008  StartCumulativeMetersetWeight      no
     33584  300C,0009  EndCumulativeMetersetWeight        no
     33585  300C,000A  ReferencedBrachyAppSetupSeq        no
     33586  300C,000C  ReferencedBrachyAppSetupNumber     no
     33587  300C,000E  ReferencedSourceNumber             no
     33588  300C,0020  ReferencedFractionGroupSequence    no
     33589  300C,0022  ReferencedFractionGroupNumber      no
     33590  300C,0040  ReferencedVerificationImageSeq     no
     33591  300C,0042  ReferencedReferenceImageSequence   no
     33592  300C,0050  ReferencedDoseReferenceSequence    no
     33593  300C,0051  ReferencedDoseReferenceNumber      no
     33594  300C,0055  BrachyReferencedDoseReferenceSeq   no
     33595  300C,0060  ReferencedStructureSetSequence     no
     33596  300C,006A  ReferencedPatientSetupNumber       no
     33597  300C,0080  ReferencedDoseSequence             no
     33598  300C,00A0  ReferencedToleranceTableNumber     no
     33599  300C,00B0  ReferencedBolusSequence            no
     33600  300C,00C0  ReferencedWedgeNumber              no
     33601  300C,00D0  ReferencedCompensatorNumber        no
     33602  300C,00E0  ReferencedBlockNumber              no
     33603  300C,00F0  ReferencedControlPointIndex        no
     33604  300C,00F2  ReferencedControlPointSequence     no
     33605  300C,00F4  ReferencedStartControlPointIndex   no
     33606  300C,00F6  ReferencedStopControlPointIndex    no
     33607  300C,0100  ReferencedRangeShifterNumber       no
     33608  300C,0102  ReferencedLateralSpreadingDevNum   no
     33609  300C,0104  ReferencedRangeModulatorNumber     no
     33610  300E,0002  ApprovalStatus                     no
     33611  300E,0004  ReviewDate                         no
     33612  300E,0005  ReviewTime                         no
     33613  300E,0008  ReviewerName                       no
     33614  4000,0000  TextGroupLength                    no
     33615  4000,0010  Arbitrary                          no
     33616  4000,4000  TextComments                       no
     33617  4008,0040  ResultsID                          no
     33618  4008,0042  ResultsIDIssuer                    no
     33619  4008,0050  ReferencedInterpretationSequence   no
     33620  4008,0100  InterpretationRecordedDate         no
     33621  4008,0101  InterpretationRecordedTime         no
     33622  4008,0102  InterpretationRecorder             no
     33623  4008,0103  ReferenceToRecordedSound           no
     33624  4008,0108  InterpretationTranscriptionDate    no
     33625  4008,0109  InterpretationTranscriptionTime    no
     33626  4008,010A  InterpretationTranscriber          no
     33627  4008,010B  InterpretationText                 no
     33628  4008,010C  InterpretationAuthor               no
     33629  4008,0111  InterpretationApproverSequence     no
     33630  4008,0112  InterpretationApprovalDate         no
     33631  4008,0113  InterpretationApprovalTime         no
     33632  4008,0114  PhysicianApprovingInterpretation   no
     33633  4008,0115  InterpretationDiagnosisDescription no
     33634  4008,0117  InterpretationDiagnosisCodeSeq     no
     33635  4008,0118  ResultsDistributionListSequence    no
     33636  4008,0119  DistributionName                   no
     33637  4008,011A  DistributionAddress                no
     33638  4008,0200  InterpretationID                   no
     33639  4008,0202  InterpretationIDIssuer             no
     33640  4008,0210  InterpretationTypeID               no
     33641  4008,0212  InterpretationStatusID             no
     33642  4008,0300  Impressions                        no
     33643  4008,4000  ResultsComments                    no
     33644  4FFE,0001  MACParametersSequence              no
     33645  50xx,0005  CurveDimensions                    no
     33646  50xx,0010  NumberOfPoints                     no
     33647  50xx,0020  TypeOfData                         no
     33648  50xx,0022  CurveDescription                   no
     33649  50xx,0030  AxisUnits                          no
     33650  50xx,0040  AxisLabels                         no
     33651  50xx,0103  DataValueRepresentation            no
     33652  50xx,0104  MinimumCoordinateValue             no
     33653  50xx,0105  MaximumCoordinateValue             no
     33654  50xx,0106  CurveRange                         no
     33655  50xx,0110  CurveDataDescriptor                no
     33656  50xx,0112  CoordinateStartValue               no
     33657  50xx,0114  CoordinateStepValue                no
     33658  50xx,1001  CurveActivationLayer               no
     33659  50xx,2000  AudioType                          no
     33660  50xx,2002  AudioSampleFormat                  no
     33661  50xx,2004  NumberOfChannels                   no
     33662  50xx,2006  NumberOfSamples                    no
     33663  50xx,2008  SampleRate                         no
     33664  50xx,200A  TotalTime                          no
     33665  50xx,200C  AudioSampleData                    no
     33666  50xx,200E  AudioComments                      no
     33667  50xx,2500  CurveLabel                         no
     33668  50xx,2600  ReferencedOverlaySequence          no
     33669  50xx,2610  ReferencedOverlayGroup             no
     33670  50xx,3000  CurveData                          no
     33671  5200,9229  SharedFunctionalGroupsSequence     no
     33672  5200,9230  PerFrameFunctionalGroupsSequence   no
     33673  5400,0100  WaveformSequence                   no
     33674  5400,0110  ChannelMinimumValue                no
     33675  5400,0112  ChannelMaximumValue                no
     33676  5400,1004  WaveformBitsAllocated              no
     33677  5400,1006  WaveformSampleInterpretation       no
     33678  5400,100A  WaveformPaddingValue               no
     33679  5400,1010  WaveformData                       no
     33680  5600,0010  FirstOrderPhaseCorrectionAngle     no
     33681  5600,0020  SpectroscopyData                   no
     33682  6000,0000  OverlayGroupLength                 no
     33683  60xx,0010  OverlayRows                        no
     33684  60xx,0011  OverlayColumns                     no
     33685  60xx,0012  OverlayPlanes                      no
     33686  60xx,0015  NumberOfFramesInOverlay            no
     33687  60xx,0022  OverlayDescription                 no
     33688  60xx,0040  OverlayType                        no
     33689  60xx,0045  OverlaySubtype                     no
     33690  60xx,0050  OverlayOrigin                      no
     33691  60xx,0051  ImageFrameOrigin                   no
     33692  60xx,0052  OverlayPlaneOrigin                 no
     33693  60xx,0060  OverlayCompressionCode             no
     33694  60xx,0061  OverlayCompressionOriginator       no
     33695  60xx,0062  OverlayCompressionLabel            no
     33696  60xx,0063  OverlayCompressionDescription      no
     33697  60xx,0066  OverlayCompressionStepPointers     no
     33698  60xx,0068  OverlayRepeatInterval              no
     33699  60xx,0069  OverlayBitsGrouped                 no
     33700  60xx,0100  OverlayBitsAllocated               no
     33701  60xx,0102  OverlayBitPosition                 no
     33702  60xx,0110  OverlayFormat                      no
     33703  60xx,0200  OverlayLocation                    no
     33704  60xx,0800  OverlayCodeLabel                   no
     33705  60xx,0802  OverlayNumberOfTables              no
     33706  60xx,0803  OverlayCodeTableLocation           no
     33707  60xx,0804  OverlayBitsForCodeWord             no
     33708  60xx,1001  OverlayActivationLayer             no
     33709  60xx,1100  OverlayDescriptorGray              no
     33710  60xx,1101  OverlayDescriptorRed               no
     33711  60xx,1102  OverlayDescriptorGreen             no
     33712  60xx,1103  OverlayDescriptorBlue              no
     33713  60xx,1200  OverlaysGray                       no
     33714  60xx,1201  OverlaysRed                        no
     33715  60xx,1202  OverlaysGreen                      no
     33716  60xx,1203  OverlaysBlue                       no
     33717  60xx,1301  ROIArea                            no
     33718  60xx,1302  ROIMean                            no
     33719  60xx,1303  ROIStandardDeviation               no
     33720  60xx,1500  OverlayLabel                       no
     33721  60xx,3000  OverlayData                        no
     33722  60xx,4000  OverlayComments                    no
     33723  7Fxx,0000  PixelDataGroupLength               no
     33724  7Fxx,0010  PixelData                          no
     33725  7Fxx,0011  VariableNextDataGroup              no
     33726  7Fxx,0020  VariableCoefficientsSDVN           no
     33727  7Fxx,0030  VariableCoefficientsSDHN           no
     33728  7Fxx,0040  VariableCoefficientsSDDN           no
     33729  FFFA,FFFA  DigitalSignaturesSequence          no
     33730  FFFC,FFFC  DataSetTrailingPadding             no
     33731  FFFE,E000  StartOfItem                        no
     33732  FFFE,E00D  EndOfItems                         no
     33733  FFFE,E0DD  EndOfSequence                      no
     33734
     33735=head2 FITS Tags
     33736
     33737This table lists some standard Flexible Image Transport System (FITS) tags,
     33738but ExifTool will extract any other tags found.  See
     33739L<https://fits.gsfc.nasa.gov/fits_standard.html> for the specification.
     33740
     33741  Tag ID       Tag Name                         Writable
     33742  ------       --------                         --------
     33743  'AUTHOR'     Author                           no
     33744  'BACKGRND'   Background                       no
     33745  'COMMENT'    Comment                          no
     33746  'DATE'       CreateDate                       no
     33747  'DATE-END'   ObservationDateEnd               no
     33748  'DATE-OBS'   ObservationDate                  no
     33749  'HISTORY'    History                          no
     33750  'INSTRUME'   Instrument                       no
     33751  'OBJECT'     Object                           no
     33752  'OBSERVER'   Observer                         no
     33753  'REFERENC'   Reference                        no
     33754  'TELESCOP'   Telescope                        no
     33755  'TIME-END'   ObservationTimeEnd               no
     33756  'TIME-OBS'   ObservationTime                  no
     33757
     33758=head2 JSON Tags
     33759
     33760Other than a few tags in the table below, JSON tags have not been
     33761pre-defined.  However, ExifTool will read any existing tags from basic
     33762JSON-formatted files.
     33763
     33764  Tag Name                                      Writable
     33765  --------                                      --------
     33766  ON1_SettingsData                              PLIST
     33767  ON1_SettingsMetadataCreated                   no
     33768  ON1_SettingsMetadataModified                  no
     33769  ON1_SettingsMetadataName                      no
     33770  ON1_SettingsMetadataPluginID                  no
     33771  ON1_SettingsMetadataTimestamp                 no
     33772  ON1_SettingsMetadataUsage                     no
     33773  ON1_SettingsMetadataVisibleToUser             no
    1992533774
    1992633775=head2 HTML Tags
     
    1993233781  Tag ID                      Tag Name          Writable
    1993333782  ------                      --------          --------
    19934   'abstract'                  Abstract          N
    19935   'author'                    Author            N
    19936   'classification'            Classification    N
    19937   'copyright'                 Copyright         N
     33783  'abstract'                  Abstract          no
     33784  'author'                    Author            no
     33785  'classification'            Classification    no
     33786  'content-language'          ContentLanguage   no
     33787  'copyright'                 Copyright         no
    1993833788  'dc'                        DC                HTML dc
    19939   'description'               Description       N
    19940   'distribution'              Distribution      N
    19941   'doc-class'                 DocClass          N
    19942   'doc-rights'                DocRights         N
    19943   'doc-type'                  DocType           N
    19944   'formatter'                 Formatter         N
    19945   'generator'                 Generator         N
    19946   'googlebot'                 GoogleBot         N
     33789  'description'               Description       no
     33790  'distribution'              Distribution      no
     33791  'doc-class'                 DocClass          no
     33792  'doc-rights'                DocRights         no
     33793  'doc-type'                  DocType           no
     33794  'formatter'                 Formatter         no
     33795  'generator'                 Generator         no
     33796  'generatorversion'          GeneratorVersion  no
     33797  'googlebot'                 GoogleBot         no
    1994733798  'http-equiv'                HTTP-equiv        HTML equiv
    19948   'keywords'                  Keywords          N+
    19949   'mssmarttagspreventparsing' NoMSSmartTags     N
     33799  'keywords'                  Keywords          no+
     33800  'mssmarttagspreventparsing' NoMSSmartTags     no
    1995033801  'ncc'                       NCC               HTML ncc
    1995133802  'o'                         Office            HTML Office
    19952   'originator'                Originator        N
    19953   'owner'                     Owner             N
     33803  'originator'                Originator        no
     33804  'owner'                     Owner             no
    1995433805  'prod'                      Prod              HTML prod
    19955   'progid'                    ProgID            N
    19956   'rating'                    Rating            N
    19957   'refresh'                   Refresh           N
    19958   'resource-type'             ResourceType      N
    19959   'revisit-after'             RevisitAfter      N
    19960   'robots'                    Robots            N+
    19961   'title'                     Title             N
     33806  'progid'                    ProgID            no
     33807  'rating'                    Rating            no
     33808  'refresh'                   Refresh           no
     33809  'resource-type'             ResourceType      no
     33810  'revisit-after'             RevisitAfter      no
     33811  'robots'                    Robots            no+
     33812  'title'                     Title             no
    1996233813  'vw96'                      VW96              HTML vw96
    1996333814
     
    1996833819  Tag ID               Tag Name                 Writable
    1996933820  ------               --------                 --------
    19970   'contributor'        Contributor              N+
    19971   'coverage'           Coverage                 N
    19972   'creator'            Creator                  N+
    19973   'date'               Date                     N+
    19974   'description'        Description              N
    19975   'format'             Format                   N
    19976   'identifier'         Identifier               N
    19977   'language'           Language                 N+
    19978   'publisher'          Publisher                N+
    19979   'relation'           Relation                 N+
    19980   'rights'             Rights                   N
    19981   'source'             Source                   N
    19982   'subject'            Subject                  N+
    19983   'title'              Title                    N
    19984   'type'               Type                     N+
     33821  'contributor'        Contributor              no+
     33822  'coverage'           Coverage                 no
     33823  'creator'            Creator                  no+
     33824  'date'               Date                     no+
     33825  'description'        Description              no
     33826  'format'             Format                   no
     33827  'identifier'         Identifier               no
     33828  'language'           Language                 no+
     33829  'publisher'          Publisher                no+
     33830  'relation'           Relation                 no+
     33831  'rights'             Rights                   no
     33832  'source'             Source                   no
     33833  'subject'            Subject                  no+
     33834  'title'              Title                    no
     33835  'type'               Type                     no+
    1998533836
    1998633837=head3 HTML equiv Tags
     
    1999033841  Tag ID                Tag Name                Writable
    1999133842  ------                --------                --------
    19992   'cache-control'       CacheControl            N
    19993   'content-disposition' ContentDisposition      N
    19994   'content-language'    ContentLanguage         N
    19995   'content-script-type' ContentScriptType       N
    19996   'content-style-type'  ContentStyleType        N
    19997   'content-type'        ContentType             N
    19998   'default-style'       DefaultStyle            N
    19999   'expires'             Expires                 N
    20000   'ext-cache'           ExtCache                N
    20001   'imagetoolbar'        ImageToolbar            N
    20002   'lotus'               Lotus                   N
    20003   'page-enter'          PageEnter               N
    20004   'page-exit'           PageExit                N
    20005   'pics-label'          PicsLabel               N
    20006   'pragma'              Pragma                  N
    20007   'refresh'             Refresh                 N
    20008   'reply-to'            ReplyTo                 N
    20009   'set-cookie'          SetCookie               N
    20010   'site-enter'          SiteEnter               N
    20011   'site-exit'           SiteExit                N
    20012   'vary'                Vary                    N
    20013   'window-target'       WindowTarget            N
     33843  'cache-control'       CacheControl            no
     33844  'content-disposition' ContentDisposition      no
     33845  'content-language'    ContentLanguage         no
     33846  'content-script-type' ContentScriptType       no
     33847  'content-style-type'  ContentStyleType        no
     33848  'content-type'        ContentType             no
     33849  'default-style'       DefaultStyle            no
     33850  'expires'             Expires                 no
     33851  'ext-cache'           ExtCache                no
     33852  'imagetoolbar'        ImageToolbar            no
     33853  'lotus'               Lotus                   no
     33854  'page-enter'          PageEnter               no
     33855  'page-exit'           PageExit                no
     33856  'pics-label'          PicsLabel               no
     33857  'pragma'              Pragma                  no
     33858  'refresh'             Refresh                 no
     33859  'reply-to'            ReplyTo                 no
     33860  'set-cookie'          SetCookie               no
     33861  'site-enter'          SiteEnter               no
     33862  'site-exit'           SiteExit                no
     33863  'vary'                Vary                    no
     33864  'window-target'       WindowTarget            no
    2001433865
    2001533866=head3 HTML ncc Tags
     
    2001733868  Tag ID               Tag Name                 Writable
    2001833869  ------               --------                 --------
    20019   'charset'            CharacterSet             N
    20020   'depth'              Depth                    N
    20021   'files'              Files                    N
    20022   'footnotes'          Footnotes                N
    20023   'generator'          Generator                N
    20024   'kbytesize'          KByteSize                N
    20025   'maxpagenormal'      MaxPageNormal            N
    20026   'multimediatype'     MultimediaType           N
    20027   'narrator'           Narrator                 N
    20028   'pagefront'          PageFront                N
    20029   'pagenormal'         PageNormal               N
    20030   'pagespecial'        PageSpecial              N
    20031   'prodnotes'          ProdNotes                N
    20032   'produceddate'       ProducedDate             N
    20033   'producer'           Producer                 N
    20034   'revision'           Revision                 N
    20035   'revisiondate'       RevisionDate             N
    20036   'setinfo'            SetInfo                  N
    20037   'sidebars'           Sidebars                 N
    20038   'sourcedate'         SourceDate               N
    20039   'sourceedition'      SourceEdition            N
    20040   'sourcepublisher'    SourcePublisher          N
    20041   'sourcerights'       SourceRights             N
    20042   'sourcetitle'        SourceTitle              N
    20043   'tocitems'           TOCItems                 N
    20044   'totaltime'          Duration                 N
     33870  'charset'            CharacterSet             no
     33871  'depth'              Depth                    no
     33872  'files'              Files                    no
     33873  'footnotes'          Footnotes                no
     33874  'generator'          Generator                no
     33875  'kbytesize'          KByteSize                no
     33876  'maxpagenormal'      MaxPageNormal            no
     33877  'multimediatype'     MultimediaType           no
     33878  'narrator'           Narrator                 no
     33879  'pagefront'          PageFront                no
     33880  'pagenormal'         PageNormal               no
     33881  'pagespecial'        PageSpecial              no
     33882  'prodnotes'          ProdNotes                no
     33883  'produceddate'       ProducedDate             no
     33884  'producer'           Producer                 no
     33885  'revision'           Revision                 no
     33886  'revisiondate'       RevisionDate             no
     33887  'setinfo'            SetInfo                  no
     33888  'sidebars'           Sidebars                 no
     33889  'sourcedate'         SourceDate               no
     33890  'sourceedition'      SourceEdition            no
     33891  'sourcepublisher'    SourcePublisher          no
     33892  'sourcerights'       SourceRights             no
     33893  'sourcetitle'        SourceTitle              no
     33894  'tocitems'           TOCItems                 no
     33895  'totaltime'          Duration                 no
    2004533896
    2004633897=head3 HTML Office Tags
     
    2005033901  Tag ID                 Tag Name               Writable
    2005133902  ------                 --------               --------
    20052   'Author'               Author                 N
    20053   'Category'             Category               N
    20054   'Characters'           Characters             N
    20055   'CharactersWithSpaces' CharactersWithSpaces   N
    20056   'Company'              Company                N
    20057   'Created'              CreateDate             N
    20058   'Description'          Description            N
    20059   'Keywords'             Keywords               N
    20060   'LastAuthor'           LastAuthor             N
    20061   'LastPrinted'          LastPrinted            N
    20062   'LastSaved'            ModifyDate             N
    20063   'Lines'                Lines                  N
    20064   'Manager'              Manager                N
    20065   'Pages'                Pages                  N
    20066   'Paragraphs'           Paragraphs             N
    20067   'Revision'             RevisionNumber         N
    20068   'Subject'              Subject                N
    20069   'Template'             Template               N
    20070   'TotalTime'            TotalEditTime          N
    20071   'Version'              RevisionNumber         N
    20072   'Words'                Words                  N
     33903  'Author'               Author                 no
     33904  'Category'             Category               no
     33905  'Characters'           Characters             no
     33906  'CharactersWithSpaces' CharactersWithSpaces   no
     33907  'Company'              Company                no
     33908  'Created'              CreateDate             no
     33909  'Description'          Description            no
     33910  'Keywords'             Keywords               no
     33911  'LastAuthor'           LastAuthor             no
     33912  'LastPrinted'          LastPrinted            no
     33913  'LastSaved'            ModifyDate             no
     33914  'Lines'                Lines                  no
     33915  'Manager'              Manager                no
     33916  'Pages'                Pages                  no
     33917  'Paragraphs'           Paragraphs             no
     33918  'Revision'             RevisionNumber         no
     33919  'Subject'              Subject                no
     33920  'Template'             Template               no
     33921  'TotalTime'            TotalEditTime          no
     33922  'Version'              RevisionNumber         no
     33923  'Words'                Words                  no
    2007333924
    2007433925=head3 HTML prod Tags
     
    2007633927  Tag ID               Tag Name                 Writable
    2007733928  ------               --------                 --------
    20078   'recengineer'        RecEngineer              N
    20079   'reclocation'        RecLocation              N
     33929  'recengineer'        RecEngineer              no
     33930  'reclocation'        RecLocation              no
    2008033931
    2008133932=head3 HTML vw96 Tags
     
    2008333934  Tag ID               Tag Name                 Writable
    2008433935  ------               --------                 --------
    20085   'objecttype'         ObjectType               N
     33936  'objecttype'         ObjectType               no
     33937
     33938=head2 Palm Tags
     33939
     33940Information extracted from Palm database files (PDB and PRC extensions),
     33941Mobipocket electronic books (MOBI), and Amazon Kindle KF7 and KF8 books (AZW
     33942and AZW3).
     33943
     33944  Index4   Tag Name                             Writable
     33945  ------   --------                             --------
     33946      0    DatabaseName                         no
     33947      9    CreateDate                           no
     33948     10    ModifyDate                           no
     33949     11    LastBackupDate                       no
     33950     12    ModificationNumber                   no
     33951     15    PalmFileType                         no
     33952
     33953=head3 Palm MOBI Tags
     33954
     33955Information extracted from the MOBI header of Mobipocket and Amazon Kindle
     33956KF7 and KF8 files.
     33957
     33958  Index4   Tag Name                             Writable
     33959  ------   --------                             --------
     33960      0    Compression                          no
     33961      1    UncompressedTextLength               no
     33962      3    Encryption                           no
     33963      6    MobiType                             no
     33964      7    CodePage                             no
     33965      9    MobiVersion                          no
     33966     21    BookName                             no
     33967     26    MinimumVersion                       no
     33968
     33969=head3 Palm EXTH Tags
     33970
     33971Information extracted from the MOBI extended header.
     33972
     33973  Tag ID   Tag Name                             Writable
     33974  ------   --------                             --------
     33975  0x0001   DRMServerID                          no
     33976  0x0002   DRMCommerceID                        no
     33977  0x0003   DRM_E-BookBaseID                     no
     33978  0x0064   Author                               no
     33979  0x0065   Publisher                            no
     33980  0x0066   Imprint                              no
     33981  0x0067   Description                          no
     33982  0x0068   ISBN                                 no
     33983  0x0069   Subject                              no+
     33984  0x006a   PublishDate                          no
     33985  0x006b   Review                               no
     33986  0x006c   Contributor                          no
     33987  0x006d   Rights                               no
     33988  0x006e   SubjectCode                          no
     33989  0x006f   BookType                             no
     33990  0x0070   Source                               no
     33991  0x0071   ASIN                                 no
     33992  0x0072   BookVersion                          no
     33993  0x0073   SampleFlag                           no
     33994  0x0074   StartReading                         no
     33995  0x0075   Adult                                no
     33996  0x0076   RetailPrice                          no
     33997  0x0077   RetailPriceCurrency                  no
     33998  0x007d   ResourceCount                        no
     33999  0x0081   KF8CoverURI                          no
     34000  0x00c8   DictionaryShortName                  no
     34001  0x00cc   CreatorSoftware                      no
     34002  0x00cd   CreatorMajorVersion                  no
     34003  0x00ce   CreatorMinorVersion                  no
     34004  0x00cf   CreatorBuildNumber                   no
     34005  0x00d0   Watermark                            no
     34006  0x00d1   Tamper-proofKeys                     no
     34007  0x0191   ClippingLimit                        no
     34008  0x0192   PublisherLimit                       no
     34009  0x0194   TextToSpeech                         no
     34010  0x0195   RentalFlag                           no
     34011  0x0196   RentalExpirationDate                 no
     34012  0x01f5   CDEType                              no
     34013  0x01f6   LastUpdateTime                       no
     34014  0x01f7   UpdatedTitle                         no
     34015  0x01f8   ASIN2                                no
     34016  0x020c   Language                             no
     34017  0x020d   Alignment                            no
     34018  0x0217   CreatorBuildNumber2                  no
     34019
     34020=head2 Torrent Tags
     34021
     34022Below are tags commonly found in BitTorrent files.  As well as these tags,
     34023any other existing tags will be extracted.  For convenience, list items are
     34024expanded into individual tags with an index in the tag name, but only the
     34025tags with index "1" are listed in the tables below.  See
     34026L<https://wiki.theory.org/BitTorrentSpecification> for the BitTorrent
     34027specification.
     34028
     34029  Tag ID               Tag Name                 Writable
     34030  ------               --------                 --------
     34031  'announce'           Announce                 no
     34032  'announce-list'      AnnounceList1            no
     34033  'comment'            Comment                  no
     34034  'created by'         Creator                  no
     34035  'creation date'      CreateDate               no
     34036  'encoding'           Encoding                 no
     34037  'info'               Info                     Torrent Info
     34038  'url-list'           URLList1                 no
     34039
     34040=head3 Torrent Info Tags
     34041
     34042  Tag ID               Tag Name                 Writable
     34043  ------               --------                 --------
     34044  'file-duration'      File1Duration            no
     34045  'file-media'         File1Media               no
     34046  'files'              Files                    Torrent Files
     34047  'length'             Length                   no
     34048  'md5sum'             MD5Sum                   no
     34049  'name'               Name                     no
     34050  'name.utf-8'         NameUTF-8                no
     34051  'piece length'       PieceLength              no
     34052  'pieces'             Pieces                   no
     34053  'private'            Private                  no
     34054  'profiles'           Profiles                 Torrent Profiles
     34055
     34056=head3 Torrent Files Tags
     34057
     34058  Tag ID               Tag Name                 Writable
     34059  ------               --------                 --------
     34060  'length'             File1Length              no
     34061  'md5sum'             File1MD5Sum              no
     34062  'path'               File1Path                no
     34063  'path.utf-8'         File1PathUTF-8           no
     34064
     34065=head3 Torrent Profiles Tags
     34066
     34067  Tag ID   Tag Name                             Writable
     34068  ------   --------                             --------
     34069  'acodec' Profile1AudioCodec                   no
     34070  'height' Profile1Height                       no
     34071  'vcodec' Profile1VideoCodec                   no
     34072  'width'  Profile1Width                        no
    2008634073
    2008734074=head2 EXE Tags
     
    2009234079DLL libraries.
    2009334080
    20094    Index   Tag Name                             Writable
    20095    -----   --------                             --------
    20096       0    MachineType                          N
    20097       2    TimeStamp                            N
    20098      10    PEType                               N
    20099      11    LinkerVersion                        N
    20100      12    CodeSize                             N
    20101      14    InitializedDataSize                  N
    20102      16    UninitializedDataSize                N
    20103      18    EntryPoint                           N
    20104      30    OSVersion                            N
    20105      32    ImageVersion                         N
    20106      34    SubsystemVersion                     N
    20107      44    Subsystem                            N
     34081  Index2   Tag Name                             Writable
     34082  ------   --------                             --------
     34083      0    MachineType                          no
     34084      2    TimeStamp                            no
     34085      9    ImageFileCharacteristics             no
     34086     10    PEType                               no
     34087     11    LinkerVersion                        no
     34088     12    CodeSize                             no
     34089     14    InitializedDataSize                  no
     34090     16    UninitializedDataSize                no
     34091     18    EntryPoint                           no
     34092     30    OSVersion                            no
     34093     32    ImageVersion                         no
     34094     34    SubsystemVersion                     no
     34095     44    Subsystem                            no
    2010834096
    2010934097=head3 EXE PEVersion Tags
     
    2011234100files.
    2011334101
    20114    Index   Tag Name                             Writable
    20115    -----   --------                             --------
    20116       2    FileVersionNumber                    N
    20117       4    ProductVersionNumber                 N
    20118       6    FileFlagsMask                        N
    20119       7    FileFlags                            N
    20120       8    FileOS                               N
    20121       9    ObjectFileType                       N
    20122      10    FileSubtype                          N
     34102  Index4   Tag Name                             Writable
     34103  ------   --------                             --------
     34104      2    FileVersionNumber                    no
     34105      4    ProductVersionNumber                 no
     34106      6    FileFlagsMask                        no
     34107      7    FileFlags                            no
     34108      8    FileOS                               no
     34109      9    ObjectFileType                       no
     34110     10    FileSubtype                          no
    2012334111
    2012434112=head3 EXE PEString Tags
     
    2013034118  Tag Name                                      Writable
    2013134119  --------                                      --------
    20132   BuildDate                                     N
    20133   BuildVersion                                  N
    20134   CharacterSet                                  N
    20135   Comments                                      N
    20136   CompanyName                                   N
    20137   Copyright                                     N
    20138   FileDescription                               N
    20139   FileVersion                                   N
    20140   InternalName                                  N
    20141   LanguageCode                                  N
    20142   LegalCopyright                                N
    20143   LegalTrademarks                               N
    20144   OriginalFilename                              N
    20145   PrivateBuild                                  N
    20146   ProductName                                   N
    20147   ProductVersion                                N
    20148   SpecialBuild                                  N
     34120  BuildDate                                     no
     34121  BuildVersion                                  no
     34122  CharacterSet                                  no
     34123  Comments                                      no
     34124  CompanyName                                   no
     34125  Copyright                                     no
     34126  FileDescription                               no
     34127  FileVersion                                   no
     34128  InternalName                                  no
     34129  LanguageCode                                  no
     34130  LegalCopyright                                no
     34131  LegalTrademarks                               no
     34132  OriginalFileName                              no
     34133  PrivateBuild                                  no
     34134  ProductName                                   no
     34135  ProductVersion                                no
     34136  SpecialBuild                                  no
    2014934137
    2015034138=head3 EXE MachO Tags
     
    2015534143   Index   Tag Name                             Writable
    2015634144   -----   --------                             --------
    20157       0    CPUArchitecture                      N
    20158       1    CPUByteOrder                         N
    20159       2    CPUCount                             N
    20160       3    CPUType                              N+
    20161       4    CPUSubtype                           N+
    20162       5    ObjectFileType                       N
     34145      0    CPUArchitecture                      no
     34146      1    CPUByteOrder                         no
     34147      2    CPUCount                             no
     34148      3    CPUType                              no+
     34149      4    CPUSubtype                           no+
     34150      5    ObjectFileType                       no
     34151      6    ObjectFlags                          no
    2016334152
    2016434153=head3 EXE PEF Tags
     
    2016734156libraries.
    2016834157
    20169    Index   Tag Name                             Writable
    20170    -----   --------                             --------
    20171       2    CPUArchitecture                      N
    20172       3    PEFVersion                           N
    20173       4    TimeStamp                            N
     34158  Index4   Tag Name                             Writable
     34159  ------   --------                             --------
     34160      2    CPUArchitecture                      no
     34161      3    PEFVersion                           no
     34162      4    TimeStamp                            no
    2017434163
    2017534164=head3 EXE ELF Tags
     
    2017734166Information extracted from ELF (Unix) executable files and SO libraries.
    2017834167
    20179    Index   Tag Name                             Writable
    20180    -----   --------                             --------
    20181       4    CPUArchitecture                      N
    20182       5    CPUByteOrder                         N
    20183      16    ObjectFileType                       N
    20184      18    CPUType                              N
     34168  Index1   Tag Name                             Writable
     34169  ------   --------                             --------
     34170      4    CPUArchitecture                      no
     34171      5    CPUByteOrder                         no
     34172     16    ObjectFileType                       no
     34173     18    CPUType                              no
     34174
     34175=head3 EXE AR Tags
     34176
     34177Information extracted from static libraries.
     34178
     34179  Index1   Tag Name                             Writable
     34180  ------   --------                             --------
     34181     16    CreateDate                           no
     34182
     34183=head3 EXE CHM Tags
     34184
     34185Tags extracted from Microsoft Compiled HTML files.
     34186
     34187  Index4   Tag Name                             Writable
     34188  ------   --------                             --------
     34189      1    CHMVersion                           no
     34190      5    LanguageCode                         no
    2018534191
    2018634192=head2 LNK Tags
     
    2018834194Information extracted from MS Shell Link (Windows shortcut) files.
    2018934195
    20190    Index       Tag Name                         Writable
    20191    -----       --------                         --------
    20192          20    Flags                            N
    20193          24    FileAttributes                   N
    20194          28    CreateDate                       N
    20195          36    AccessDate                       N
    20196          44    ModifyDate                       N
    20197          52    TargetFileSize                   N
    20198          56    IconIndex                        N
    20199          60    RunWindow                        N
    20200          64    HotKey                           N
    20201   0x00010000   ItemID                           LNK ItemID
    20202   0x00020000   LinkInfo                         LNK LinkInfo
    20203   0x00030004   Description                      N
    20204   0x00030008   RelativePath                     N
    20205   0x00030010   WorkingDirectory                 N
    20206   0x00030020   CommandLineArguments             N
    20207   0x00030040   IconFileName                     N
     34196  Index1       Tag Name                         Writable
     34197  ------       --------                         --------
     34198  0x0014       Flags                            no
     34199  0x0018       FileAttributes                   no
     34200  0x001c       CreateDate                       no
     34201  0x0024       AccessDate                       no
     34202  0x002c       ModifyDate                       no
     34203  0x0034       TargetFileSize                   no
     34204  0x0038       IconIndex                        no
     34205  0x003c       RunWindow                        no
     34206  0x0040       HotKey                           no
     34207  0x10000      ItemID                           LNK ItemID
     34208  0x20000      LinkInfo                         LNK LinkInfo
     34209  0x30004      Description                      no
     34210  0x30008      RelativePath                     no
     34211  0x30010      WorkingDirectory                 no
     34212  0x30020      CommandLineArguments             no
     34213  0x30040      IconFileName                     no
    2020834214  0xa0000000   UnknownData                      LNK UnknownData
    2020934215  0xa0000001   EnvVarData                       LNK UnknownData
     
    2022734233=head3 LNK Item0032 Tags
    2022834234
    20229    Index   Tag Name                             Writable
    20230    -----   --------                             --------
    20231      14    TargetFileDOSName                    N
     34235  Index1   Tag Name                             Writable
     34236  ------   --------                             --------
     34237     14    TargetFileDOSName                    no
    2023234238
    2023334239=head3 LNK LinkInfo Tags
     
    2023534241  Tag Name                                      Writable
    2023634242  --------                                      --------
    20237   CommonNetworkRelLink                          N
    20238   CommonPathSuffix                              N
    20239   DeviceName                                    N
    20240   DriveSerialNumber                             N
    20241   DriveType                                     N
    20242   LocalBasePath                                 N
    20243   NetName                                       N
    20244   NetProviderType                               N
    20245   VolumeID                                      N
    20246   VolumeLabel                                   N
     34243  CommonNetworkRelLink                          no
     34244  CommonPathSuffix                              no
     34245  DeviceName                                    no
     34246  DriveSerialNumber                             no
     34247  DriveType                                     no
     34248  LocalBasePath                                 no
     34249  NetName                                       no
     34250  NetProviderType                               no
     34251  VolumeID                                      no
     34252  VolumeLabel                                   no
    2024734253
    2024834254=head3 LNK UnknownData Tags
    2024934255
    20250    Index   Tag Name                             Writable
    20251    -----   --------                             --------
     34256  Index1   Tag Name                             Writable
     34257  ------   --------                             --------
    2025234258  [no tags known]
    2025334259
    2025434260=head3 LNK ConsoleData Tags
    2025534261
    20256    Index   Tag Name                             Writable
    20257    -----   --------                             --------
    20258       8    FillAttributes                       N
    20259      10    PopupFillAttributes                  N
    20260      12    ScreenBufferSize                     N
    20261      16    WindowSize                           N
    20262      20    WindowOrigin                         N
    20263      32    FontSize                             N
    20264      36    FontFamily                           N
    20265      40    FontWeight                           N
    20266      44    FontName                             N
    20267     108    CursorSize                           N
    20268     112    FullScreen                           N
    20269     116    QuickEdit                            N
    20270     120    InsertMode                           N
    20271     124    WindowOriginAuto                     N
    20272     128    HistoryBufferSize                    N
    20273     132    NumHistoryBuffers                    N
    20274     136    RemoveHistoryDuplicates              N
     34262  Index1   Tag Name                             Writable
     34263  ------   --------                             --------
     34264      8    FillAttributes                       no
     34265     10    PopupFillAttributes                  no
     34266     12    ScreenBufferSize                     no
     34267     16    WindowSize                           no
     34268     20    WindowOrigin                         no
     34269     32    FontSize                             no
     34270     36    FontFamily                           no
     34271     40    FontWeight                           no
     34272     44    FontName                             no
     34273    108    CursorSize                           no
     34274    112    FullScreen                           no
     34275    116    QuickEdit                            no
     34276    120    InsertMode                           no
     34277    124    WindowOriginAuto                     no
     34278    128    HistoryBufferSize                    no
     34279    132    NumHistoryBuffers                    no
     34280    136    RemoveHistoryDuplicates              no
    2027534281
    2027634282=head3 LNK TrackerData Tags
    2027734283
    20278    Index   Tag Name                             Writable
    20279    -----   --------                             --------
    20280      16    MachineID                            N
     34284  Index1   Tag Name                             Writable
     34285  ------   --------                             --------
     34286     16    MachineID                            no
    2028134287
    2028234288=head3 LNK ConsoleFEData Tags
    2028334289
    20284    Index   Tag Name                             Writable
    20285    -----   --------                             --------
    20286       8    CodePage                             N
     34290  Index1   Tag Name                             Writable
     34291  ------   --------                             --------
     34292      8    CodePage                             no
    2028734293
    2028834294=head2 Font Tags
     
    2029734303  'PFM'        PFMHeader                        Font PFM
    2029834304  'PSInfo'     PSFontInfo                       Font PSInfo
    20299   'fontname'   FontName                         N
     34305  'fontname'   FontName                         no
    2030034306  'name'       Name                             Font Name
    20301   'numfonts'   NumFonts                         N
    20302   'postfont'   PostScriptFontName               N
     34307  'numfonts'   NumFonts                         no
     34308  'postfont'   PostScriptFontName               no
    2030334309
    2030434310=head3 Font AFM Tags
     
    2030834314  Tag ID               Tag Name                 Writable
    2030934315  ------               --------                 --------
    20310   'Ascender'           Ascender                 N
    20311   'CapHeight'          CapHeight                N
    20312   'CharacterSet'       CharacterSet             N
    20313   'Characters'         Characters               N
    20314   'Creation Date'      CreateDate               N
    20315   'Descender'          Descender                N
    20316   'EncodingScheme'     EncodingScheme           N
    20317   'EscChar'            EscChar                  N
    20318   'FamilyName'         FontFamily               N
    20319   'FontName'           FontName                 N
    20320   'FullName'           FullName                 N
    20321   'IsBaseFont'         IsBaseFont               N
    20322   'IsFixedV'           IsFixedV                 N
    20323   'MappingScheme'      MappingScheme            N
    20324   'Notice'             Notice                   N
    20325   'Version'            Version                  N
    20326   'Weight'             Weight                   N
    20327   'XHeight'            XHeight                  N
     34316  'Ascender'           Ascender                 no
     34317  'CapHeight'          CapHeight                no
     34318  'CharacterSet'       CharacterSet             no
     34319  'Characters'         Characters               no
     34320  'Creation Date'      CreateDate               no
     34321  'Descender'          Descender                no
     34322  'EncodingScheme'     EncodingScheme           no
     34323  'EscChar'            EscChar                  no
     34324  'FamilyName'         FontFamily               no
     34325  'FontName'           FontName                 no
     34326  'FullName'           FullName                 no
     34327  'IsBaseFont'         IsBaseFont               no
     34328  'IsFixedV'           IsFixedV                 no
     34329  'MappingScheme'      MappingScheme            no
     34330  'Notice'             Notice                   no
     34331  'Version'            Version                  no
     34332  'Weight'             Weight                   no
     34333  'XHeight'            XHeight                  no
    2032834334
    2032934335=head3 Font PFM Tags
     
    2033134337Tags extracted from the PFM file header.
    2033234338
    20333    Index   Tag Name                             Writable
    20334    -----   --------                             --------
    20335       0    PFMVersion                           N
    20336       6    Copyright                            N
    20337      66    FontType                             N
    20338      68    PointSize                            N
    20339      70    YResolution                          N
    20340      72    XResolution                          N
    20341      74    Ascent                               N
    20342      76    InternalLeading                      N
    20343      78    ExternalLeading                      N
    20344      80    Italic                               N
    20345      81    Underline                            N
    20346      82    Strikeout                            N
    20347      83    Weight                               N
    20348      85    CharacterSet                         N
    20349      86    PixWidth                             N
    20350      88    PixHeight                            N
    20351      90    PitchAndFamily                       N
    20352      91    AvgWidth                             N
    20353      93    MaxWidth                             N
    20354      95    FirstChar                            N
    20355      96    LastChar                             N
    20356      97    DefaultChar                          N
    20357      98    BreakChar                            N
    20358      99    WidthBytes                           N
     34339  Index1   Tag Name                             Writable
     34340  ------   --------                             --------
     34341      0    PFMVersion                           no
     34342      6    Copyright                            no
     34343     66    FontType                             no
     34344     68    PointSize                            no
     34345     70    YResolution                          no
     34346     72    XResolution                          no
     34347     74    Ascent                               no
     34348     76    InternalLeading                      no
     34349     78    ExternalLeading                      no
     34350     80    Italic                               no
     34351     81    Underline                            no
     34352     82    Strikeout                            no
     34353     83    Weight                               no
     34354     85    CharacterSet                         no
     34355     86    PixWidth                             no
     34356     88    PixHeight                            no
     34357     90    PitchAndFamily                       no
     34358     91    AvgWidth                             no
     34359     93    MaxWidth                             no
     34360     95    FirstChar                            no
     34361     96    LastChar                             no
     34362     97    DefaultChar                          no
     34363     98    BreakChar                            no
     34364     99    WidthBytes                           no
    2035934365
    2036034366=head3 Font PSInfo Tags
     
    2036434370  Tag ID               Tag Name                 Writable
    2036534371  ------               --------                 --------
    20366   'Copyright'          Copyright                N
    20367   'FSType'             FSType                   N
    20368   'FamilyName'         FontFamily               N
    20369   'FontName'           FontName                 N
    20370   'FontType'           FontType                 N
    20371   'FullName'           FullName                 N
    20372   'ItalicAngle'        ItalicAngle              N
    20373   'Notice'             Notice                   N
    20374   'UnderlinePosition'  UnderlinePosition        N
    20375   'UnderlineThickness' UnderlineThickness       N
    20376   'Weight'             Weight                   N
    20377   'isFixedPitch'       IsFixedPitch             N
    20378   'version'            Version                  N
     34372  'Copyright'          Copyright                no
     34373  'FSType'             FSType                   no
     34374  'FamilyName'         FontFamily               no
     34375  'FontName'           FontName                 no
     34376  'FontType'           FontType                 no
     34377  'FullName'           FullName                 no
     34378  'ItalicAngle'        ItalicAngle              no
     34379  'Notice'             Notice                   no
     34380  'UnderlinePosition'  UnderlinePosition        no
     34381  'UnderlineThickness' UnderlineThickness       no
     34382  'Weight'             Weight                   no
     34383  'isFixedPitch'       IsFixedPitch             no
     34384  'version'            Version                  no
    2037934385
    2038034386=head3 Font Name Tags
     
    2038234388The following tags are extracted from the TrueType font "name" table found
    2038334389in OTF, TTF, TTC and DFONT files.  These tags support localized languages by
    20384 adding a hyphen followed by a language code to the end of the tag name (ie.
    20385 "Copyright-fr" or "Licence-en-US").  Tags with no language code use the
     34390adding a hyphen followed by a language code to the end of the tag name (eg.
     34391"Copyright-fr" or "License-en-US").  Tags with no language code use the
    2038634392default language of "en".
    2038734393
    2038834394  Tag ID   Tag Name                             Writable
    2038934395  ------   --------                             --------
    20390   0x0000   Copyright                            N
    20391   0x0001   FontFamily                           N
    20392   0x0002   FontSubfamily                        N
    20393   0x0003   FontSubfamilyID                      N
    20394   0x0004   FontName                             N
    20395   0x0005   NameTableVersion                     N
    20396   0x0006   PostScriptFontName                   N
    20397   0x0007   Trademark                            N
    20398   0x0008   Manufacturer                         N
    20399   0x0009   Designer                             N
    20400   0x000a   Description                          N
    20401   0x000b   VendorURL                            N
    20402   0x000c   DesignerURL                          N
    20403   0x000d   License                              N
    20404   0x000e   LicenseInfoURL                       N
    20405   0x0010   PreferredFamily                      N
    20406   0x0011   PreferredSubfamily                   N
    20407   0x0012   CompatibleFontName                   N
    20408   0x0013   SampleText                           N
    20409   0x0014   PostScriptFontName                   N
    20410   0x0015   WWSFamilyName                        N
    20411   0x0016   WWSSubfamilyName                     N
     34396  0x0000   Copyright                            no
     34397  0x0001   FontFamily                           no
     34398  0x0002   FontSubfamily                        no
     34399  0x0003   FontSubfamilyID                      no
     34400  0x0004   FontName                             no
     34401  0x0005   NameTableVersion                     no
     34402  0x0006   PostScriptFontName                   no
     34403  0x0007   Trademark                            no
     34404  0x0008   Manufacturer                         no
     34405  0x0009   Designer                             no
     34406  0x000a   Description                          no
     34407  0x000b   VendorURL                            no
     34408  0x000c   DesignerURL                          no
     34409  0x000d   License                              no
     34410  0x000e   LicenseInfoURL                       no
     34411  0x0010   PreferredFamily                      no
     34412  0x0011   PreferredSubfamily                   no
     34413  0x0012   CompatibleFontName                   no
     34414  0x0013   SampleText                           no
     34415  0x0014   PostScriptFontName                   no
     34416  0x0015   WWSFamilyName                        no
     34417  0x0016   WWSSubfamilyName                     no
     34418
     34419=head2 VCard Tags
     34420
     34421This table lists common vCard tags, but ExifTool will also extract any other
     34422vCard tags found.  Tag names may have "Pref" added to indicate the preferred
     34423instance of a vCard property, and other "TYPE" parameters may also added to
     34424the tag name.  VCF files may contain multiple vCard entries which are
     34425distinguished by the ExifTool family 3 group name (document  number). See
     34426L<http://tools.ietf.org/html/rfc6350> for the vCard 4.0 specification.
     34427
     34428  Tag ID               Tag Name                 Writable
     34429  ------               --------                 --------
     34430  'Adr'                Address                  no
     34431  'Anniversary'        Anniversary              no
     34432  'Bday'               Birthday                 no
     34433  'Email'              Email                    no
     34434  'Fn'                 FormattedName            no
     34435  'Gender'             Gender                   no
     34436  'Geo'                Geolocation              no
     34437  'Impp'               IMPP                     no
     34438  'Lang'               Language                 no
     34439  'Logo'               Logo                     no
     34440  'N'                  Name                     no
     34441  'Nickname'           Nickname                 no
     34442  'Note'               Note                     no
     34443  'Org'                Organization             no
     34444  'Photo'              Photo                    no
     34445  'Prodid'             Software                 no
     34446  'Rev'                Revision                 no
     34447  'Sound'              Sound                    no
     34448  'Tel'                Telephone                no
     34449  'Title'              JobTitle                 no
     34450  'Tz'                 TimeZone                 no
     34451  'Uid'                UID                      no
     34452  'Url'                URL                      no
     34453  'Version'            VCardVersion             no
     34454  'X-abdate'           ABDate                   no
     34455  'X-ablabel'          ABLabel                  no
     34456  'X-abrelatednames'   ABRelatedNames           no
     34457  'X-abuid'            AB_UID                   no
     34458  'X-aim'              AIM                      no
     34459  'X-icq'              ICQ                      no
     34460  'X-socialprofile'    SocialProfile            no
     34461
     34462=head3 VCard VCalendar Tags
     34463
     34464The VCard module is also used to process iCalendar ICS files since they use
     34465a format similar to vCard.  The following table lists standard iCalendar
     34466tags, but any existing tags will be extracted.  Top-level iCalendar
     34467components (eg. Event, Todo, Timezone, etc.) are used for the family 1 group
     34468names, and embedded components (eg. Alarm) are added as a prefix to the tag
     34469name.  See L<http://tools.ietf.org/html/rfc5545> for the official iCalendar
     344702.0 specification.
     34471
     34472  Tag ID                Tag Name                Writable
     34473  ------                --------                --------
     34474  'Acknowledged'        Acknowledged            no
     34475  'Action'              Action                  no
     34476  'Attach'              Attachment              no
     34477  'Attendee'            Attendee                no
     34478  'Calscale'            CalendarScale           no
     34479  'Categories'          Categories              no
     34480  'Class'               Classification          no
     34481  'Comment'             Comment                 no
     34482  'Completed'           DateTimeCompleted       no
     34483  'Contact'             Contact                 no
     34484  'Created'             DateCreated             no
     34485  'Description'         Description             no
     34486  'Dtend'               DateTimeEnd             no
     34487  'Dtstamp'             DateTimeStamp           no
     34488  'Dtstart'             DateTimeStart           no
     34489  'Due'                 DateTimeDue             no
     34490  'Duration'            Duration                no
     34491  'Exdate'              ExceptionDateTimes      no
     34492  'Freebusy'            FreeBusyTime            no
     34493  'Geo'                 Geolocation             no
     34494  'Last-modified'       ModifyDate              no
     34495  'Location'            Location                no
     34496  'Method'              Method                  no
     34497  'Organizer'           Organizer               no
     34498  'Percent-complete'    PercentComplete         no
     34499  'Priority'            Priority                no
     34500  'Prodid'              Software                no
     34501  'Rdate'               RecurrenceDateTimes     no
     34502  'Recurrence-id'       RecurrenceID            no
     34503  'Related-to'          RelatedTo               no
     34504  'Repeat'              Repeat                  no
     34505  'Request-status'      RequestStatus           no
     34506  'Resources'           Resources               no
     34507  'Rrule'               RecurrenceRule          no
     34508  'Sequence'            SequenceNumber          no
     34509  'Status'              Status                  no
     34510  'Summary'             Summary                 no
     34511  'Transp'              TimeTransparency        no
     34512  'Trigger'             Trigger                 no
     34513  'Tzid'                TimezoneID              no
     34514  'Tzname'              TimezoneName            no
     34515  'Tzoffsetfrom'        TimezoneOffsetFrom      no
     34516  'Tzoffsetto'          TimezoneOffsetTo        no
     34517  'Tzurl'               TimeZoneURL             no
     34518  'Uid'                 UID                     no
     34519  'Url'                 URL                     no
     34520  'Version'             VCalendarVersion        no
     34521  'X-apple-calendar-color' CalendarColor        no
     34522  'X-apple-default-alarm' DefaultAlarm          no
     34523  'X-apple-local-default-alarm'
     34524                        LocalDefaultAlarm       no
     34525  'X-microsoft-cdo-alldayevent' AllDayEvent     no
     34526  'X-microsoft-cdo-appt-sequence'
     34527                        AppointmentSequence     no
     34528  'X-microsoft-cdo-busystatus' BusyStatus       no
     34529  'X-microsoft-cdo-importance' Importance       no
     34530  'X-microsoft-cdo-insttype' InstanceType       no
     34531  'X-microsoft-cdo-intendedstatus'
     34532                        IntendedBusyStatus      no
     34533  'X-microsoft-cdo-ownerapptid'
     34534                        OwnerAppointmentID      no
     34535  'X-microsoft-disallow-counter'
     34536                        DisallowCounterProposal no
     34537  'X-microsoft-donotforwardmeeting'
     34538                        DoNotForwardMeeting     no
     34539  'X-microsoft-locations' MeetingLocations      no
     34540  'X-wr-alarmuid'       AlarmUID                no
     34541  'X-wr-caldesc'        CalendarDescription     no
     34542  'X-wr-calname'        CalendarName            no
     34543  'X-wr-relcalid'       CalendarID              no
     34544  'X-wr-timezone'       TimeZone2               no
     34545
     34546=head2 Text Tags
     34547
     34548Although basic text files contain no metadata, the following tags are
     34549determined from a simple analysis of the data in TXT and CSV files.
     34550Statistics are generated only for 8-bit encodings, but the FastScan (-fast)
     34551option may be used to limit processing to the first 64 kB in which case some
     34552tags are not produced.  To avoid long processing delays, ExifTool will issue
     34553a minor warning and process only the first 64 kB of any file larger than 20
     34554MB unless the IgnoreMinorErrors (-m)
     34555option is used.
     34556
     34557  Tag Name                                      Writable
     34558  --------                                      --------
     34559  ByteOrderMark                                 no
     34560  ColumnCount                                   no
     34561  Delimiter                                     no
     34562  LineCount                                     no
     34563  MIMEEncoding                                  no
     34564  Newlines                                      no
     34565  Quoting                                       no
     34566  RowCount                                      no
     34567  WordCount                                     no
    2041234568
    2041334569=head2 RSRC Tags
    2041434570
    20415 Tags extracted from Mac OS resource files and DFONT files.  These tags may
    20416 also be extracted from the resource fork of any file in OS X, either by
    20417 adding "/rsrc" to the filename to process the resource fork alone, or by
    20418 using the ExtractEmbedded (-ee) option to process the resource fork as a
    20419 sub-document of the main file.
     34571Tags extracted from Mac OS resource files, DFONT files and "._" sidecar
     34572files.  These tags may also be extracted from the resource fork of any file
     34573in OS X, either by adding "/..namedfork/rsrc" to the filename to process the
     34574resource fork alone, or by using the ExtractEmbedded (-ee) option to process
     34575the resource fork as a sub-document of the main file.  When writing,
     34576ExifTool preserves the Mac OS resource fork by default, but it may deleted
     34577with C<-rsrc:all=> on the command line.
    2042034578
    2042134579  Tag ID               Tag Name                 Writable
    2042234580  ------               --------                 --------
    2042334581  '8BIM'               PhotoshopInfo            Photoshop
    20424   'STR _0xbff3'        ApplicationMissingMsg    N
    20425   'STR _0xbff4'        CreatorApplication       N
    20426   'STR#_0x0080'        Keywords                 N
    20427   'TEXT_0x0080'        Description              N
     34582  'POST_0x01f5'        PostscriptFont           PostScript
     34583  'STR _0xbff3'        ApplicationMissingMsg    no
     34584  'STR _0xbff4'        CreatorApplication       no
     34585  'STR#_0x0080'        Keywords                 no
     34586  'TEXT_0x0080'        Description              no
    2042834587  'sfnt'               Font                     Font Name
    20429   'usro_0x0000'        OpenWithApplication      N
    20430   'vers_0x0001'        ApplicationVersion       N
     34588  'usro_0x0000'        OpenWithApplication      no
     34589  'vers_0x0001'        ApplicationVersion       no
    2043134590
    2043234591=head2 Rawzor Tags
     
    2043834597  Tag Name                                      Writable
    2043934598  --------                                      --------
    20440   CompressionFactor                             N
    20441   OriginalFileSize                              N
    20442   OriginalFileType                              N
    20443   RawzorCreatorVersion                          N
    20444   RawzorRequiredVersion                         N
     34599  CompressionFactor                             no
     34600  OriginalFileSize                              no
     34601  OriginalFileType                              no
     34602  RawzorCreatorVersion                          no
     34603  RawzorRequiredVersion                         no
    2044534604
    2044634605=head2 ZIP Tags
     
    2044834607The following tags are extracted from ZIP archives.  ExifTool also extracts
    2044934608additional meta information from compressed documents inside some ZIP-based
    20450 files such Office Open XML (DOCX, PPTX and XLSX), Open Document (ODP, ODS
    20451 and ODT), iWork (KEY, PAGES, NUMBERS), and Capture One Enhanced Image
    20452 Package (EIP).  The ExifTool family 3 groups may be used to organize the
    20453 output by embedded document number (ie. the exiftool C<-g3> option).
    20454 
    20455    Index   Tag Name                             Writable
    20456    -----   --------                             --------
    20457       2    ZipRequiredVersion                   N
    20458       3    ZipBitFlag                           N
    20459       4    ZipCompression                       N
    20460       5    ZipModifyDate                        N
    20461       7    ZipCRC                               N
    20462       9    ZipCompressedSize                    N
    20463      11    ZipUncompressedSize                  N
    20464      15    ZipFileName                          N
     34609files such Office Open XML (DOCX, PPTX and XLSX), Open Document (ODB, ODC,
     34610ODF, ODG, ODI, ODP, ODS and ODT), iWork (KEY, PAGES, NUMBERS), Capture One
     34611Enhanced Image Package (EIP), Adobe InDesign Markup Language (IDML),
     34612Electronic Publication (EPUB), and Sketch design files (SKETCH).  The
     34613ExifTool family 3 groups may be used to organize ZIP tags by embedded
     34614document number (ie. the exiftool C<-g3> option).
     34615
     34616  Index2   Tag Name                             Writable
     34617  ------   --------                             --------
     34618      2    ZipRequiredVersion                   no
     34619      3    ZipBitFlag                           no
     34620      4    ZipCompression                       no
     34621      5    ZipModifyDate                        no
     34622      7    ZipCRC                               no
     34623      9    ZipCompressedSize                    no
     34624     11    ZipUncompressedSize                  no
     34625     15    ZipFileName                          no
    2046534626
    2046634627=head3 ZIP GZIP Tags
     
    2046934630for the first file in the archive.
    2047034631
    20471    Index   Tag Name                             Writable
    20472    -----   --------                             --------
    20473       2    Compression                          N
    20474       3    Flags                                N
    20475       4    ModifyDate                           N
    20476       8    ExtraFlags                           N
    20477       9    OperatingSystem                      N
    20478      10    ArchivedFileName                     N
    20479      11    Comment                              N
     34632  Index1   Tag Name                             Writable
     34633  ------   --------                             --------
     34634      2    Compression                          no
     34635      3    Flags                                no
     34636      4    ModifyDate                           no
     34637      8    ExtraFlags                           no
     34638      9    OperatingSystem                      no
     34639     10    ArchivedFileName                     no
     34640     11    Comment                              no
    2048034641
    2048134642=head3 ZIP RAR Tags
     
    2048334644These tags are extracted from RAR archive files.
    2048434645
    20485    Index   Tag Name                             Writable
    20486    -----   --------                             --------
    20487       0    CompressedSize                       N
    20488       4    UncompressedSize                     N
    20489       8    OperatingSystem                      N
    20490      13    ModifyDate                           N
    20491      18    PackingMethod                        N
    20492      25    ArchivedFileName                     N
     34646  Index1   Tag Name                             Writable
     34647  ------   --------                             --------
     34648      0    CompressedSize                       no
     34649      4    UncompressedSize                     no
     34650      8    OperatingSystem                      no
     34651     13    ModifyDate                           no
     34652     18    PackingMethod                        no
     34653     25    ArchivedFileName                     no
    2049334654
    2049434655=head2 RTF Tags
     
    2049734658will also extract any non-standard tags found in this group.  As well,
    2049834659ExifTool will extract any custom properties that are found.  See
    20499 L<http://download.microsoft.com/download/2/f/5/2f599e18-07ee-4ec5-a1e7-f4e6a9423592/Word2007RTFSpec9.doc>
    20500 for the specification.
     34660L<http://www.microsoft.com/en-ca/download/details.aspx?id=10725> for the
     34661specification.
    2050134662
    2050234663  Tag ID               Tag Name                 Writable
    2050334664  ------               --------                 --------
    20504   'author'             Author                   N
    20505   'buptim'             BackupTime               N
    20506   'category'           Category                 N
    20507   'comment'            Comment                  N
    20508   'company'            Company                  N
    20509   'copyright'          Copyright                N
    20510   'creatim'            CreateDate               N
    20511   'doccomm'            Comments                 N
    20512   'edmins'             TotalEditTime            N
    20513   'hlinkbase'          HyperlinkBase            N
    20514   'id'                 InternalIDNumber         N
    20515   'keywords'           Keywords                 N
    20516   'manager'            Manager                  N
    20517   'nofchars'           Characters               N
    20518   'nofcharsws'         CharactersWithSpaces     N
    20519   'nofpages'           Pages                    N
    20520   'nofwords'           Words                    N
    20521   'operator'           LastModifiedBy           N
    20522   'printim'            LastPrinted              N
    20523   'revtim'             ModifyDate               N
    20524   'subject'            Subject                  N
    20525   'title'              Title                    N
    20526   'vern'               InternalVersionNumber    N
    20527   'version'            RevisionNumber           N
     34665  'author'             Author                   no
     34666  'buptim'             BackupTime               no
     34667  'category'           Category                 no
     34668  'comment'            Comment                  no
     34669  'company'            Company                  no
     34670  'copyright'          Copyright                no
     34671  'creatim'            CreateDate               no
     34672  'doccomm'            Comments                 no
     34673  'edmins'             TotalEditTime            no
     34674  'hlinkbase'          HyperlinkBase            no
     34675  'id'                 InternalIDNumber         no
     34676  'keywords'           Keywords                 no
     34677  'manager'            Manager                  no
     34678  'nofchars'           Characters               no
     34679  'nofcharsws'         CharactersWithSpaces     no
     34680  'nofpages'           Pages                    no
     34681  'nofwords'           Words                    no
     34682  'operator'           LastModifiedBy           no
     34683  'printim'            LastPrinted              no
     34684  'revtim'             ModifyDate               no
     34685  'subject'            Subject                  no
     34686  'title'              Title                    no
     34687  'vern'               InternalVersionNumber    no
     34688  'version'            RevisionNumber           no
    2052834689
    2052934690=head2 OOXML Tags
     
    2054634707  Tag Name                                      Writable
    2054734708  --------                                      --------
    20548   AppVersion                                    N
    20549   Application                                   N
    20550   Characters                                    N
    20551   CharactersWithSpaces                          N
    20552   CheckedBy                                     N
    20553   Client                                        N
    20554   Company                                       N
    20555   DateCompleted                                 N
    20556   Department                                    N
    20557   Destination                                   N
    20558   Disposition                                   N
    20559   Division                                      N
    20560   DocSecurity                                   N
    20561   DocumentNumber                                N
    20562   Editor                                        N
    20563   ForwardTo                                     N
    20564   Group                                         N
    20565   HeadingPairs                                  N
    20566   HiddenSlides                                  N
    20567   HyperlinkBase                                 N
    20568   HyperlinksChanged                             N
    20569   Language                                      N
    20570   Lines                                         N
    20571   LinksUpToDate                                 N
    20572   MMClips                                       N
    20573   Mailstop                                      N
    20574   Manager                                       N
    20575   Matter                                        N
    20576   Notes                                         N
    20577   Office                                        N
    20578   Owner                                         N
    20579   Pages                                         N
    20580   Paragraphs                                    N
    20581   PresentationFormat                            N
    20582   Project                                       N
    20583   Publisher                                     N
    20584   Purpose                                       N
    20585   ReceivedFrom                                  N
    20586   RecordedBy                                    N
    20587   RecordedDate                                  N
    20588   Reference                                     N
    20589   ScaleCrop                                     N
    20590   SharedDoc                                     N
    20591   Slides                                        N
    20592   Source                                        N
    20593   Status                                        N
    20594   TelephoneNumber                               N
    20595   Template                                      N
    20596   TitlesOfParts                                 N
    20597   TotalEditTime                                 N
    20598   Typist                                        N
    20599   Words                                         N
    20600   Category                                      N
    20601   CreateDate                                    N
    20602   Keywords                                      N
    20603   LastModifiedBy                                N
    20604   LastPrinted                                   N
    20605   ModifyDate                                    N
    20606   RevisionNumber                                N
     34709  AppVersion                                    no
     34710  Application                                   no
     34711  Category                                      no
     34712  Characters                                    no
     34713  CharactersWithSpaces                          no
     34714  CheckedBy                                     no
     34715  Client                                        no
     34716  Company                                       no
     34717  CreateDate                                    no
     34718  DateCompleted                                 no
     34719  Department                                    no
     34720  Destination                                   no
     34721  Disposition                                   no
     34722  Division                                      no
     34723  DocSecurity                                   no
     34724  DocumentNumber                                no
     34725  Editor                                        no
     34726  ForwardTo                                     no
     34727  Group                                         no
     34728  HeadingPairs                                  no
     34729  HiddenSlides                                  no
     34730  HyperlinkBase                                 no
     34731  HyperlinksChanged                             no
     34732  Keywords                                      no
     34733  Language                                      no
     34734  LastModifiedBy                                no
     34735  LastPrinted                                   no
     34736  Lines                                         no
     34737  LinksUpToDate                                 no
     34738  MMClips                                       no
     34739  Mailstop                                      no
     34740  Manager                                       no
     34741  Matter                                        no
     34742  ModifyDate                                    no
     34743  Notes                                         no
     34744  Office                                        no
     34745  Owner                                         no
     34746  Pages                                         no
     34747  Paragraphs                                    no
     34748  PresentationFormat                            no
     34749  Project                                       no
     34750  Publisher                                     no
     34751  Purpose                                       no
     34752  ReceivedFrom                                  no
     34753  RecordedBy                                    no
     34754  RecordedDate                                  no
     34755  Reference                                     no
     34756  RevisionNumber                                no
     34757  ScaleCrop                                     no
     34758  SharedDoc                                     no
     34759  Slides                                        no
     34760  Source                                        no
     34761  Status                                        no
     34762  TelephoneNumber                               no
     34763  Template                                      no
     34764  TitlesOfParts                                 no
     34765  TotalEditTime                                 no
     34766  Typist                                        no
     34767  Words                                         no
    2060734768
    2060834769=head2 iWork Tags
     
    2061434775  Tag Name                                      Writable
    2061534776  --------                                      --------
    20616   Author                                        N
    20617   Comment                                       N
    20618   Copyright                                     N
    20619   Keywords                                      N
    20620   Projects                                      N+
    20621   Title                                         N
    20622 
    20623 =head2 Extra Tags
    20624 
    20625 The extra tags represent extra information extracted or generated by
    20626 ExifTool that is not directly associated with another tag group.  The three
    20627 writable "pseudo" tags (FileName, Directory and FileModifyDate) may be
    20628 written without the need to rewrite the file since their values are not
    20629 contained within the file data.  These "pseudo" tags belong to the family 1
    20630 "System" group.
     34777  Author                                        no
     34778  Comment                                       no
     34779  Copyright                                     no
     34780  Keywords                                      no
     34781  Projects                                      no+
     34782  Title                                         no
     34783
     34784=head2 ISO Tags
     34785
     34786Tags extracted from ISO 9660 disk images.
     34787
     34788  Tag ID   Tag Name                             Writable
     34789  ------   --------                             --------
     34790  0x0000   BootRecord                           ISO BootRecord
     34791  0x0001   PrimaryVolume                        ISO PrimaryVolume
     34792
     34793=head3 ISO BootRecord Tags
     34794
     34795  Index1   Tag Name                             Writable
     34796  ------   --------                             --------
     34797      7    BootSystem                           no
     34798     39    BootIdentifier                       no
     34799
     34800=head3 ISO PrimaryVolume Tags
     34801
     34802  Index1   Tag Name                             Writable
     34803  ------   --------                             --------
     34804      8    System                               no
     34805     40    VolumeName                           no
     34806     80    VolumeBlockCount                     no
     34807    120    VolumeSetDiskCount?                  no
     34808    124    VolumeSetDiskNumber?                 no
     34809    128    VolumeBlockSize                      no
     34810    132    PathTableSize?                       no
     34811    140    PathTableLocation?                   no
     34812    174    RootDirectoryCreateDate              no
     34813    190    VolumeSetName                        no
     34814    318    Publisher                            no
     34815    446    DataPreparer                         no
     34816    574    Software                             no
     34817    702    CopyrightFileName                    no
     34818    740    AbstractFileName                     no
     34819    776    BibligraphicFileName                 no
     34820    813    VolumeCreateDate                     no
     34821    830    VolumeModifyDate                     no
     34822    847    VolumeExpirationDate                 no
     34823    864    VolumeEffectiveDate                  no
     34824
     34825=head2 MacOS Tags
     34826
     34827On MacOS systems, the there are additional MDItem and XAttr Finder tags that
     34828may be extracted.  These tags are not extracted by default -- they must be
     34829specifically requested or enabled via an API option.  (Except when reading
     34830MacOS "._" files directly, see below.)
     34831
     34832The tables below list some of the tags that may be extracted, but ExifTool
     34833will extract all available information even for tags not listed.
     34834
     34835Tags in these tables are referred to as "pseudo" tags because their
     34836information is not stored in the file itself.  As such, B<Writable> tags in
     34837these tables may be changed without having to rewrite the file.
     34838
     34839Note that on some filesystems, MacOS creates sidecar files with names that
     34840begin with "._".  ExifTool will read these files if specified, and extract
     34841the information listed in the following table without the need for extra
     34842options, but these files are not writable directly.
     34843
     34844  Tag ID   Tag Name                             Writable
     34845  ------   --------                             --------
     34846  0x0002   RSRC                                 RSRC
     34847  0x0009   ATTR                                 MacOS XAttr
     34848
     34849=head3 MacOS XAttr Tags
     34850
     34851XAttr tags are extracted using the "xattr" utility.  They are extracted if
     34852any "XAttr*" tag or the MacOS group is specifically requested, or by setting
     34853the XAttrTags API option to 1 or the RequestAll API option to 2 or higher.
     34854And they extracted by default from MacOS "._" files when reading
     34855these files directly.
    2063134856
    2063234857  Tag Name                                      Writable
    2063334858  --------                                      --------
    20634   CanonVRD                                      Y!
    20635   Comment                                       Y
    20636   CurrentIPTCDigest                             N
    20637   Directory                                     Y!
    20638   EXIF                                          Y!
    20639   Error                                         N
    20640   ExifByteOrder                                 Y
    20641   ExifToolVersion                               N
    20642   ExifUnicodeByteOrder                          Y
    20643   FileModifyDate                                Y!
    20644   FileName                                      Y!
    20645   FilePermissions                               N
    20646   FileSize                                      N
    20647   FileType                                      N
    20648   Geosync                                       Y
    20649   Geotag                                        Y
    20650   Geotime                                       Y
    20651   ICC_Profile                                   Y!
    20652   ID3Size                                       N
    20653   ImageHeight                                   N
    20654   ImageWidth                                    N
    20655   JPEGDigest                                    N
    20656   MIMEType                                      N
    20657   MaxVal                                        N
    20658   Now                                           N
    20659   PreviewImage                                  Y
    20660   PreviewPNG                                    N
    20661   RAFVersion                                    N
    20662   ResourceForkSize                              N
    20663   Warning                                       N
    20664   XMP                                           Y!
    20665   XResolution                                   N
    20666   YResolution                                   N
     34859  XAttrAppleMailDateReceived                    no
     34860  XAttrAppleMailDateSent                        no
     34861  XAttrAppleMailIsRemoteAttachment              no
     34862  XAttrFinderInfo                               no
     34863  XAttrLastUsedDate                             no
     34864  XAttrMDItemDownloadedDate                     no
     34865  XAttrMDItemFinderComment                      no
     34866  XAttrMDItemWhereFroms                         no
     34867  XAttrMDLabel                                  no
     34868  XAttrQuarantine                               yes!
     34869  XAttrResourceFork                             no
     34870
     34871=head3 MacOS MDItem Tags
     34872
     34873MDItem tags are extracted using the "mdls" utility.  They are extracted if
     34874any "MDItem*" tag or the MacOS group is specifically requested, or by
     34875setting the MDItemTags API option to 1 or the RequestAll API option to 2 or
     34876higher.  Note that these tags do not necessarily reflect the current
     34877metadata of a file -- it may take some time for the MacOS mdworker daemon to
     34878index the file after a metadata change.
     34879
     34880  Tag Name                                      Writable
     34881  --------                                      --------
     34882  AppleMailDateReceived                         no
     34883  AppleMailDateSent                             no
     34884  AppleMailFlagged                              no
     34885  AppleMailIsRemoteAttachment                   no
     34886  AppleMailMessageID                            no
     34887  AppleMailPriority                             no
     34888  AppleMailRead                                 no
     34889  AppleMailRepliedTo                            no
     34890  MDItemAccountHandles                          no
     34891  MDItemAccountIdentifier                       no
     34892  MDItemAcquisitionMake                         no
     34893  MDItemAcquisitionModel                        no
     34894  MDItemAltitude                                no
     34895  MDItemAperture                                no
     34896  MDItemAudioBitRate                            no
     34897  MDItemAudioChannelCount                       no
     34898  MDItemAuthorEmailAddresses                    no
     34899  MDItemAuthors                                 no
     34900  MDItemBitsPerSample                           no
     34901  MDItemBundleIdentifier                        no
     34902  MDItemCity                                    no
     34903  MDItemCodecs                                  no
     34904  MDItemColorSpace                              no
     34905  MDItemComment                                 no
     34906  MDItemContentCreationDate                     no
     34907  MDItemContentCreationDateRanking              no
     34908  MDItemContentCreationDate_Ranking             no
     34909  MDItemContentModificationDate                 no
     34910  MDItemContentType                             no
     34911  MDItemContentTypeTree                         no
     34912  MDItemContributors                            no
     34913  MDItemCopyright                               no
     34914  MDItemCountry                                 no
     34915  MDItemCreator                                 no
     34916  MDItemDateAdded                               no
     34917  MDItemDateAdded_Ranking                       no
     34918  MDItemDescription                             no
     34919  MDItemDisplayName                             no
     34920  MDItemDownloadedDate                          no
     34921  MDItemDurationSeconds                         no
     34922  MDItemEXIFGPSVersion                          no
     34923  MDItemEXIFVersion                             no
     34924  MDItemEmailConversationID                     no
     34925  MDItemEncodingApplications                    no
     34926  MDItemExposureMode                            no
     34927  MDItemExposureProgram                         no
     34928  MDItemExposureTimeSeconds                     no
     34929  MDItemFNumber                                 no
     34930  MDItemFSContentChangeDate                     no
     34931  MDItemFSCreationDate                          yes!
     34932  MDItemFSCreatorCode                           no
     34933  MDItemFSFinderFlags                           no
     34934  MDItemFSHasCustomIcon                         no
     34935  MDItemFSInvisible                             no
     34936  MDItemFSIsExtensionHidden                     no
     34937  MDItemFSIsStationery                          no
     34938  MDItemFSLabel                                 yes!
     34939  MDItemFSName                                  no
     34940  MDItemFSNodeCount                             no
     34941  MDItemFSOwnerGroupID                          no
     34942  MDItemFSOwnerUserID                           no
     34943  MDItemFSSize                                  no
     34944  MDItemFSTypeCode                              no
     34945  MDItemFinderComment                           yes!
     34946  MDItemFlashOnOff                              no
     34947  MDItemFocalLength                             no
     34948  MDItemGPSDateStamp                            no
     34949  MDItemGPSStatus                               no
     34950  MDItemGPSTrack                                no
     34951  MDItemHasAlphaChannel                         no
     34952  MDItemISOSpeed                                no
     34953  MDItemIdentifier                              no
     34954  MDItemImageDirection                          no
     34955  MDItemInterestingDateRanking                  no
     34956  MDItemInterestingDate_Ranking                 no
     34957  MDItemIsApplicationManaged                    no
     34958  MDItemIsExistingThread                        no
     34959  MDItemIsLikelyJunk                            no
     34960  MDItemKeywords                                no
     34961  MDItemKind                                    no
     34962  MDItemLastUsedDate                            no
     34963  MDItemLastUsedDate_Ranking                    no
     34964  MDItemLatitude                                no
     34965  MDItemLensModel                               no
     34966  MDItemLogicalSize                             no
     34967  MDItemLongitude                               no
     34968  MDItemMailDateReceived_Ranking                no
     34969  MDItemMailboxes                               no
     34970  MDItemMediaTypes                              no
     34971  MDItemNumberOfPages                           no
     34972  MDItemOrientation                             no
     34973  MDItemOriginApplicationIdentifier             no
     34974  MDItemOriginMessageID                         no
     34975  MDItemOriginSenderDisplayName                 no
     34976  MDItemOriginSenderHandle                      no
     34977  MDItemOriginSubject                           no
     34978  MDItemPageHeight                              no
     34979  MDItemPageWidth                               no
     34980  MDItemPhysicalSize                            no
     34981  MDItemPixelCount                              no
     34982  MDItemPixelHeight                             no
     34983  MDItemPixelWidth                              no
     34984  MDItemPrimaryRecipientEmailAddresses          no
     34985  MDItemProfileName                             no
     34986  MDItemRecipients                              no
     34987  MDItemRedEyeOnOff                             no
     34988  MDItemResolutionHeightDPI                     no
     34989  MDItemResolutionWidthDPI                      no
     34990  MDItemSecurityMethod                          no
     34991  MDItemSpeed                                   no
     34992  MDItemStateOrProvince                         no
     34993  MDItemStreamable                              no
     34994  MDItemSubject                                 no
     34995  MDItemTimestamp                               no
     34996  MDItemTitle                                   no
     34997  MDItemTotalBitRate                            no
     34998  MDItemUseCount                                no
     34999  MDItemUsedDates                               no
     35000  MDItemUserDownloadedDate                      no
     35001  MDItemUserDownloadedUserHandle                no
     35002  MDItemUserSharedReceivedDate                  no
     35003  MDItemUserSharedReceivedRecipient             no
     35004  MDItemUserSharedReceivedRecipientHandle       no
     35005  MDItemUserSharedReceivedSender                no
     35006  MDItemUserSharedReceivedSenderHandle          no
     35007  MDItemUserSharedReceivedTransport             no
     35008  MDItemUserTags                                yes!+
     35009  MDItemVersion                                 no
     35010  MDItemVideoBitRate                            no
     35011  MDItemWhereFroms                              no
     35012  MDItemWhiteBalance                            no
     35013
     35014=head2 Extra Tags
     35015
     35016The extra tags provide extra features or extra information extracted or
     35017generated by ExifTool that is not directly associated with another tag
     35018group.  The B<Group> column lists the family 1 group name when reading.
     35019Tags with a "-" in this column are write-only.
     35020
     35021Tags in the family 1 "System" group are referred to as "pseudo" tags because
     35022they don't represent real metadata in the file.  Instead, this information
     35023is stored in the directory structure of the filesystem.  The B<Writable>
     35024System "pseudo" tags in this table may be written without modifying the file
     35025itself.  The TestName tag is used for dry-run testing before writing
     35026FileName.
     35027
     35028  Tag Name                   Group              Writable
     35029  --------                   -----              --------
     35030  Adobe                      Adobe              yes!
     35031  CanonDR4                   CanonVRD           yes!^
     35032  CanonVRD                   CanonVRD           yes!^
     35033  Comment                    File               yes
     35034  CurrentIPTCDigest          File               no
     35035  Directory                  System             yes!
     35036  EXIF                       EXIF               yes!
     35037  EmbeddedVideo              File               no
     35038  Error                      ExifTool           no
     35039  ExifByteOrder              File               yes
     35040  ExifToolVersion            ExifTool           no
     35041  ExifUnicodeByteOrder       -                  yes
     35042  FileAccessDate             System             no
     35043  FileAttributes             System             no
     35044  FileBlockCount             System             no
     35045  FileBlockSize              System             no
     35046  FileCreateDate             System             yes!
     35047  FileDeviceID               System             no
     35048  FileDeviceNumber           System             no
     35049  FileGroupID                System             yes!
     35050  FileHardLinks              System             no
     35051  FileInodeChangeDate        System             no
     35052  FileInodeNumber            System             no
     35053  FileModifyDate             System             yes!
     35054  FileName                   System             yes!
     35055  FilePath                   System             no
     35056  FilePermissions            System             yes!
     35057  FileSequence               ExifTool           no
     35058  FileSize                   System             no
     35059  FileType                   File               no
     35060  FileTypeExtension          File               no
     35061  FileUserID                 System             yes!
     35062  ForceWrite                 -                  yes
     35063  Geosync                    -                  yes
     35064  Geotag                     -                  yes
     35065  Geotime                    -                  yes
     35066  HardLink                   -                  yes!
     35067  ICC_Profile                ICC_Profile        yes!
     35068  ID3Size                    File               no
     35069  IPTC                       IPTC               yes!
     35070  ImageHeight                File               no
     35071  ImageWidth                 File               no
     35072  JPEGDigest                 File               no
     35073  JPEGImageLength            File               no
     35074  JPEGQualityEstimate        File               no
     35075  MIMEType                   File               no
     35076  MaxVal                     File               no
     35077  NewGUID                    ExifTool           no
     35078  Now                        ExifTool           no
     35079  OtherImage                 File               no
     35080  PreviewImage               File               yes
     35081  PreviewPDF                 File               no
     35082  PreviewPNG                 File               no
     35083  PreviewTIFF                File               no
     35084  PreviewWMF                 File               no
     35085  ProcessingTime             ExifTool           no
     35086  RAFVersion                 File               no
     35087  ResourceForkSize           System             no
     35088  SymLink                    -                  yes!
     35089  TestName                   -                  yes!
     35090  ThumbnailImage             File               no
     35091  Trailer                    File               yes!
     35092  Validate                   ExifTool           no
     35093  Warning                    ExifTool           no
     35094  XML                        XML                no
     35095  XMP                        XMP                yes!
     35096  XResolution                File               no
     35097  YResolution                File               no
    2066735098
    2066835099=head2 Composite Tags
     
    2067035101The values of the composite tags are B<Derived From> the values of other
    2067135102tags.  These are convenience tags which are calculated after all other
    20672 information is extracted.
     35103information is extracted.  Only a few of these tags are writable directly,
     35104the others are changed by writing the corresponding B<Derived From> tags.
     35105User-defined Composite tags, also useful for custom-formatting of tag
     35106values, may created via the ExifTool configuration file.
    2067335107
    2067435108  Tag Name             Derived From             Writable
    2067535109  --------             ------------             --------
    20676   Aperture             FNumber                  N
     35110  AdvancedSceneMode    Model                    no
     35111                       SceneMode
     35112                       AdvancedSceneType
     35113  Aperture             FNumber                  no
    2067735114                       ApertureValue
    20678   AudioBitrate         MPEG:MPEGAudioVersion    N
     35115  AudioBitrate         MPEG:MPEGAudioVersion    no
    2067935116                       MPEG:SampleRate
    2068035117                       MPEG:VBRBytes
    2068135118                       MPEG:VBRFrames
    20682   AutoFocus            Nikon:PhaseDetectAF      N
     35119  AutoFocus            Nikon:PhaseDetectAF      no
    2068335120                       Nikon:ContrastDetectAF
    20684   AvgBitrate           QuickTime::MovieDataSize N
     35121  AvgBitrate           QuickTime::MediaDataSize no
    2068535122                       QuickTime::Duration
    20686   BlueBalance          WB_RGGBLevels            N
     35123  BlueBalance          WB_RGGBLevels            no
    2068735124                       WB_RGBGLevels
    2068835125                       WB_RBGGLevels
     
    2069135128                       WB_GBRGLevels
    2069235129                       WB_RGBLevels
     35130                       WB_GRBLevels
    2069335131                       WB_RBLevels
    2069435132                       WBBlueLevel
    2069535133                       WBGreenLevel
    20696   CFAPattern           CFARepeatPatternDim      N
     35134  CDDBDiscPlayTime     CDDB1Info                no
     35135  CDDBDiscTracks       CDDB1Info                no
     35136  CFAPattern           CFARepeatPatternDim      no
    2069735137                       CFAPattern2
    20698   CircleOfConfusion    ScaleFactor35efl         N
    20699   ConditionalFEC       FlashExposureComp        N
     35138  CircleOfConfusion    ScaleFactor35efl         no
     35139  ConditionalFEC       FlashExposureComp        no
    2070035140                       FlashBits
    20701   DOF                  FocalLength              N
     35141  DOF                  FocalLength              no
    2070235142                       Aperture
    2070335143                       CircleOfConfusion
     
    2070535145                       SubjectDistance
    2070635146                       ObjectDistance
    20707   DateCreated          Kodak:YearCreated        N
     35147                       ApproximateFocusDistance
     35148                       FocusDistanceLower
     35149                       FocusDistanceUpper
     35150  DateCreated          Kodak:YearCreated        no
    2070835151                       Kodak:MonthDayCreated
    20709   DateTimeCreated      IPTC:DateCreated         N
     35152  DateTimeCreated      IPTC:DateCreated         no
    2071035153                       IPTC:TimeCreated
    20711   DateTimeOriginal     DateTimeCreated          N
     35154  DateTimeOriginal     DateTimeCreated          no
    2071235155                       DateCreated
    2071335156                       TimeCreated
    20714   DateTimeOriginal     ID3:RecordingTime        N
     35157  DateTimeOriginal     ID3:RecordingTime        no
    2071535158                       ID3:Year
    2071635159                       ID3:Date
    2071735160                       ID3:Time
    20718   DigitalCreationDateTime IPTC:DigitalCreationDate N
     35161  DepthMapTiff         DepthMapData             no
     35162                       DepthMapWidth
     35163                       DepthMapHeight
     35164  DigitalCreationDateTime IPTC:DigitalCreationDate no
    2071935165                       IPTC:DigitalCreationTime
    20720   DigitalZoom          Canon:ZoomSourceWidth    N
     35166  DigitalZoom          Canon:ZoomSourceWidth    no
    2072135167                       Canon:ZoomTargetWidth
    2072235168                       Canon:DigitalZoom
    20723   DriveMode            ContinuousDrive          N
     35169  DriveMode            ContinuousDrive          no
    2072435170                       SelfTimer
    20725   Duration             FLAC:SampleRate          N
     35171  Duration             AIFF:SampleRate          no
     35172                       AIFF:NumSampleFrames
     35173  Duration             APE:SampleRate           no
     35174                       APE:TotalFrames
     35175                       APE:BlocksPerFrame
     35176                       APE:FinalFrameBlocks
     35177  Duration             FLAC:SampleRate          no
    2072635178                       FLAC:TotalSamples
    20727   Duration             FileSize                 N
     35179  Duration             FileSize                 no
    2072835180                       ID3Size
    2072935181                       MPEG:AudioBitrate
     
    2073235184                       MPEG:SampleRate
    2073335185                       MPEG:MPEGAudioVersion
    20734   Duration             RIFF:FrameRate           N
     35186  Duration             RIFF:FrameRate           no
    2073535187                       RIFF:FrameCount
    2073635188                       VideoFrameRate
    2073735189                       VideoFrameCount
    20738   Duration             RIFF:AvgBytesPerSec      N
     35190  Duration             RIFF:AvgBytesPerSec      no
    2073935191                       FileSize
    2074035192                       FrameCount
    2074135193                       VideoFrameCount
    20742   ExtenderStatus       Olympus:Extender         N
     35194  Duration             Vorbis:NominalBitrate    no
     35195                       FileSize
     35196  ExtenderStatus       Olympus:Extender         no
    2074335197                       Olympus:LensType
    2074435198                       MaxApertureValue
    20745   FOV                  FocalLength              N
     35199  FOV                  FocalLength              no
    2074635200                       ScaleFactor35efl
    2074735201                       FocusDistance
    20748   FileNumber           DirectoryIndex           Y
     35202  FileNumber           DirectoryIndex           yes
    2074935203                       FileIndex
    20750   FlashType            FlashBits                N
    20751   FocalLength35efl     FocalLength              N
     35204  Flash                XMP:FlashFired           yes
     35205                       XMP:FlashReturn
     35206                       XMP:FlashMode
     35207                       XMP:FlashFunction
     35208                       XMP:FlashRedEyeMode
     35209                       XMP:Flash
     35210  FlashType            FlashBits                no
     35211  FocalLength35efl     FocalLength              no
    2075235212                       ScaleFactor35efl
    20753   GPSAltitude          QuickTime:GPSCoordinates N
    20754   GPSAltitudeRef       QuickTime:GPSCoordinates N
    20755   GPSAltitude          GPS:GPSAltitude          N
     35213  FocusDistance        Sony:FocusPosition       no
     35214                       FocalLength
     35215  FocusDistance2       Sony:FocusPosition2      no
     35216                       FocalLengthIn35mmFormat
     35217  GPSAltitude          GPS:GPSAltitude          no
    2075635218                       GPS:GPSAltitudeRef
    2075735219                       XMP:GPSAltitude
    2075835220                       XMP:GPSAltitudeRef
    20759   GPSDateTime          GPS:GPSDateStamp         N
     35221  GPSAltitude          QuickTime:GPSCoordinates no
     35222  GPSAltitude          QuickTime:LocationInformation no
     35223  GPSAltitudeRef       QuickTime:GPSCoordinates no
     35224  GPSAltitudeRef       QuickTime:LocationInformation no
     35225  GPSDateTime          GPS:GPSDateStamp         no
    2076035226                       GPS:GPSTimeStamp
    20761   GPSLatitude          QuickTime:GPSCoordinates N
    20762   GPSLatitudeRef       XMP:GPSLatitude          N
    20763   GPSLatitude          GPS:GPSLatitude          N
     35227  GPSDateTime          Parrot:GPSLatitude       no
     35228                       Main:CreateDate
     35229                       SampleTime
     35230  GPSDateTime          Sony:GPSDateStamp        no
     35231                       Sony:GPSTimeStamp
     35232  GPSDestLatitude      GPS:GPSDestLatitude      no
     35233                       GPS:GPSDestLatitudeRef
     35234  GPSDestLatitudeRef   XMP-exif:GPSDestLatitude no
     35235  GPSDestLongitude     GPS:GPSDestLongitude     no
     35236                       GPS:GPSDestLongitudeRef
     35237  GPSDestLongitudeRef  XMP-exif:GPSDestLongitude no
     35238  GPSLatitude          GPS:GPSLatitude          no
    2076435239                       GPS:GPSLatitudeRef
    20765   GPSLongitude         QuickTime:GPSCoordinates N
    20766   GPSLongitudeRef      XMP:GPSLongitude         N
    20767   GPSLongitude         GPS:GPSLongitude         N
     35240  GPSLatitude          QuickTime:GPSCoordinates no
     35241  GPSLatitude          QuickTime:LocationInformation no
     35242  GPSLatitudeRef       XMP-exif:GPSLatitude     no
     35243  GPSLongitude         GPS:GPSLongitude         no
    2076835244                       GPS:GPSLongitudeRef
    20769   GPSPosition          GPSLatitude              N
     35245  GPSLongitude         QuickTime:GPSCoordinates no
     35246  GPSLongitude         QuickTime:LocationInformation no
     35247  GPSLongitudeRef      XMP-exif:GPSLongitude    no
     35248  GPSPosition          GPSLatitude              no
    2077035249                       GPSLongitude
    20771   HyperfocalDistance   FocalLength              N
     35250  HyperfocalDistance   FocalLength              no
    2077235251                       Aperture
    2077335252                       CircleOfConfusion
    20774   IDCPreviewImage      IDCPreviewStart          N
     35253  IDCPreviewImage      IDCPreviewStart          no
    2077535254                       IDCPreviewLength
    20776   ISO                  Canon:CameraISO          N
     35255  ISO                  Canon:CameraISO          no
    2077735256                       Canon:BaseISO
    2077835257                       Canon:AutoISO
    20779   ImageHeight          Main:PostScript:ImageData N
     35258  ImageHeight          IFD0:SensorTopBorder     no
     35259                       IFD0:SensorBottomBorder
     35260  ImageHeight          Main:PostScript:ImageData no
    2078035261                       PostScript:BoundingBox
    20781   ImageSize            ImageWidth               N
     35262  ImageSize            ImageWidth               no
    2078235263                       ImageHeight
    2078335264                       ExifImageWidth
    2078435265                       ExifImageHeight
    20785   ImageWidth           Main:PostScript:ImageData N
     35266                       RawImageCroppedSize
     35267  ImageWidth           IFD0:SensorLeftBorder    no
     35268                       IFD0:SensorRightBorder
     35269  ImageWidth           Main:PostScript:ImageData no
    2078635270                       PostScript:BoundingBox
    20787   JpgFromRaw           JpgFromRawStart          Y
     35271  JpgFromRaw           JpgFromRawStart          yes
    2078835272                       JpgFromRawLength
    20789   Lens                 ShortFocal               N
    20790                        LongFocal
    20791   Lens35efl            ShortFocal               N
    20792                        LongFocal
     35273  Lens                 Canon:MinFocalLength     no
     35274                       Canon:MaxFocalLength
     35275  Lens35efl            Canon:MinFocalLength     no
     35276                       Canon:MaxFocalLength
    2079335277                       Lens
    2079435278                       ScaleFactor35efl
    20795   LensID               LensType                 N
     35279  LensID               LensType                 no
    2079635280                       FocalLength
    2079735281                       MaxAperture
    2079835282                       MaxApertureValue
    20799                        ShortFocal
    20800                        LongFocal
     35283                       MinFocalLength
     35284                       MaxFocalLength
    2080135285                       LensModel
    2080235286                       LensFocalRange
    20803   LensID               Nikon:LensIDNumber       N
     35287                       LensSpec
     35288                       LensType2
     35289                       LensType3
     35290                       LensFocalLength
     35291                       RFLensType
     35292  LensID               LensModel                no
     35293                       Lens
     35294                       XMP-aux:LensID
     35295                       Make
     35296  LensID               Nikon:LensIDNumber       no
    2080435297                       LensFStops
    2080535298                       MinFocalLength
     
    2080935302                       MCUVersion
    2081035303                       Nikon:LensType
    20811   LensID               Ricoh:LensFirmware       N
    20812   LensSpec             Nikon:Lens               N
     35304  LensID               Ricoh:LensFirmware       no
     35305  LensID               XMP-aux:LensID           no
     35306                       Make
     35307                       LensInfo
     35308                       FocalLength
     35309                       LensModel
     35310                       MaxApertureValue
     35311  LensSpec             Nikon:Lens               no
    2081335312                       Nikon:LensType
    20814   LightValue           Aperture                 N
     35313  LensType             LensTypeMake             no
     35314                       LensTypeModel
     35315  LightValue           Aperture                 no
    2081535316                       ShutterSpeed
    2081635317                       ISO
    20817   MPImage              MPImageStart             N
     35318  MPImage              MPImageStart             no
    2081835319                       MPImageLength
    2081935320                       MPImageType
    20820   OriginalDecisionData OriginalDecisionDataOffset Y!
    20821   OtherImage           OtherImageStart          N
     35321  Megapixels           ImageSize                no
     35322  OriginalDecisionData OriginalDecisionDataOffset yes!
     35323  OtherImage           OtherImageStart          yes
    2082235324                       OtherImageLength
    20823   PreviewImage         PreviewImageStart        Y
     35325  PeakSpectralSensitivity FLIR:PlanckB          no
     35326  PreviewImage         PreviewImageStart        yes
    2082435327                       PreviewImageLength
    2082535328                       PreviewImageValid
    2082635329                       PreviewImageStart (1)
    2082735330                       PreviewImageLength (1)
    20828   PreviewImageSize     PreviewImageWidth        N
     35331  PreviewImage         ScreenNail               no
     35332  PreviewImageSize     PreviewImageWidth        no
    2082935333                       PreviewImageHeight
    20830   PreviewImage         ScreenNail               N
    20831   RedBalance           WB_RGGBLevels            N
     35334  RedBalance           WB_RGGBLevels            no
    2083235335                       WB_RGBGLevels
    2083335336                       WB_RBGGLevels
     
    2083635339                       WB_GBRGLevels
    2083735340                       WB_RGBLevels
     35341                       WB_GRBLevels
    2083835342                       WB_RBLevels
    2083935343                       WBRedLevel
    2084035344                       WBGreenLevel
    20841   RedEyeReduction      CanonFlashMode           N
     35345  RedEyeReduction      CanonFlashMode           no
    2084235346                       FlashBits
    20843   Rotation             QuickTime:MatrixStructure N
     35347  RicohPitch           Ricoh:Accelerometer      no
     35348  RicohRoll            Ricoh:Accelerometer      no
     35349  Rotation             QuickTime:MatrixStructure yes!
    2084435350                       QuickTime:HandlerType
    20845   ScaleFactor35efl     FocalLength              N
     35351  RunTimeSincePowerUp  Apple:RunTimeValue       no
     35352                       Apple:RunTimeScale
     35353  ScaleFactor35efl     FocalLength              no
    2084635354                       FocalLengthIn35mmFormat
    2084735355                       Composite:DigitalZoom
    2084835356                       FocalPlaneDiagonal
     35357                       SensorSize
    2084935358                       FocalPlaneXSize
    2085035359                       FocalPlaneYSize
     
    2085835367                       ImageWidth
    2085935368                       ImageHeight
    20860   ShootingMode         CanonExposureMode        N
     35369  ShootingMode         CanonExposureMode        no
    2086135370                       EasyMode
    2086235371                       BulbDuration
    20863   ShutterCurtainHack   FlashBits                N
     35372  ShutterCurtainHack   FlashBits                no
    2086435373                       ShutterCurtainSync
    20865   ShutterSpeed         ExposureTime             N
     35374  ShutterSpeed         ExposureTime             no
    2086635375                       ShutterSpeedValue
    2086735376                       BulbDuration
    20868   SubSecCreateDate     EXIF:CreateDate          N
     35377  SingleShotDepthMapTiff SingleShotDepthMap     no
     35378                       SegWidth
     35379                       SegHeight
     35380  SubSecCreateDate     EXIF:CreateDate          yes
    2086935381                       SubSecTimeDigitized
    20870   SubSecDateTimeOriginal EXIF:DateTimeOriginal  N
     35382                       OffsetTimeDigitized
     35383  SubSecDateTimeOriginal EXIF:DateTimeOriginal  yes
    2087135384                       SubSecTimeOriginal
    20872   SubSecModifyDate     EXIF:ModifyDate          N
     35385                       OffsetTimeOriginal
     35386  SubSecModifyDate     EXIF:ModifyDate          yes
    2087335387                       SubSecTime
    20874   ThumbnailImage       ThumbnailOffset          Y
     35388                       OffsetTime
     35389  ThumbnailImage       ThumbnailOffset          yes
    2087535390                       ThumbnailLength
    20876   WB_RGBLevels         KDC_IFD:WhiteBalance     N
     35391  ThumbnailTIFF        SubfileType              no
     35392                       Compression
     35393                       ImageWidth
     35394                       ImageHeight
     35395                       BitsPerSample
     35396                       PhotometricInterpretation
     35397                       StripOffsets
     35398                       SamplesPerPixel
     35399                       RowsPerStrip
     35400                       StripByteCounts
     35401                       PlanarConfiguration
     35402                       Orientation
     35403  VolumeSize           ISO:VolumeBlockCount     no
     35404                       ISO:VolumeBlockSize
     35405  WB_RGBLevels         KDC_IFD:WhiteBalance     no
    2087735406                       WB_RGBLevelsAuto
    2087835407                       WB_RGBLevelsFluorescent
     
    2088235411                       WB_RGBLevels5
    2088335412                       WB_RGBLevelsShade
    20884   WB_RGBLevels         KodakIFD:WhiteBalance    N
     35413  WB_RGBLevels         KodakIFD:WhiteBalance    no
    2088535414                       WB_RGBMul0
    2088635415                       WB_RGBMul1
     
    2089335422                       KodakIFD:ColorTemperature
    2089435423                       Kodak:WB_RGBLevels
    20895   WB_RGGBLevels        Canon:WhiteBalance       N
     35424  WB_RGGBLevels        Canon:WhiteBalance       no
    2089635425                       WB_RGGBLevelsAsShot
    2089735426                       WB_RGGBLevelsAuto
     
    2090435433                       WB_RGGBLevelsShade
    2090535434                       WB_RGGBLevelsKelvin
    20906   WB_RGGBLevels        WB_RGGBLevelsUncorrected N
     35435  WB_RGGBLevels        WB_RGGBLevelsUncorrected no
    2090735436                       WB_RGGBLevelsBlack
    20908   ZoomedPreviewImage   ZoomedPreviewStart       N
     35437  ZoomedPreviewImage   ZoomedPreviewStart       no
    2090935438                       ZoomedPreviewLength
    2091035439
     
    2092235451  Tag Name             Refers To                Writable
    2092335452  --------             ---------                --------
    20924   AllDates             DateTimeOriginal         Y
     35453  AllDates             DateTimeOriginal         yes
    2092535454                       CreateDate
    2092635455                       ModifyDate
    20927   Canon                FileName                 Y
     35456  Canon                FileName                 yes
    2092835457                       Model
    2092935458                       DateTimeOriginal
     
    2095635485                       OwnerName
    2095735486                       SerialNumber
    20958   Common               FileName                 Y
     35487  ColorSpaceTags       ExifIFD:ColorSpace       yes
     35488                       ExifIFD:Gamma
     35489                       InteropIFD:InteropIndex
     35490                       ICC_Profile
     35491  Common               FileName                 yes
    2095935492                       FileSize
    2096035493                       Model
     
    2096835501                       WhiteBalance
    2096935502                       Flash
    20970   CommonIFD0           IFD0:ImageDescription    Y
     35503  CommonIFD0           IFD0:ImageDescription    yes
    2097135504                       IFD0:Make
    2097235505                       IFD0:Model
     
    2098535518                       IFD0:XPKeywords
    2098635519                       IFD0:XPSubject
    20987   MakerNotes           MakerNotes               Y
     35520  LargeTags            CanonVRD                 yes
     35521                       DLOData
     35522                       EXIF
     35523                       ICC_Profile
     35524                       IDCPreviewImage
     35525                       ImageData
     35526                       IPTC
     35527                       JpgFromRaw
     35528                       OriginalRawImage
     35529                       OtherImage
     35530                       PreviewImage
     35531                       ThumbnailImage
     35532                       TIFFPreview
     35533                       XML
     35534                       XMP
     35535                       ZoomedPreviewImage
     35536  MakerNotes           MakerNotes               yes
     35537                       MakerNoteApple
    2098835538                       MakerNoteCanon
    2098935539                       MakerNoteCasio
    2099035540                       MakerNoteCasio2
     35541                       MakerNoteDJI
     35542                       MakerNoteFLIR
    2099135543                       MakerNoteFujiFilm
    2099235544                       MakerNoteGE
    2099335545                       MakerNoteGE2
     35546                       MakerNoteHasselblad
    2099435547                       MakerNoteHP
    2099535548                       MakerNoteHP2
     
    2101035563                       MakerNoteKodak8a
    2101135564                       MakerNoteKodak8b
     35565                       MakerNoteKodak8c
    2101235566                       MakerNoteKodak9
    2101335567                       MakerNoteKodak10
     35568                       MakerNoteKodak11
     35569                       MakerNoteKodak12
    2101435570                       MakerNoteKodakUnknown
    2101535571                       MakerNoteKyocera
     
    2101735573                       MakerNoteMinolta2
    2101835574                       MakerNoteMinolta3
     35575                       MakerNoteMotorola
    2101935576                       MakerNoteNikon
    2102035577                       MakerNoteNikon2
    2102135578                       MakerNoteNikon3
     35579                       MakerNoteNintendo
    2102235580                       MakerNoteOlympus
    2102335581                       MakerNoteOlympus2
     
    2102835586                       MakerNoteLeica5
    2102935587                       MakerNoteLeica6
     35588                       MakerNoteLeica7
     35589                       MakerNoteLeica8
     35590                       MakerNoteLeica9
     35591                       MakerNoteLeica10
    2103035592                       MakerNotePanasonic
    2103135593                       MakerNotePanasonic2
     35594                       MakerNotePanasonic3
    2103235595                       MakerNotePentax
    2103335596                       MakerNotePentax2
     
    2103535598                       MakerNotePentax4
    2103635599                       MakerNotePentax5
     35600                       MakerNotePentax6
    2103735601                       MakerNotePhaseOne
    2103835602                       MakerNoteReconyx
     35603                       MakerNoteReconyx2
     35604                       MakerNoteReconyx3
    2103935605                       MakerNoteRicoh
     35606                       MakerNoteRicoh2
     35607                       MakerNoteRicohPentax
    2104035608                       MakerNoteRicohText
    2104135609                       MakerNoteSamsung1a
     
    2105035618                       MakerNoteSony3
    2105135619                       MakerNoteSony4
     35620                       MakerNoteSony5
    2105235621                       MakerNoteSonyEricsson
    2105335622                       MakerNoteSonySRF
    2105435623                       MakerNoteUnknownText
     35624                       MakerNoteUnknownBinary
    2105535625                       MakerNoteUnknown
    21056   Nikon                Model                    Y
     35626  Nikon                Model                    yes
    2105735627                       SubSecDateTimeOriginal
    2105835628                       ShutterCount
     
    2108235652                       FlashMode
    2108335653                       FlashExposureComp
    21084   Unsafe               IFD0:YCbCrPositioning    Y
     35654  Unsafe               IFD0:YCbCrPositioning    yes
    2108535655                       IFD0:YCbCrCoefficients
    2108635656                       IFD0:TransferFunction
     
    2109135661                       InteropIFD:RelatedImageWidth
    2109235662                       InteropIFD:RelatedImageHeight
     35663  ls-l                 FilePermissions          yes
     35664                       FileHardLinks
     35665                       FileUserID
     35666                       FileGroupID
     35667                       FileSize#
     35668                       FileModifyDate
     35669                       FileName
    2109335670
    2109435671=head2 MWG Tags
    2109535672
     35673The Metadata Working Group (MWG) recommends techniques to allow certain
     35674overlapping EXIF, IPTC and XMP tags to be reconciled when reading, and
     35675synchronized when writing.  The MWG Composite tags below are designed to aid
     35676in the implementation of these recommendations.  As well, the MWG defines
     35677new XMP tags which are listed in the subsequent tables below.  See
     35678L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
     35679for the official MWG specification.
     35680
    2109635681=head3 MWG Composite Tags
    21097 
    21098 The Metadata Working Group (MWG) recommendations provide a set of rules to
    21099 allow certain overlapping EXIF, IPTC and XMP tags to be reconciled when
    21100 reading, and synchronized when writing.  The ExifTool MWG module is designed
    21101 to aid in the implementation of these recommendations.  (See
    21102 L<http://www.metadataworkinggroup.org/> for the complete MWG technical
    21103 specifications.)
    2110435682
    2110535683The table below lists special Composite tags which are used to access other
    2110635684tags based on the MWG 2.0 recommendations.  These tags are only accessible
    21107 when the MWG module is loaded.  The MWG module is loaded automatically by
    21108 the exiftool application if MWG is specified as a group for any tag on the
    21109 command line, or manually with the C<-use MWG> option.  Via the API, the MWG
    21110 module is loaded with "C<use Image::ExifTool::MWG>".
     35685when explicitly loaded, but this is done automatically by the exiftool
     35686application if MWG is specified as a group for any tag on the command line,
     35687or manually with the C<-use MWG> option.  Via the API, the MWG Composite
     35688tags are loaded by calling "C<Image::ExifTool::MWG::Load()>".
    2111135689
    2111235690When reading, the value of each MWG tag is B<Derived From> the specified
     
    2112835706EXIF/IPTC/XMP records that exist.
    2112935707
    21130 A complication of the specification is that although the MWG:Creator
     35708Contrary to the EXIF specification, the MWG recommends that EXIF "ASCII"
     35709string values be stored as UTF-8.  To honour this, the exiftool application
     35710sets the default internal EXIF string encoding to "UTF8" when the MWG module
     35711is loaded, but via the API this must be done manually by setting the
     35712CharsetEXIF option.
     35713
     35714A complication of the MWG specification is that although the MWG:Creator
    2113135715property may consist of multiple values, the associated EXIF tag
    2113235716(EXIF:Artist) is only a simple string.  To resolve this discrepancy the MWG
     
    2113835722  Tag Name             Derived From             Writable
    2113935723  --------             ------------             --------
    21140   City                 IPTC:City                Y
     35724  City                 IPTC:City                yes
    2114135725                       XMP-photoshop:City
     35726                       XMP-iptcExt:LocationShownCity
    2114235727                       CurrentIPTCDigest
    2114335728                       IPTCDigest
    21144   Copyright            EXIF:Copyright           Y
     35729  Copyright            EXIF:Copyright           yes
    2114535730                       IPTC:CopyrightNotice
    2114635731                       XMP-dc:Rights
    2114735732                       CurrentIPTCDigest
    2114835733                       IPTCDigest
    21149   Country              IPTC:Country-PrimaryLocationName Y
     35734  Country              IPTC:Country-PrimaryLocationName yes
    2115035735                       XMP-photoshop:Country
     35736                       XMP-iptcExt:LocationShownCountryName
    2115135737                       CurrentIPTCDigest
    2115235738                       IPTCDigest
    21153   CreateDate           EXIF:CreateDate          Y
    21154                        EXIF:SubSecTimeDigitized
     35739  CreateDate           Composite:SubSecCreateDate yes
     35740                       EXIF:CreateDate
    2115535741                       IPTC:DigitalCreationDate
    2115635742                       IPTC:DigitalCreationTime
     
    2115835744                       CurrentIPTCDigest
    2115935745                       IPTCDigest
    21160   Creator              EXIF:Artist              Y+
     35746  Creator              EXIF:Artist              yes+
    2116135747                       IPTC:By-line
    2116235748                       XMP-dc:Creator
    2116335749                       CurrentIPTCDigest
    2116435750                       IPTCDigest
    21165   DateTimeOriginal     EXIF:DateTimeOriginal    Y
    21166                        EXIF:SubSecTimeOriginal
     35751  DateTimeOriginal     Composite:SubSecDateTimeOriginal yes
     35752                       EXIF:DateTimeOriginal
    2116735753                       IPTC:DateCreated
    2116835754                       IPTC:TimeCreated
     
    2117035756                       CurrentIPTCDigest
    2117135757                       IPTCDigest
    21172   Description          EXIF:ImageDescription    Y
     35758  Description          EXIF:ImageDescription    yes
    2117335759                       IPTC:Caption-Abstract
    2117435760                       XMP-dc:Description
    2117535761                       CurrentIPTCDigest
    2117635762                       IPTCDigest
    21177   Keywords             IPTC:Keywords            Y+
     35763  Keywords             IPTC:Keywords            yes+
    2117835764                       XMP-dc:Subject
    2117935765                       CurrentIPTCDigest
    2118035766                       IPTCDigest
    21181   Location             IPTC:Sub-location        Y
     35767  Location             IPTC:Sub-location        yes
    2118235768                       XMP-iptcCore:Location
     35769                       XMP-iptcExt:LocationShownSublocation
    2118335770                       CurrentIPTCDigest
    2118435771                       IPTCDigest
    21185   ModifyDate           EXIF:ModifyDate          Y
    21186                        EXIF:SubSecTime
     35772  ModifyDate           Composite:SubSecModifyDate yes
     35773                       EXIF:ModifyDate
    2118735774                       XMP-xmp:ModifyDate
    2118835775                       CurrentIPTCDigest
    2118935776                       IPTCDigest
    21190   Orientation          EXIF:Orientation         Y
    21191   Rating               XMP-xmp:Rating           Y
    21192   State                IPTC:Province-State      Y
     35777  Orientation          EXIF:Orientation         yes
     35778  Rating               XMP-xmp:Rating           yes
     35779  State                IPTC:Province-State      yes
    2119335780                       XMP-photoshop:State
     35781                       XMP-iptcExt:LocationShownProvinceState
    2119435782                       CurrentIPTCDigest
    2119535783                       IPTCDigest
    2119635784
     35785=head3 MWG Regions Tags
     35786
     35787Image region metadata defined by the MWG 2.0 specification.  These tags
     35788may be accessed without the need to load the MWG Composite tags above.  See
     35789L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
     35790for the official specification.
     35791
     35792These tags belong to the ExifTool XMP-mwg-rs family 1 group.
     35793
     35794  Tag Name                                      Writable
     35795  --------                                      --------
     35796  RegionInfo                                    MWG RegionInfo Struct
     35797  RegionAppliedToDimensions                     Dimensions Struct_
     35798  RegionAppliedToDimensionsH                    real_
     35799  RegionAppliedToDimensionsUnit                 string_
     35800  RegionAppliedToDimensionsW                    real_
     35801  RegionList                                    MWG RegionStruct Struct_+
     35802  RegionArea                                    Area Struct_+
     35803  RegionAreaD                                   real_+
     35804  RegionAreaH                                   real_+
     35805  RegionAreaUnit                                string_+
     35806  RegionAreaW                                   real_+
     35807  RegionAreaX                                   real_+
     35808  RegionAreaY                                   real_+
     35809  RegionBarCodeValue                            string_+
     35810  RegionDescription                             string_+
     35811  RegionExtensions                              MWG Extensions Struct_+
     35812  RegionFocusUsage                              string_+
     35813  RegionName                                    string_+
     35814  RegionRotation                                real_+
     35815  RegionSeeAlso                                 string_+
     35816  RegionType                                    string_+
     35817
     35818=head3 MWG RegionInfo Struct
     35819
     35820  Field Name                                    Writable
     35821  ----------                                    --------
     35822  AppliedToDimensions                           Dimensions Struct
     35823  RegionList                                    MWG RegionStruct Struct+
     35824
     35825=head3 MWG RegionStruct Struct
     35826
     35827  Field Name                                    Writable
     35828  ----------                                    --------
     35829  Area                                          Area Struct
     35830  BarCodeValue                                  string
     35831  Description                                   string
     35832  Extensions                                    MWG Extensions Struct
     35833  FocusUsage                                    string
     35834  Name                                          string
     35835  Rotation                                      real
     35836  Type                                          string
     35837  SeeAlso                                       string
     35838
     35839=head3 MWG Extensions Struct
     35840
     35841This structure may contain any top-level XMP tags, but none have been
     35842pre-defined in ExifTool.  Since no flattened tags have been pre-defined,
     35843RegionExtensions is writable only as a structure (eg.
     35844C<{xmp-dc:creator=me,rating=5}>).  Fields for this structure are identified
     35845using the standard ExifTool tag name (with optional leading group name,
     35846and/or trailing language code, and/or trailing C<#> symbol to disable print
     35847conversion).
     35848
     35849  Field Name                                    Writable
     35850  ----------                                    --------
     35851  [no tags known]
     35852
     35853=head3 MWG Keywords Tags
     35854
     35855Hierarchical keywords metadata defined by the MWG 2.0 specification.
     35856ExifTool unrolls keyword structures to an arbitrary depth of 6 to allow
     35857individual levels to be accessed with different tag names, and to avoid
     35858infinite recursion.  See
     35859L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
     35860for the official specification.
     35861
     35862These tags belong to the ExifTool XMP-mwg-kw family 1 group.
     35863
     35864  Tag Name                                      Writable
     35865  --------                                      --------
     35866  KeywordInfo                                   MWG KeywordInfo Struct
     35867  HierarchicalKeywords                          MWG KeywordStruct Struct_+
     35868  HierarchicalKeywords1Applied                  boolean_+
     35869  HierarchicalKeywords1Children                 MWG KeywordStruct Struct_+
     35870  HierarchicalKeywords2Applied                  boolean_+
     35871  HierarchicalKeywords2Children                 MWG KeywordStruct Struct_+
     35872  HierarchicalKeywords3Applied                  boolean_+
     35873  HierarchicalKeywords3Children                 MWG KeywordStruct Struct_+
     35874  HierarchicalKeywords4Applied                  boolean_+
     35875  HierarchicalKeywords4Children                 MWG KeywordStruct Struct_+
     35876  HierarchicalKeywords5Applied                  boolean_+
     35877  HierarchicalKeywords5Children                 MWG KeywordStruct Struct_+
     35878  HierarchicalKeywords6Applied                  boolean_+
     35879  HierarchicalKeywords6                         string_+
     35880  HierarchicalKeywords5                         string_+
     35881  HierarchicalKeywords4                         string_+
     35882  HierarchicalKeywords3                         string_+
     35883  HierarchicalKeywords2                         string_+
     35884  HierarchicalKeywords1                         string_+
     35885
     35886=head3 MWG KeywordInfo Struct
     35887
     35888  Field Name                                    Writable
     35889  ----------                                    --------
     35890  Hierarchy                                     MWG KeywordStruct Struct+
     35891
     35892=head3 MWG KeywordStruct Struct
     35893
     35894  Field Name                                    Writable
     35895  ----------                                    --------
     35896  Applied                                       boolean
     35897  Children                                      MWG KeywordStruct Struct+
     35898  Keyword                                       string
     35899
     35900=head3 MWG Collections Tags
     35901
     35902Collections metadata defined by the MWG 2.0 specification.  See
     35903L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
     35904for the official specification.
     35905
     35906These tags belong to the ExifTool XMP-mwg-coll family 1 group.
     35907
     35908  Tag Name                                      Writable
     35909  --------                                      --------
     35910  Collections                                   MWG CollectionInfo Struct+
     35911  CollectionName                                string_+
     35912  CollectionURI                                 string_+
     35913
     35914=head3 MWG CollectionInfo Struct
     35915
     35916  Field Name                                    Writable
     35917  ----------                                    --------
     35918  CollectionName                                string
     35919  CollectionURI                                 string
     35920
    2119735921=head1 NOTES
    2119835922
     
    2120235926=head1 AUTHOR
    2120335927
    21204 Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
     35928Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
    2120535929
    2120635930This library is free software; you can redistribute it and/or modify it
Note: See TracChangeset for help on using the changeset viewer.