exiftool_vendored 13.37.0 → 13.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/bin/Changes +41 -3
 - data/bin/MANIFEST +7 -0
 - data/bin/META.json +1 -1
 - data/bin/META.yml +1 -1
 - data/bin/README +49 -47
 - data/bin/config_files/local_time.config +55 -0
 - data/bin/exiftool +83 -70
 - data/bin/lib/Image/ExifTool/BMP.pm +1 -1
 - data/bin/lib/Image/ExifTool/BuildTagLookup.pm +2 -2
 - data/bin/lib/Image/ExifTool/DJI.pm +256 -20
 - data/bin/lib/Image/ExifTool/DSF.pm +138 -0
 - data/bin/lib/Image/ExifTool/EXE.pm +3 -1
 - data/bin/lib/Image/ExifTool/Font.pm +386 -118
 - data/bin/lib/Image/ExifTool/Geolocation.pm +10 -7
 - data/bin/lib/Image/ExifTool/Geotag.pm +21 -2
 - data/bin/lib/Image/ExifTool/GoPro.pm +6 -3
 - data/bin/lib/Image/ExifTool/Google.pm +16 -6
 - data/bin/lib/Image/ExifTool/ID3.pm +11 -10
 - data/bin/lib/Image/ExifTool/LNK.pm +63 -2
 - data/bin/lib/Image/ExifTool/M2TS.pm +32 -23
 - data/bin/lib/Image/ExifTool/MIEUnits.pod +1 -1
 - data/bin/lib/Image/ExifTool/OOXML.pm +3 -2
 - data/bin/lib/Image/ExifTool/Olympus.pm +3 -1
 - data/bin/lib/Image/ExifTool/Pentax.pm +7 -2
 - data/bin/lib/Image/ExifTool/QuickTime.pm +3 -3
 - data/bin/lib/Image/ExifTool/QuickTimeStream.pl +44 -35
 - data/bin/lib/Image/ExifTool/Sony.pm +19 -14
 - data/bin/lib/Image/ExifTool/TagLookup.pm +35 -1
 - data/bin/lib/Image/ExifTool/TagNames.pod +1383 -1217
 - data/bin/lib/Image/ExifTool/WavPack.pm +144 -0
 - data/bin/lib/Image/ExifTool/XMP.pm +12 -7
 - data/bin/lib/Image/ExifTool/XMP2.pl +11 -5
 - data/bin/lib/Image/ExifTool.pm +46 -26
 - data/bin/lib/Image/ExifTool.pod +64 -56
 - data/bin/perl-Image-ExifTool.spec +47 -46
 - data/lib/exiftool_vendored/version.rb +1 -1
 - metadata +4 -1
 
| 
         @@ -34,7 +34,7 @@ use Image::ExifTool qw(:DataAccess :Utils); 
     | 
|
| 
       34 
34 
     | 
    
         
             
            use Image::ExifTool::Exif;
         
     | 
| 
       35 
35 
     | 
    
         
             
            use Image::ExifTool::Minolta;
         
     | 
| 
       36 
36 
     | 
    
         | 
| 
       37 
     | 
    
         
            -
            $VERSION = '3. 
     | 
| 
      
 37 
     | 
    
         
            +
            $VERSION = '3.79';
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
       39 
39 
     | 
    
         
             
            sub ProcessSRF($$$);
         
     | 
| 
       40 
40 
     | 
    
         
             
            sub ProcessSR2($$$);
         
     | 
| 
         @@ -180,6 +180,9 @@ sub PrintInvLensSpec($;$$); 
     | 
|
| 
       180 
180 
     | 
    
         
             
                32889 => 'Sony FE 28-70mm F2 GM',
         
     | 
| 
       181 
181 
     | 
    
         
             
                32890 => 'Sony FE 400-800mm F6.3-8 G OSS', #JR
         
     | 
| 
       182 
182 
     | 
    
         
             
                32891 => 'Sony FE 50-150mm F2 GM', #github335
         
     | 
| 
      
 183 
     | 
    
         
            +
                32893 => 'Sony FE 100mm F2.8 Macro GM OSS', #JR
         
     | 
| 
      
 184 
     | 
    
         
            +
                33093 => 'Sony FE 100mm F2.8 Macro GM OSS + 1.4X Teleconverter', #JR (NC)
         
     | 
| 
      
 185 
     | 
    
         
            +
                33094 => 'Sony FE 100mm F2.8 Macro GM OSS + 2X Teleconverter', #JR
         
     | 
| 
       183 
186 
     | 
    
         | 
| 
       184 
187 
     | 
    
         
             
              # (comment this out so LensID will report the LensModel, which is more useful)
         
     | 
| 
       185 
188 
     | 
    
         
             
              # 32952 => 'Metabones Canon EF Speed Booster Ultra', #JR (corresponds to 184, but 'Advanced' mode, LensMount reported as E-mount)
         
     | 
| 
         @@ -319,10 +322,10 @@ sub PrintInvLensSpec($;$$); 
     | 
|
| 
       319 
322 
     | 
    
         
             
                50549 => 'Sigma 50mm F1.2 DG DN | A', #JR (024)
         
     | 
| 
       320 
323 
     | 
    
         
             
                50550 => 'Sigma 28-105mm F2.8 DG DN | A', #JR (024)
         
     | 
| 
       321 
324 
     | 
    
         
             
                50551 => 'Sigma 28-45mm F1.8 DG DN | A', #JR (024)
         
     | 
| 
       322 
     | 
    
         
            -
                50552 => 'Sigma 35mm F1.2 DG II | A', #github352/JR (025) 
     | 
| 
      
 325 
     | 
    
         
            +
                50552 => 'Sigma 35mm F1.2 DG II | A', #github352/JR (025)
         
     | 
| 
       323 
326 
     | 
    
         
             
                50553 => 'Sigma 300-600mm F4 DG OS | S', #JR (025)
         
     | 
| 
       324 
327 
     | 
    
         
             
                50554 => 'Sigma 16-300mm F3.5-6.7 DC OS | C', #JR (025)
         
     | 
| 
       325 
     | 
    
         
            -
                50555 => 'Sigma 12mm F1.4 DC | C', # (025)
         
     | 
| 
      
 328 
     | 
    
         
            +
                50555 => 'Sigma 12mm F1.4 DC | C', #JR (025)
         
     | 
| 
       326 
329 
     | 
    
         
             
                50556 => 'Sigma 17-40mm F1.8 DC | A', #JR/github352 (025)
         
     | 
| 
       327 
330 
     | 
    
         
             
                50557 => 'Sigma 200mm F2 DG OS | S', #github352/JR (025)
         
     | 
| 
       328 
331 
     | 
    
         
             
                50558 => 'Sigma 20-200mm F3.5-6.3 DG | C', #github352/JR (025)
         
     | 
| 
         @@ -1135,7 +1138,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 ); 
     | 
|
| 
       1135 
1138 
     | 
    
         
             
                    SubDirectory => { TagTable => 'Image::ExifTool::Sony::Tag2010h' },
         
     | 
| 
       1136 
1139 
     | 
    
         
             
                },{
         
     | 
| 
       1137 
1140 
     | 
    
         
             
                    Name => 'Tag2010i', # ?
         
     | 
| 
       1138 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-( 
     | 
| 
      
 1141 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(6100A?|6400A?|6600|7C|7M3|7RM3A?|7RM4A?|9|9M2)|DSC-(RX10M4|RX100M6|RX100M5A|RX100M7A?|HX95|HX99|RX0M2)|ZV-(1[AF]?|1M2|E10))\b/',
         
     | 
| 
       1139 
1142 
     | 
    
         
             
                    SubDirectory => { TagTable => 'Image::ExifTool::Sony::Tag2010i' },
         
     | 
| 
       1140 
1143 
     | 
    
         
             
                },{
         
     | 
| 
       1141 
1144 
     | 
    
         
             
                    Name => 'Tag_0x2010',
         
     | 
| 
         @@ -1752,7 +1755,7 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 ); 
     | 
|
| 
       1752 
1755 
     | 
    
         
             
                    },
         
     | 
| 
       1753 
1756 
     | 
    
         
             
                },{
         
     | 
| 
       1754 
1757 
     | 
    
         
             
                    Name => 'Tag9050b',
         
     | 
| 
       1755 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-( 
     | 
| 
      
 1758 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(6100A?|6300|6400A?|6500|6600|7C|7M3|7RM2|7RM3A?|7RM4A?|7SM2|9|9M2)|ILCA-99M2|ZV-E10)\b/',
         
     | 
| 
       1756 
1759 
     | 
    
         
             
                    SubDirectory => {
         
     | 
| 
       1757 
1760 
     | 
    
         
             
                        TagTable => 'Image::ExifTool::Sony::Tag9050b',
         
     | 
| 
       1758 
1761 
     | 
    
         
             
                        ByteOrder => 'LittleEndian',
         
     | 
| 
         @@ -2209,8 +2212,10 @@ my %hidUnk = ( Hidden => 1, Unknown => 1 ); 
     | 
|
| 
       2209 
2212 
     | 
    
         
             
                        400 => 'ILCE-1M2', #PH
         
     | 
| 
       2210 
2213 
     | 
    
         
             
                        401 => 'DSC-RX1RM3', #JR
         
     | 
| 
       2211 
2214 
     | 
    
         
             
                        402 => 'ILCE-6400A', #github347
         
     | 
| 
      
 2215 
     | 
    
         
            +
                        403 => 'ILCE-6100A', #JR
         
     | 
| 
       2212 
2216 
     | 
    
         
             
                        404 => 'DSC-RX100M7A', #github347
         
     | 
| 
       2213 
2217 
     | 
    
         
             
                        406 => 'ILME-FX2', #JR
         
     | 
| 
      
 2218 
     | 
    
         
            +
                        408 => 'ZV-1A', #JR
         
     | 
| 
       2214 
2219 
     | 
    
         
             
                    },
         
     | 
| 
       2215 
2220 
     | 
    
         
             
                },
         
     | 
| 
       2216 
2221 
     | 
    
         
             
                0xb020 => { #2
         
     | 
| 
         @@ -8022,7 +8027,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       8022 
8027 
     | 
    
         
             
            #
         
     | 
| 
       8023 
8028 
     | 
    
         
             
                0x019f => {
         
     | 
| 
       8024 
8029 
     | 
    
         
             
                    Name => 'ShutterCount3',
         
     | 
| 
       8025 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-( 
     | 
| 
      
 8030 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(6100A?|6400A?|6600|7C|7M3|7RM3A?|7RM4A?|9|9M2)|ZV-E10)\b/',
         
     | 
| 
       8026 
8031 
     | 
    
         
             
                    Format => 'int32u',
         
     | 
| 
       8027 
8032 
     | 
    
         
             
                    RawConv => '$val == 0 ? undef : $val',
         
     | 
| 
       8028 
8033 
     | 
    
         
             
                },
         
     | 
| 
         @@ -8069,7 +8074,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       8069 
8074 
     | 
    
         
             
                },
         
     | 
| 
       8070 
8075 
     | 
    
         
             
                0x01f0 => {
         
     | 
| 
       8071 
8076 
     | 
    
         
             
                    Name => 'LensSpecFeatures',
         
     | 
| 
       8072 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-( 
     | 
| 
      
 8077 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(6100A?|6400A?|6600|7M3|7RM3A?|9))\b/ and $$self{Software} !~ /^ILCE-9 (v5.0|v6.0)/',
         
     | 
| 
       8073 
8078 
     | 
    
         
             
                    Priority => 0,
         
     | 
| 
       8074 
8079 
     | 
    
         
             
                    Format => 'undef[2]',
         
     | 
| 
       8075 
8080 
     | 
    
         
             
                    ValueConv => 'join " ", unpack "H2H2", $val',
         
     | 
| 
         @@ -8525,7 +8530,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       8525 
8530 
     | 
    
         
             
                },
         
     | 
| 
       8526 
8531 
     | 
    
         
             
                0x002a => [{
         
     | 
| 
       8527 
8532 
     | 
    
         
             
                    Name => 'Quality2',
         
     | 
| 
       8528 
     | 
    
         
            -
                    Condition => '$$self{Model} !~ /^(DSC-RX1RM3|ILCE-(1|1M2|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-(FX2| 
     | 
| 
      
 8533 
     | 
    
         
            +
                    Condition => '$$self{Model} !~ /^(DSC-RX1RM3|ILCE-(1|1M2|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-(FX2|FX3A?|FX30)|ZV-(E1|E10M2))\b/',
         
     | 
| 
       8529 
8534 
     | 
    
         
             
                    PrintConv => {
         
     | 
| 
       8530 
8535 
     | 
    
         
             
                        0 => 'JPEG',
         
     | 
| 
       8531 
8536 
     | 
    
         
             
                        1 => 'RAW',
         
     | 
| 
         @@ -8544,13 +8549,13 @@ my %isoSetting2010 = ( 
     | 
|
| 
       8544 
8549 
     | 
    
         
             
                }],
         
     | 
| 
       8545 
8550 
     | 
    
         
             
            #    0x0047 => { # often incorrect, requires 16x for some models
         
     | 
| 
       8546 
8551 
     | 
    
         
             
            #        Name => 'SonyImageHeight',
         
     | 
| 
       8547 
     | 
    
         
            -
            #        Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-( 
     | 
| 
      
 8552 
     | 
    
         
            +
            #        Condition => '$$self{Model} !~ /^(ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-(FX3A?|FX30)|ZV-E1)\b/',
         
     | 
| 
       8548 
8553 
     | 
    
         
             
            #        Format => 'int16u',
         
     | 
| 
       8549 
8554 
     | 
    
         
             
            #        PrintConv => '$val > 0 ? 8*$val : "n.a."',
         
     | 
| 
       8550 
8555 
     | 
    
         
             
            #    },
         
     | 
| 
       8551 
8556 
     | 
    
         
             
                0x0053 => {
         
     | 
| 
       8552 
8557 
     | 
    
         
             
                    Name => 'ModelReleaseYear',
         
     | 
| 
       8553 
     | 
    
         
            -
                    Condition => '$$self{Model} !~ /^(DSC-RX1RM3|ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-(FX2| 
     | 
| 
      
 8558 
     | 
    
         
            +
                    Condition => '$$self{Model} !~ /^(DSC-RX1RM3|ILCE-(1|6700|7CM2|7CR|7M4|7RM5|7SM3|9M3)|ILME-(FX2|FX3A?|FX30)|ZV-(E1|E10M2))\b/',
         
     | 
| 
       8554 
8559 
     | 
    
         
             
                    Format => 'int8u',
         
     | 
| 
       8555 
8560 
     | 
    
         
             
                    PrintConv => 'sprintf("20%.2d", $val)',
         
     | 
| 
       8556 
8561 
     | 
    
         
             
                },
         
     | 
| 
         @@ -8572,7 +8577,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       8572 
8577 
     | 
    
         
             
                },
         
     | 
| 
       8573 
8578 
     | 
    
         
             
                0x013f => {
         
     | 
| 
       8574 
8579 
     | 
    
         
             
                    Name => 'ShutterType',
         
     | 
| 
       8575 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(DSC- 
     | 
| 
      
 8580 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(DSC-RX100M7A?|ZV-(1A?|1F|1M2))\b/',
         
     | 
| 
       8576 
8581 
     | 
    
         
             
                    PrintConv => {
         
     | 
| 
       8577 
8582 
     | 
    
         
             
                        7 => 'Electronic',
         
     | 
| 
       8578 
8583 
     | 
    
         
             
                        23 => 'Mechanical',
         
     | 
| 
         @@ -10087,7 +10092,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       10087 
10092 
     | 
    
         
             
                },
         
     | 
| 
       10088 
10093 
     | 
    
         
             
                0x088f => {
         
     | 
| 
       10089 
10094 
     | 
    
         
             
                    Name => 'VignettingCorrParams',
         
     | 
| 
       10090 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME- 
     | 
| 
      
 10095 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME-FX3A?)\b/',
         
     | 
| 
       10091 
10096 
     | 
    
         
             
                    Format => 'int16s[16]',
         
     | 
| 
       10092 
10097 
     | 
    
         
             
                },
         
     | 
| 
       10093 
10098 
     | 
    
         
             
                0x0891 => {
         
     | 
| 
         @@ -10102,7 +10107,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       10102 
10107 
     | 
    
         
             
                },
         
     | 
| 
       10103 
10108 
     | 
    
         
             
                0x08b5 => {
         
     | 
| 
       10104 
10109 
     | 
    
         
             
                    Name => 'APS-CSizeCapture',
         
     | 
| 
       10105 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME- 
     | 
| 
      
 10110 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME-FX3A?)\b/',
         
     | 
| 
       10106 
10111 
     | 
    
         
             
                    PrintConv => {
         
     | 
| 
       10107 
10112 
     | 
    
         
             
                        0 => 'Off',
         
     | 
| 
       10108 
10113 
     | 
    
         
             
                        1 => 'On',
         
     | 
| 
         @@ -10126,7 +10131,7 @@ my %isoSetting2010 = ( 
     | 
|
| 
       10126 
10131 
     | 
    
         
             
                },
         
     | 
| 
       10127 
10132 
     | 
    
         
             
                0x0914 => {
         
     | 
| 
       10128 
10133 
     | 
    
         
             
                    Name => 'ChromaticAberrationCorrParams',
         
     | 
| 
       10129 
     | 
    
         
            -
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME- 
     | 
| 
      
 10134 
     | 
    
         
            +
                    Condition => '$$self{Model} =~ /^(ILCE-(1|7SM3)|ILME-FX3A?)\b/',
         
     | 
| 
       10130 
10135 
     | 
    
         
             
                    Format => 'int16s[32]',
         
     | 
| 
       10131 
10136 
     | 
    
         
             
                },
         
     | 
| 
       10132 
10137 
     | 
    
         
             
                0x0916 => {
         
     | 
| 
         @@ -992,6 +992,8 @@ my %tagLookup = ( 
     | 
|
| 
       992 
992 
     | 
    
         
             
            	'aggregationtype' => { 554 => 'aggregationType' },
         
     | 
| 
       993 
993 
     | 
    
         
             
            	'agreement' => { 557 => 'agreement' },
         
     | 
| 
       994 
994 
     | 
    
         
             
            	'ah2greeninterpolationthreshold' => { 155 => 0xe4e },
         
     | 
| 
      
 995 
     | 
    
         
            +
            	'aipromptinformation' => { 548 => 'AIPromptInformation' },
         
     | 
| 
      
 996 
     | 
    
         
            +
            	'aipromptwritername' => { 548 => 'AIPromptWriterName' },
         
     | 
| 
       995 
997 
     | 
    
         
             
            	'airplanemode' => { 260 => 0x9c0, 263 => 0x722, 264 => 0x782, 265 => 0x624, 266 => 0x654, 267 => 0x6bc },
         
     | 
| 
       996 
998 
     | 
    
         
             
            	'aiservocontinuousshooting' => { 89 => 0x15 },
         
     | 
| 
       997 
999 
     | 
    
         
             
            	'aiservofirstimage' => { 2 => 0x5 },
         
     | 
| 
         @@ -1002,6 +1004,8 @@ my %tagLookup = ( 
     | 
|
| 
       1002 
1004 
     | 
    
         
             
            	'aiservotrackingmethod' => { 90 => 0x504 },
         
     | 
| 
       1003 
1005 
     | 
    
         
             
            	'aiservotrackingsensitivity' => { 89 => 0x14, 90 => 0x502 },
         
     | 
| 
       1004 
1006 
     | 
    
         
             
            	'aisubjecttrackingmode' => { 345 => 0x309 },
         
     | 
| 
      
 1007 
     | 
    
         
            +
            	'aisystemused' => { 548 => 'AISystemUsed' },
         
     | 
| 
      
 1008 
     | 
    
         
            +
            	'aisystemversionused' => { 548 => 'AISystemVersionUsed' },
         
     | 
| 
       1005 
1009 
     | 
    
         
             
            	'album' => { 427 => ['albm',"\xa9alb"], 429 => 'album', 435 => ['albm',"\xa9alb"], 564 => 'album' },
         
     | 
| 
       1006 
1010 
     | 
    
         
             
            	'albumartist' => { 196 => 'WM/AlbumArtist', 427 => 'aART', 435 => 'albr' },
         
     | 
| 
       1007 
1011 
     | 
    
         
             
            	'albumcoverurl' => { 196 => 'WM/AlbumCoverURL' },
         
     | 
| 
         @@ -8401,6 +8405,7 @@ my %tagExists = ( 
     | 
|
| 
       8401 
8405 
     | 
    
         
             
            	'bytes' => 1,
         
     | 
| 
       8402 
8406 
     | 
    
         
             
            	'bytesperline' => 1,
         
     | 
| 
       8403 
8407 
     | 
    
         
             
            	'bytesperminute' => 1,
         
     | 
| 
      
 8408 
     | 
    
         
            +
            	'bytespersample' => 1,
         
     | 
| 
       8404 
8409 
     | 
    
         
             
            	'c2pa' => 1,
         
     | 
| 
       8405 
8410 
     | 
    
         
             
            	'c2pasalthash' => 1,
         
     | 
| 
       8406 
8411 
     | 
    
         
             
            	'cachecontrol' => 1,
         
     | 
| 
         @@ -8633,10 +8638,12 @@ my %tagExists = ( 
     | 
|
| 
       8633 
8638 
     | 
    
         
             
            	'channelcolordata' => 1,
         
     | 
| 
       8634 
8639 
     | 
    
         
             
            	'channelcolorindicates' => 1,
         
     | 
| 
       8635 
8640 
     | 
    
         
             
            	'channelcolorspace' => 1,
         
     | 
| 
      
 8641 
     | 
    
         
            +
            	'channelcount' => 1,
         
     | 
| 
       8636 
8642 
     | 
    
         
             
            	'channelmode' => 1,
         
     | 
| 
       8637 
8643 
     | 
    
         
             
            	'channelnumber' => 1,
         
     | 
| 
       8638 
8644 
     | 
    
         
             
            	'channelopacity' => 1,
         
     | 
| 
       8639 
8645 
     | 
    
         
             
            	'channeloptions' => 1,
         
     | 
| 
      
 8646 
     | 
    
         
            +
            	'channeltype' => 1,
         
     | 
| 
       8640 
8647 
     | 
    
         
             
            	'channelusage' => 1,
         
     | 
| 
       8641 
8648 
     | 
    
         
             
            	'chapter' => 1,
         
     | 
| 
       8642 
8649 
     | 
    
         
             
            	'chaptercount' => 1,
         
     | 
| 
         @@ -8978,6 +8985,11 @@ my %tagExists = ( 
     | 
|
| 
       8978 
8985 
     | 
    
         
             
            	'creatoros' => 1,
         
     | 
| 
       8979 
8986 
     | 
    
         
             
            	'creatorsoftware' => 1,
         
     | 
| 
       8980 
8987 
     | 
    
         
             
            	'creatorversion' => 1,
         
     | 
| 
      
 8988 
     | 
    
         
            +
            	'creditclass' => 1,
         
     | 
| 
      
 8989 
     | 
    
         
            +
            	'creditdir' => 1,
         
     | 
| 
      
 8990 
     | 
    
         
            +
            	'creditname' => 1,
         
     | 
| 
      
 8991 
     | 
    
         
            +
            	'creditrole' => 1,
         
     | 
| 
      
 8992 
     | 
    
         
            +
            	'crediturl' => 1,
         
     | 
| 
       8981 
8993 
     | 
    
         
             
            	'crgbtoerimm0spline' => 1,
         
     | 
| 
       8982 
8994 
     | 
    
         
             
            	'crgbtoerimm1spline' => 1,
         
     | 
| 
       8983 
8995 
     | 
    
         
             
            	'crgbtoerimm2spline' => 1,
         
     | 
| 
         @@ -9083,6 +9095,7 @@ my %tagExists = ( 
     | 
|
| 
       9083 
9095 
     | 
    
         
             
            	'datacreatedate' => 1,
         
     | 
| 
       9084 
9096 
     | 
    
         
             
            	'datadump' => 1,
         
     | 
| 
       9085 
9097 
     | 
    
         
             
            	'datadump2' => 1,
         
     | 
| 
      
 9098 
     | 
    
         
            +
            	'dataformat' => 1,
         
     | 
| 
       9086 
9099 
     | 
    
         
             
            	'datainfo' => 1,
         
     | 
| 
       9087 
9100 
     | 
    
         
             
            	'datakey' => 1,
         
     | 
| 
       9088 
9101 
     | 
    
         
             
            	'datalen' => 1,
         
     | 
| 
         @@ -9197,7 +9210,9 @@ my %tagExists = ( 
     | 
|
| 
       9197 
9210 
     | 
    
         
             
            	'depthswheight' => 1,
         
     | 
| 
       9198 
9211 
     | 
    
         
             
            	'depthswwidth' => 1,
         
     | 
| 
       9199 
9212 
     | 
    
         
             
            	'derivedimageref' => 1,
         
     | 
| 
      
 9213 
     | 
    
         
            +
            	'desc' => 1,
         
     | 
| 
       9200 
9214 
     | 
    
         
             
            	'descender' => 1,
         
     | 
| 
      
 9215 
     | 
    
         
            +
            	'descriptionurl' => 1,
         
     | 
| 
       9201 
9216 
     | 
    
         
             
            	'designer' => 1,
         
     | 
| 
       9202 
9217 
     | 
    
         
             
            	'designerurl' => 1,
         
     | 
| 
       9203 
9218 
     | 
    
         
             
            	'desiredreproductions' => 1,
         
     | 
| 
         @@ -9551,6 +9566,10 @@ my %tagExists = ( 
     | 
|
| 
       9551 
9566 
     | 
    
         
             
            	'extensionclassid' => 1,
         
     | 
| 
       9552 
9567 
     | 
    
         
             
            	'extensioncreatedate' => 1,
         
     | 
| 
       9553 
9568 
     | 
    
         
             
            	'extensiondescription' => 1,
         
     | 
| 
      
 9569 
     | 
    
         
            +
            	'extensionid' => 1,
         
     | 
| 
      
 9570 
     | 
    
         
            +
            	'extensionitemid' => 1,
         
     | 
| 
      
 9571 
     | 
    
         
            +
            	'extensionitemname' => 1,
         
     | 
| 
      
 9572 
     | 
    
         
            +
            	'extensionitemvalue' => 1,
         
     | 
| 
       9554 
9573 
     | 
    
         
             
            	'extensionmodifydate' => 1,
         
     | 
| 
       9555 
9574 
     | 
    
         
             
            	'extensionname' => 1,
         
     | 
| 
       9556 
9575 
     | 
    
         
             
            	'extensionpersistence' => 1,
         
     | 
| 
         @@ -9792,6 +9811,7 @@ my %tagExists = ( 
     | 
|
| 
       9792 
9811 
     | 
    
         
             
            	'footnotes' => 1,
         
     | 
| 
       9793 
9812 
     | 
    
         
             
            	'forcedsubtitletrack' => 1,
         
     | 
| 
       9794 
9813 
     | 
    
         
             
            	'form' => 1,
         
     | 
| 
      
 9814 
     | 
    
         
            +
            	'formatid' => 1,
         
     | 
| 
       9795 
9815 
     | 
    
         
             
            	'formatsdcard' => 1,
         
     | 
| 
       9796 
9816 
     | 
    
         
             
            	'formattag' => 1,
         
     | 
| 
       9797 
9817 
     | 
    
         
             
            	'formatter' => 1,
         
     | 
| 
         @@ -10112,6 +10132,7 @@ my %tagExists = ( 
     | 
|
| 
       10112 
10132 
     | 
    
         
             
            	'headerversion' => 1,
         
     | 
| 
       10113 
10133 
     | 
    
         
             
            	'headingpairs' => 1,
         
     | 
| 
       10114 
10134 
     | 
    
         
             
            	'headshrinking' => 1,
         
     | 
| 
      
 10135 
     | 
    
         
            +
            	'healthlogs' => 1,
         
     | 
| 
       10115 
10136 
     | 
    
         
             
            	'heightresolution' => 1,
         
     | 
| 
       10116 
10137 
     | 
    
         
             
            	'hevcconfiguration' => 1,
         
     | 
| 
       10117 
10138 
     | 
    
         
             
            	'hevcconfigurationversion' => 1,
         
     | 
| 
         @@ -10181,6 +10202,7 @@ my %tagExists = ( 
     | 
|
| 
       10181 
10202 
     | 
    
         
             
            	'icingdetected' => 1,
         
     | 
| 
       10182 
10203 
     | 
    
         
             
            	'icondir' => 1,
         
     | 
| 
       10183 
10204 
     | 
    
         
             
            	'iconenvdata' => 1,
         
     | 
| 
      
 10205 
     | 
    
         
            +
            	'iconfile' => 1,
         
     | 
| 
       10184 
10206 
     | 
    
         
             
            	'iconfilename' => 1,
         
     | 
| 
       10185 
10207 
     | 
    
         
             
            	'iconindex' => 1,
         
     | 
| 
       10186 
10208 
     | 
    
         
             
            	'ics' => 1,
         
     | 
| 
         @@ -10199,6 +10221,7 @@ my %tagExists = ( 
     | 
|
| 
       10199 
10221 
     | 
    
         
             
            	'idependentanddisposablesamples' => 1,
         
     | 
| 
       10200 
10222 
     | 
    
         
             
            	'idlesequence' => 1,
         
     | 
| 
       10201 
10223 
     | 
    
         
             
            	'idletiming' => 1,
         
     | 
| 
      
 10224 
     | 
    
         
            +
            	'idlist' => 1,
         
     | 
| 
       10202 
10225 
     | 
    
         
             
            	'idsbasevalue' => 1,
         
     | 
| 
       10203 
10226 
     | 
    
         
             
            	'idstring' => 1,
         
     | 
| 
       10204 
10227 
     | 
    
         
             
            	'ifd0' => 1,
         
     | 
| 
         @@ -10686,7 +10709,10 @@ my %tagExists = ( 
     | 
|
| 
       10686 
10709 
     | 
    
         
             
            	'levelinfok3iii' => 1,
         
     | 
| 
       10687 
10710 
     | 
    
         
             
            	'libraryid' => 1,
         
     | 
| 
       10688 
10711 
     | 
    
         
             
            	'libraryname' => 1,
         
     | 
| 
      
 10712 
     | 
    
         
            +
            	'licenseeclass' => 1,
         
     | 
| 
      
 10713 
     | 
    
         
            +
            	'licenseedir' => 1,
         
     | 
| 
       10689 
10714 
     | 
    
         
             
            	'licenseinfourl' => 1,
         
     | 
| 
      
 10715 
     | 
    
         
            +
            	'licenseurl' => 1,
         
     | 
| 
       10690 
10716 
     | 
    
         
             
            	'lightingopt' => 1,
         
     | 
| 
       10691 
10717 
     | 
    
         
             
            	'lightness' => 1,
         
     | 
| 
       10692 
10718 
     | 
    
         
             
            	'lightroomworkflow' => 1,
         
     | 
| 
         @@ -11150,6 +11176,7 @@ my %tagExists = ( 
     | 
|
| 
       11150 
11176 
     | 
    
         
             
            	'modenumber' => 1,
         
     | 
| 
       11151 
11177 
     | 
    
         
             
            	'modificationnumber' => 1,
         
     | 
| 
       11152 
11178 
     | 
    
         
             
            	'modificationpermissions' => 1,
         
     | 
| 
      
 11179 
     | 
    
         
            +
            	'modified' => 1,
         
     | 
| 
       11153 
11180 
     | 
    
         
             
            	'modifiedby' => 1,
         
     | 
| 
       11154 
11181 
     | 
    
         
             
            	'modifiedinfo' => 1,
         
     | 
| 
       11155 
11182 
     | 
    
         
             
            	'moiversion' => 1,
         
     | 
| 
         @@ -11743,7 +11770,7 @@ my %tagExists = ( 
     | 
|
| 
       11743 
11770 
     | 
    
         
             
            	'postscriptfontname' => 1,
         
     | 
| 
       11744 
11771 
     | 
    
         
             
            	'powerprofile' => 1,
         
     | 
| 
       11745 
11772 
     | 
    
         
             
            	'pragma' => 1,
         
     | 
| 
       11746 
     | 
    
         
            -
            	' 
     | 
| 
      
 11773 
     | 
    
         
            +
            	'predominanthue' => 1,
         
     | 
| 
       11747 
11774 
     | 
    
         
             
            	'preferredfamily' => 1,
         
     | 
| 
       11748 
11775 
     | 
    
         
             
            	'preferredrate' => 1,
         
     | 
| 
       11749 
11776 
     | 
    
         
             
            	'preferredsubfamily' => 1,
         
     | 
| 
         @@ -12205,6 +12232,7 @@ my %tagExists = ( 
     | 
|
| 
       12205 
12232 
     | 
    
         
             
            	'rjmd' => 1,
         
     | 
| 
       12206 
12233 
     | 
    
         
             
            	'rmeta' => 1,
         
     | 
| 
       12207 
12234 
     | 
    
         
             
            	'rnoiselines' => 1,
         
     | 
| 
      
 12235 
     | 
    
         
            +
            	'roamed' => 1,
         
     | 
| 
       12208 
12236 
     | 
    
         
             
            	'robots' => 1,
         
     | 
| 
       12209 
12237 
     | 
    
         
             
            	'rocinfo' => 1,
         
     | 
| 
       12210 
12238 
     | 
    
         
             
            	'roidescription' => 1,
         
     | 
| 
         @@ -12239,6 +12267,7 @@ my %tagExists = ( 
     | 
|
| 
       12239 
12267 
     | 
    
         
             
            	's2n' => 1,
         
     | 
| 
       12240 
12268 
     | 
    
         
             
            	'sample' => 1,
         
     | 
| 
       12241 
12269 
     | 
    
         
             
            	'sampleblacksequence' => 1,
         
     | 
| 
      
 12270 
     | 
    
         
            +
            	'samplecount' => 1,
         
     | 
| 
       12242 
12271 
     | 
    
         
             
            	'sampledatetime' => 1,
         
     | 
| 
       12243 
12272 
     | 
    
         
             
            	'sampledegradationpriority' => 1,
         
     | 
| 
       12244 
12273 
     | 
    
         
             
            	'sampleduration' => 1,
         
     | 
| 
         @@ -12498,6 +12527,7 @@ my %tagExists = ( 
     | 
|
| 
       12498 
12527 
     | 
    
         
             
            	'shotinfoz9' => 1,
         
     | 
| 
       12499 
12528 
     | 
    
         
             
            	'shotlogdatatext' => 1,
         
     | 
| 
       12500 
12529 
     | 
    
         
             
            	'shotparamstext' => 1,
         
     | 
| 
      
 12530 
     | 
    
         
            +
            	'showcommand' => 1,
         
     | 
| 
       12501 
12531 
     | 
    
         
             
            	'showmode' => 1,
         
     | 
| 
       12502 
12532 
     | 
    
         
             
            	'showobjects' => 1,
         
     | 
| 
       12503 
12533 
     | 
    
         
             
            	'shutterangle' => 1,
         
     | 
| 
         @@ -13222,6 +13252,8 @@ my %tagExists = ( 
     | 
|
| 
       13222 
13252 
     | 
    
         
             
            	'vddimdacnominalvalues' => 1,
         
     | 
| 
       13223 
13253 
     | 
    
         
             
            	'vegasversionmajor' => 1,
         
     | 
| 
       13224 
13254 
     | 
    
         
             
            	'vegasversionminor' => 1,
         
     | 
| 
      
 13255 
     | 
    
         
            +
            	'vendorclass' => 1,
         
     | 
| 
      
 13256 
     | 
    
         
            +
            	'vendordir' => 1,
         
     | 
| 
       13225 
13257 
     | 
    
         
             
            	'vendorid' => 1,
         
     | 
| 
       13226 
13258 
     | 
    
         
             
            	'vendorname' => 1,
         
     | 
| 
       13227 
13259 
     | 
    
         
             
            	'vendorurl' => 1,
         
     | 
| 
         @@ -13403,6 +13435,7 @@ my %tagExists = ( 
     | 
|
| 
       13403 
13435 
     | 
    
         
             
            	'webpage' => 1,
         
     | 
| 
       13404 
13436 
     | 
    
         
             
            	'weight' => 1,
         
     | 
| 
       13405 
13437 
     | 
    
         
             
            	'what3words' => 1,
         
     | 
| 
      
 13438 
     | 
    
         
            +
            	'whatsnew' => 1,
         
     | 
| 
       13406 
13439 
     | 
    
         
             
            	'whitebalancematching' => 1,
         
     | 
| 
       13407 
13440 
     | 
    
         
             
            	'whitebalancergb' => 1,
         
     | 
| 
       13408 
13441 
     | 
    
         
             
            	'whitebalancetable' => 1,
         
     | 
| 
         @@ -13447,6 +13480,7 @@ my %tagExists = ( 
     | 
|
| 
       13447 
13480 
     | 
    
         
             
            	'wmcontentid' => 1,
         
     | 
| 
       13448 
13481 
     | 
    
         
             
            	'wmshadowfilesourcedrmtype' => 1,
         
     | 
| 
       13449 
13482 
     | 
    
         
             
            	'wmshadowfilesourcefiletype' => 1,
         
     | 
| 
      
 13483 
     | 
    
         
            +
            	'woffversion' => 1,
         
     | 
| 
       13450 
13484 
     | 
    
         
             
            	'word97' => 1,
         
     | 
| 
       13451 
13485 
     | 
    
         
             
            	'worddocument' => 1,
         
     | 
| 
       13452 
13486 
     | 
    
         
             
            	'words' => 1,
         
     |